• 0 Posts
  • 48 Comments
Joined 2 years ago
cake
Cake day: August 23rd, 2023

help-circle





  • Game engines seem to be explicitly what Odin was built do. I’m just reading their website for the first time but they make that clear.

    My impression of Odin is that its explicitly made to enable you to write unsafe code. But that’s good if you want to get some crazy optimizations going through.


  • Yarn > v1.22 is a very different beast than npm. After that version they introduced a “package-manager” field to package.json and yarn will install the specific version of yarn required by that package onto your root system and use that version.

    There’s probably some way to do that without messing with your root system but after I encountered that I went back to npm. Let something like nix handle the version of my build tool. Or at least install to my home directory like rustup or sbt.




  • It only must be extremely simplified and evoke emotional reactions. That’s just basic propaganda rules. The brainrot quality of the content is a consequence of the sheer quantity of the content. You can’t make that volume of content and without making fully automated ai slop.

    What the experiment overlooks is that there are PR companies being paid to flood YouTube with rightwing content and are actively trying to game its algorithm. There simply isn’t a left-wing with the capital to manufacture that much content. No soros-bucks for ai minions in keffiyehs talking about medicare.


  • People seem to be misunderstanding your question. It doesn’t sound like you are lacking educational resources to learn C# but a lack of reasons. It sounds like you have been learning by getting you’re hands dirty with foss software.

    C# is a sort of “enterprise-grade language” like Java. It’s meant for large applications developed by one or more teams for almost exclusively commercial purposes. If you want to learn it, deeply, you’ll have to come up with an excuse to write in it. A game is probably the best choice for this. Then learning c# is learning how to make your game.

    If you’re looking for open source C# software to hack on you can try anything from the *arr stack. (Sonarr, radarr, lidarr).








  • sudo@programming.devtoProgramming@programming.devWhy is my tmux borked?
    link
    fedilink
    arrow-up
    5
    arrow-down
    2
    ·
    edit-2
    6 months ago

    Unironically try turning your computer off and on again.

    Tmux settings are global and persistent. Just deleting your config files is insufficient. You have to kill the server and restart it. Uninstalling and reinstalling will not kill a running tmux server. tmux kill-server should work too.

    Now if it persists across reboots, then there must be a file still lingering somewhere. If you are sure your home directory is clean you can try searching whatever you installed in /etc.

    This is all assuming you’re trying to go back to a clean slate and failing. If the borked status bar is the result of your current .tmux.conf, then you’ll have to post that.