• 3 Posts
  • 683 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle
  • magic_lobster_party@kbin.socialtoToday I Learned@lemmy.world...
    link
    fedilink
    arrow-up
    3
    arrow-down
    1
    ·
    4 months ago

    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.


  • magic_lobster_party@kbin.socialtoToday I Learned@lemmy.world...
    link
    fedilink
    arrow-up
    1
    arrow-down
    3
    ·
    edit-2
    4 months ago

    It’s more that you can avoid many mistakes by programming defensively and having good discipline. For example, you can avoid many memory allocation if you follow RAII and use smart pointers.

    Null references can be avoided by avoiding using null (and prefer using optional where it makes sense).





  • 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.


  • It’s not about elitism. It’s because most developers don’t want to spend that time on the extra maintenance and QA to ensure it’s working flawlessly for the end user.

    Most FOSS are just things people initially wanted for themselves, so they developed it in their spare time. Then they thought it might be neat to share the code in case someone else might find use in it, so they uploaded their work to GitHub.

    If you want an exe you can always contribute to the project, or at least make a fork.