He/Him | Hu/En/some Jp | ASD | Bi | C/C++/D/C#/Java

  • 7 Posts
  • 90 Comments
Joined 8 months ago
cake
Cake day: March 16th, 2024

help-circle
  • Note the “left” in quotation marks!

    There’s a kind of “left”, with anti-corporate policies just as vague as what some more populist right-wingers have, if not the exact same, that is just being used to call out “hypocritical, leftist virtue signaling by corporations”, which the right just uses to paint leftist social policies as unreasonable. That “left” also just seem to have a “reappropriated” version of whatever stuff the right appropriated for itself to make their isolationist foreign policies look less far-right as their “anti-imperialist” policy.

    And when it comes to class warfare, it’s just the same exact work moralist and anti-intellectualist mess the right has.

    That’s why I call these people leftists in name only. They’re not funded by George Soros, but by either Russia, or some “moderate, christian-conservative” party like Fidesz, if not both.









  • It’s time to return to the roots, the times when you used goto instead of function calls! Fortran and COBOL all the way! /s

    Once you look beyond the “git gud” and “we must gatekeep programming from the normies” aspects of coding, you might want a language that is either way more productive than C (D), a language that offers memory safety and functional programming paradigms (Rust), or even a language that has relatively good portability even at the cost of performance (Javascript).

    If you’re only grumpy about Electron apps, then be mad at the corporations that:

    • forced colleges and universities to teach Javascript and nothing else to students, so now we have programmers afraid of type declarations,
    • jumped on the “Big Data” and “software as a service” train, so every app needed to be a “website”, because “it’s so convenient, pops no longer need to install wordprocessor dot exe, just type wordprocessor dot com into a browser”.





  • I would add to the downside that it’s not the best programming language for game development, etc. There was some blog post about how troublesome is it to develop games using Rust due to some of the features that are good in other areas, like the whole concept of “immutable by default”.

    I can also recommend D, if you want to deal with different issues, like the D Language Foundation fearing of change due to not wanting to deal with division from a new and incompatible version yet again, the GC being both a blessing and curse, if you want to go without a (tracing) GC you’ll need to go with a custom runtime that potentially missing many of its features, the attribute hell, etc.








  • I have talked to people about Rust gamedev (including those who left Rust for D due to gamedev), and it’s not a very good one, due to the functional aspects. Outsiders often joke about how Rust has more game engines than games.

    Zig has the header file problem. Header files were originally created to get around memory limitations of old workstations, that no longer exist. They also complicate coding, since you now often have to implement things at two places at once. However, Zig not only copied C++'s multi-inheritance, but also its header files, without understanding the actual reason why it existed in the first place.