• 0 Posts
  • 6 Comments
Joined 2 years ago
cake
Cake day: September 2nd, 2023

help-circle

  • It’s not an European thing. It’s an awful statistics thing.

    People see a lot more trans people on the internet than IRL. Places on the internet usually have big programming spaces. Therefore the place where ppl see more trans ppl is in programming spaces. So now they think that most trans ppl are programmers. After that, they conclude that most trans ppl are programmers. Add to it the snowball effect of memes and now you have a huge misconception about reality.


  • A program being written in rust itself doesn’t guarantee anything, but it tells you what you’ll probably find:

    • Utf-8 support
    • No shenanigans with installations, dynamic libraries and such. Just download and execute.
    • Multi-platform support
    • Low resource usage.
    • semver.
    • Compile with just 1 command if you want to.
    • MIT/apache2 license.
    • No memory leaks.
    • If it crashes, at least it will probably log out something more helpful than “SEGFAULT”.

    Many of those are highly positive to the end consumer.



  • I’m one of those that use PowerShell on linux.

    You can use tmux, vim, sed, awk or whatever binary you want from PowerShell. Those are binaries, not shell commands.

    You can use pipes, redirects, stdin and stdout in PowerShell too.

    I personally don’t regularly use any object oriented features. But whenever I search how to do something that I don’t know what to do, a clear object-oriented result is much easier to understand than a random string of characters for awk and sed.