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/)MP
magic_lobster_party @ magic_lobster_party @kbin.run
Posts
1
Comments
624
Joined
1 yr. ago

  • Cryptocurrency or not, I don’t think posts should be monetized. This is mostly a platform for discussion. People shouldn’t be paid just for discussing with each other. People should discuss because they find the topic fun or interesting, not because someone will pay you to do it.

  • No amount of money would make me want to endure that torture. Most of earth’s history is just absolutely nothing. Apart from a few asteroid strikes, Cambrian explosion is about as exciting as things can get, and even that is just 100 million years of barely anything happening.

    I don’t want to sit down and see how moss forms over millions of years.

  • I can give some guesses on 2.

    • Familiarity. Most people are familiar using Windows. Nurses aren’t necessarily tech savvy, so an unfamiliar system might threw them off.
    • Maintenance. It’s easier to recruit people who know how to maintain Windows systems. Linux is tricky because it comes in so many different distributions, and any maintainer must be aware of these differences.
    • UI sucks big time on Linux. It’s so much easier and reliable to just do a winform.
    • Communication with other equipment. I guess some computers are talking to other medical equipment, and those equipment might only have drivers written in Windows, because that’s what most are using.
    • If it ain’t broken, don’t fix it. Why change to Linux when Windows is doing the job?
  • The thing I remember most of my impression playing it was that I constantly had the thought: “that opening village fight was really fun, I wonder when they will pull that off again”, and then they never did. So that expectation left me a bit of a sour taste.

    This was maybe 15 years ago. I might have a different impression if I would play it again, but I haven’t done it.

  • I’m probably in the minority, but I didn’t enjoy RE4 as much as others when I played it. Don’t get me wrong, I think it’s a great game. Just not to the standards people hyped it up to.

    I think my main issue with it is that it has a masterful opening sequence, but then it never really builds on it after.

    First fight in the village was truly ahead of its time. It gives not only the player lots of options, but the enemies have lots of options to counter you. It puts the player into many unpredictable situations. It’s a very dynamic fight and really sets a unique mood for the game.

    Then the rest of the game turns more and more into a corridor shooter, especially after the village act. Still a good corridor shooter, but I hoped to see it build more on the open combat we saw in the opening section.

    It was a great while ago I played it, but that was the impression I had back then.

  • I think having null is great in some cases where you need to represent missing value. It’s just that there’s no good way to know for sure if you need to do null checks or not. The only way around it is to do null checks everywhere, which no one wants to do because fuck that. Nowadays there’s Optional which solves some of this, but it was introduced way too late.

    If I were to redesign Java the first thing I would do is to add a nullable keyword or something.

  • Java is disliked because it’s designed around flawed OOP principles developed in the 80s and 90s. The code easily turn into a mess if you adhere to these principles, because they’re flawed. If you avoid using these principles, you will still get a mess, because that’s not how Java is supposed to be used.