• 0 Posts
  • 287 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle
  • As you said, the difference is in the ecosystem of libraries. This is where Java has the edge. It has a more mature ecosystem when it comes to web server backends. This includes the number of frameworks, programmers and information sources.

    Unless Rust clearly solves common problems people currently have with Java backends, Java will remain the dominant alternative. I believe this is unlikely, because Rust is mainly designed to overcome common memory problems people have with low level C systems without the overhead of garbage collectors.






  • The good thing about Python is that it’s widely used. Easier to find people who can contribute in Python than Rust, which Lemmy is using.

    Downside is that Python isn’t ideal for large scale systems. Other languages like Java is better at protecting the programmer against common pitfalls that come when building larger applications. Python is more ideal for smaller scripts.



  • I played both in my childhood, and I don’t think I’ve ever returned to Tooie after I beat it first time. It’s a good game, but doesn’t have that same lasting appeal as the first game.

    You touched a bit on the why: the game is too ambitious. The levels are too massive and too intertwined. Smaller isolated levels fit the collectathon format better.

    I remember having lots of fun with the multiplayer though, so that’s a bonus.

    If you want to continue the collectathon journey you should try out Donkey Kong 64. It’s also a game that falls under its own ambitions, but in different ways. Still a good game, but nothing beats Kazooie.






  • Not too bad, but could be better.

    A funny story about my not so great love life: just matched with a girl on Tinder which I managed to have engaging text discussions with and it felt quite genuine. This is rare for me, so I was happy about it.

    Well, in the end it became obvious to me it was just a pig butchering romance scam when she started to talk about how she can help me invest in cryptocurrency.

    I guess I’m going to be a failure in love life for a bit longer lol.


  • I can’t speak from the British Commonwealth perspective, but from a Swedish perspective my opinion is this regarding having a monarch:

    Yeah, it might not reflect our modern values well, but since the (Swedish) monarch is mostly ceremonial and completely unpolitical, there’s actually quite little to hate about it. They’re just the mascot of the country. There’s far more pressing issues in our country than having that confused old guy as head of state.

    At least he doesn’t possess nuclear launch codes.




  • Often I use Python for exploratory purposes. Like, I got a bunch of data, and I want to know if a particular algorithm might work or not. I implement the algorithm, but realize the results don’t look good enough. So I tweak the algorithm, maybe even do major refactoring. Or maybe I realize my visualizations or metrics don’t capture what I need to see. Or maybe I must settle for some compromise?

    I iterate on this repeatedly until I find something I’m happy about (or until I give up). Sometimes I end up with something completely different from my initial idea.

    TDD won’t help me much here because the end result is unknown. For each iteration of this idea process I might even need to rewrite all the tests because none of them are valid anymore.