Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)S
Posts
2
Comments
152
Joined
3 yr. ago

  • That will probably corrode the exterior in this case.

  • You never know what another person is really going through in life

    We can often assume its a divorce.

  • Its right-wing because of the content and target of the trolling. They've said this started as a target harrasent of certain projects.

  • You can safely do a shallow copy and re-use references to the unchanged members if you have some guarantee that those members are also immutable. Its called Persistent Data Structures. But that's a feature of the language and usually necessitates a GC.

  • Saves memory.

  • TIL I can run Lineage on a raspberry pi.

  • If you want to say transphobic slurs you're welcome to rot your brain on Facebook or use X (the everything app).

  • Its not about lack of nuance but more about deliberately being a useful idiot because not everyone has the patience of someone like cowbee. Let me translate your example:

    • Slavery is bad.
    • Slavers say Dessalines is bad.
    • Therefore Dessalines is good.

    Now its 2025. Dessalines is long dead and we can safely say the free people of Haiti deserved a better leader. But back in the 1800s I'd back Dessalines to the hilt because I'm carrying absolutely zero water for slavers.

    Further listening: https://citationsneeded.libsyn.com/episode-02-the-north-korea-memory-hole

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

  • Wrong, the whole purpose of tracking your usage is to identify what kind of consumer you are so they can sell your views to advertisers. Recommendations are based on what category of consumer you've been identified as. Maintaining your viewership is secondary to the process of selling your views.

  • There's also an entire industry around mass producing this content and deliberately gaming the algorithm.

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

  • "Ceramic" is just different proprietary PFAS chemicals that are not Teflon and so haven't been proven to cause cancer (yet).

    Enamel is a baked on paint like you'd put on pottery. Kind of glassy.

  • I don't know much about shielding either but I'm imagining any sort of material you could make a Faraday bag out of should work. But you're better off just googling.

  • Its from the USB ports itself from what I've read. You'll need distance between the zigbee controller and the USB port. USB controllers solve this with an extension cable but idk if you can do that on the io pins. You can try shielding the USB port.

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

  • Useful workarounds but the most safety any of the solutions provided was validating external inputs.

  • The article title is poorly written but the conclusion is pretty sound: If you're planning on writing unsafe code, use a language meant for unsafe code. Zig is meant for unsafe code, Rust isn't.