• 1 Post
  • 62 Comments
Joined 6 months ago
cake
Cake day: January 9th, 2024

help-circle
  • Air-up water bottles. When I bought mine it claimed to be a better water bottle all-around.

    Its primary gimmick of tricking the brain into tasting the scent works well, I did drink a lot more water without needing actual flavouring. The fact that I could (unofficially) 3D print my own reusable flavouring pods to be a little more eco-friendly was a nice surprise and the reason I decided to try it.

    The “better bottle” part is utter horse crap. It leaks when tipped over, even when tightly closed. Their marketing team went as far as adding “sip, don’t tip” to the instructions instead of making the cap properly seal.

    Drinking from it was a chore as there was no water pressure and the constant bubbling (lets be real, its more like wet fart) noises made it impossible to use in silent settings.

    I ended up going back to reusing a disposable bottle until it leaks even though the thought and feeling of something flavourless being in my mouth is revolting (its a sensory thing).




  • I think about a feature or bugfix that I want to work on, then shoehorn it in by any means necessary. Once my code is confirmed working, the planning phase begins and I go through the module(s) I’m working with line-by-line and match the original author’s coding style and usually by that point I pick up a trail or discover a bunch of helper functions/libraries that I can use to replace parts of my code, and continue from there.

    As others have said, configuration files is a great way to learn that. Pick a config option you want to learn about, jump to the config loader, find where the variable gets set, then do a global search for that function. From there it starts to fall into place.

    Sidenote: I also learned rust this way. It took me around 6 months to learn the rgit codebase solely from adding features that I wanted from cgit. Now I’m at the point where rebasing from upstream to my soft-fork doesn’t mess up any of my changes, and am able add or fix things with relative ease. If memory serves, a proper debugger (firedbg is excellent!) was used on several occasions to track down an extremely annoying and ambiguous error message that was due to rust’s trait system being a pain in my ass.









  • They can’t even use a lot of these IPs anymore.

    That’s the thing though. Gamers have a special kind of amnesia that gets triggered every time BIG_IP_OF_THEIR_LIKING releases a new sequel or edition. The communities on Lemmy and reddit are unfortunately not indicative of how the wider audience actually perceives games. We’re a fringe group, and the publishers/studios bank hard on that. The uneducated and apathetic masses are their target audience. If the gaming world listened to the likes of Lemmy and reddit users, micro/macrotransactions, early-access hell, and half-finished releases wouldn’t have become common practice. But here we are.

    Fallout is now associated with 76 unless you’re thinking of Obsidian.

    You may be right. Fallout 76 has however seen a record number of players since the show aired. That’s commonplace with most gaming franchises when a film or TV series comes out. See also: The Last of Us, and SWTOR when The Mandalorian came out.

    (I personally think of Neverwinter Nights 2 when thinking of Obsidian. t’was peak gaming)

    Blizzard is a shell of its old self, cutting interest in Warcraft, Starcraft, and Overwatch.

    I agree with you here. In reality, Blizzard still consistently has queue issues when releasing a new WoW expansion or game, even after all this time. They know it happens, and won’t scale up for launch day on WoW retail AND Classic. Their target audience eats that shit up and I’m saying this as a former player that quit during Battle for Azeroth. No comment on Starcraft as I quit when the OG Starcraft scene died down on aus-1 back in the day. Overwatch 1 was seeing incredible numbers when I played from launch until Moria was released. OW2 being a pay-to-win shit show ate into their numbers until they gave up the pay-to-win bullshit. I see more and more of my friends and streamers playing it again now that Bobby Kotick is gone. I’m quite disappointed in some of them, but it is what it is.

    There’s rumors even Call of Duty is struggling to retain relevance in new releases.

    Good thing they’re just rumours until the earnings report comes. Sony has poorly-redacted court documents stating that CoD is their bread and butter on the playstation. There’s no way that’s changing in the forseeable future (at least not in the billions of dollars range), even with the absolute shit-show that was MW3. When MW4 comes out, the diehard fans will forget it even happened, as they have with every single release since its inception.







  • To answer the direct question, BTRFS works fine for gaming. Garuda uses BTRFS by default and I’ve been daily driving it for a few years now. My gaming machine hasn’t had an unrecoverable failure that wasn’t my fault (not checking consple output for errors when updating and then rebooting). Games on an ext4 file system work fine - that’s what I do for games I don’t play often. The main NVME is for games that are played regularly and everything else goes to the storage SSDs.

    Correct me if I’m wrong, it seems like you want an immutable distro more than BTRFS for what you want to do.



  • I’m sure you could end up writing a test that’s bad in just the right way to end up doing more harm than good, but I do think that’s the exception(heh).

    That’s exactly why I’ve asked. That is where I’ve gone wrong with TDD in the past, especially where any sort of math is involved due to being absolutely horrible at it (and I do game dev these days!). I can problem solve and write the code, I just can’t manually proof the math without external help and have spent countless hours looking for where my issue was due to being 100% certain that the formula or algorithm was correct >.<

    Nowadays anytime numbers are involved I write the tests after doing manual tests multiple times and getting the expected response, and/or having an LLM check the work and make suggestions. That in itself introduces more issues sometimes since that can also be wrong. Probably should have paid attention in school all those years ago lol