Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)MR
Posts
0
Comments
24
Joined
2 yr. ago
  • If I might speculate, My guess is they needed to land the plane and they cannot do that with him in there.

    If say, he went in just as they were making final approach, 30min with him in there is definitely enough they would have to cancel the approach and delay. I can't say as to if a warning was given or what the circumstances were that led to him getting ya ked out, but something like that definitely can cause issues for pilots needing to get the plane down

  • I am not fully degoogled by any means (it is really hard when family uses and relies on Google products), but you can always start with your own domain and a private (paid) email service (like fastmail or proton). It's an easy step to take for yourself (but getting everyone you know to start using the new one takes time).

    I have a Synology NAS I use for storage, photos, and media. It's easy mode storage l, and comes with a lot of apps you can install to replace ones you might use from Google/apple.

  • I am not sure why you think it should be any way else with our current systems, though. Asking less means the home owner is effectively paying for maintenance and upkeep entirely out of pocket, and entirely net loss for them. That said, I also don't think that means they need to price gouge and trying to make huge profits.

  • For similar reasons, I stopped ordering with any alterations at all. I used to customize order a little and they always messed it up. It's pretty rare that I go at all, but I figure that way it's the standard meal and they can just go in autopilot making it. Less disappointment when things go wrong

  • Thing is that it has been shown that the cost doesn't add up. Guild Wars and Guild Wars 2 are both games you only pay the cost of the box, no on going subscriptions and they are able to continue running the servers and infrastructure just fine. 15$/mo just doesn't make sense.

  • I went through this a couple years ago. Decided Jeff Bezos does not need any more money, cancelled prime. Funny this was that most things ship the same as always, get them in like 2 or 3 days.

    In fact, most other online retailers offer similar free 2 day shipping to stay competitive and I usually find stuff of Amazon first.

  • I have used DukTape in the past, it is an ECMAScript (javascript) implementation. The API is amazing, very consistent parameter and naming schemes, uses a stack based approach (feels like a better version of how lua goes about things). It is designed to be embedded. Documentation for the API is some of the best you will see, lots of good examples. It even has a debugger that you can hook into.

  • The main problem with std:: expected is lack of language support. In theory, it works well as an alternative to exceptions, with nice self contained monadic statements. In practice, it is actually much worse than what the article suggests.

    main issues -

    1. as I said, no language level support. You eventually end up with messy code somewhere because the library code can't simplify things enough. You end up with if checks strew about that really oaught to be a language paradigm.
    2. there is not a lot of code making use of it, so at the boundaries of your code you have to make adaptations to and from std:: expected from whatever some library chose to use.
    3. adapting your existing codebase is basically impossible. Perhaps if you are starting a new project you can do it, but it is different enough that all your existing code must be updated to accommodate the new paradigm and it's just an awful experience doing the work and being in a mix of error handling.