Skip Navigation
brenticus brenticus @lemmy.world
Posts 12
Comments 210
I wince every time I hear a younger person refer to it as "the late 1900s"
  • I'm 31 and it happens sporadically, but in the past couple of weeks I had one guy double-take because he figured there was no way I was that old and one lady who gave me a good ol' "keep doin' what you're doin'."

    The ego boost is necessary since my body insists on groaning every time I sit down.

  • Bae's girlfailure fried rice
  • It's the maccas nuggets, really. God bless Bae, she needs it.

  • Ladybird announcement
  • It's been almost a decade since I used C++ and had to verify, but after some quick searching around it looks like it hasn't changed a ton since I last looked at it.

    You can use smart pointers, and certainly you should, but it's a whole extra thing tacked on to the language and the compiler doesn't consider it an issue if you don't use them. Using new in C++ isn't like using unsafe in rust; in rust your code is almost certainly safe unless marked otherwise, whereas in C++ it may or may not be managed properly unless you explicitly mark a pointer as smart.

    For your own code in new codebases this is probably fine. You can just always make your pointers smart. When you're relying on code from other people, some of which has been around for many years and has been written by people you've never heard of, it becomes harder to be sure everything is being done properly at every point, and that's where many of these issues come into play.

  • Ladybird announcement
  • C and C++ require more manual management of memory, and their compilers are unable to let you know about a lot of cases where you're managing memory improperly. This often causes bugs, memory leaks, and security issues.

    Safer languages manage the memory for you, or at least are able to track memory usage to ensure you don't run into problems. Rust is the poster boy for this lately; if you're writing code that has potential issues with memory management, the compiler will consider that an error unless you specifically mark that section of code as unsafe.

  • Steam Summer Sale - Top Deals
  • It is genuinely ridiculous how much content there is in this game for the price. Like, a lot of it looks like an excuse to play the same levels a dozen times with minor variations, but then there are tons of levels, lots of events, ongoing updates with new content of all types, so many different towers and upgrades to play with, community maps to add even more variety... It looks like I've played over 200 games and I have so much of the game that I haven't even touched yet.

  • Steam Summer Sale - Top Deals
  • Just to throw a few other options on the pile:

    • Valheim is more combat oriented, but is probably my favourite survival crafting game after Subnautica. You're playing vikings trying to earn their way into Valhalla. I die a lot. Very fun.
    • Planet Crafter is more chill, more jank, and more linear, but it's a survival crafting game that is clearly heavily inspired by Subnautica. You are sent to a mars-like planet to terraform it as part of your prison sentence. It's a great podcast game, just build and explore and watch numbers go up.
    • Less on the survival crafting side of things, the environmental storytelling is also really good in Outer Wilds and Return of the Obra Dinn. Very different games, but they were actually what I went to after Subnautica to scratch that itch and it worked weirdly well.
  • ID Verification Service for TikTok, Uber, X Exposed Driver Licenses
  • The irony kills me on this one. I would like to imagine that if you send your ID in they auto-fail you, but I'm sure they're not that clever.

  • What is the superior voting methodology? To whom does each alternative benefit
  • I wouldn't call it a bug, just that a naive ranked ballot naturally favours the centrist voices. I don't even mean this in an extreme way: in Canada we basically have three centrist, neoliberal parties running parliament, and this would mean that the Liberals just win a majority almost every time. NDP voters generally won't vote Conservative, Conservative voters won't vote NDP.

    This can turn into a bug because it ends up pushing other voices out: if the popular vote suggests equal support between left, right, and center candidates, you would typically hope the make-up of the government reflects that, but more likely it would look like a center majority. There are ways to mitigate this (large number of parties, electing multiple candidates on a ballot, proportional components of the vote, etc) but ranked choice on its own tends to be a centralizing force, not a way to get a more representative democracy.

    Again, not a bug, and I definitely wouldn't call it worse than FPTP, just making it clear that it has its own biases that are worth taking into account.

  • What is the superior voting methodology? To whom does each alternative benefit
  • Ranked choice is one of the simplest ways to get a more representative, but to the question in the title it does tend to favour centrist parties. Progressives will vote for a centrist over a conservative, and a conservative will vote for a centrist over a progressive, so the centrist party will win almost every time.

    It's still an improvement over the disaster of FPTP because it will at least elect parties that the majority can tolerate, but there is still a bias present.

  • Canada to Curb China EV Imports as Trudeau Responds to Biden Move
  • There are a lot of ethical concerns around Chinese worker treatment, economic concerns around Chinese subsidies driving the price down, privacy concerns around Chinese tech's tendency to phone home, geopolitical concerns around giving China even more power in our nation...

    But honestly, same. Nowadays I can't get a car at a decent price in a decent time frame, even worse if I want an EV, so what's the expectation? The auto industry has dropped the ball so hard that China would trivially dominate the EV industry if they were allowed to compete. That's bad, but it's so bad because the local industry isn't even in the ballpark of good enough.

  • Alberta's left-leaning opposition picks former Calgary mayor as party leader
  • Nenshi was a good mayor with a meh council and his frustration with dumb political issues came forth in ways that felt like actual human emotions, even if some people thought he was arrogant.

    He was pretty obviously the right choice here. Everyone's platforms were basically the same. Ganley and Stonehouse are basically unknown, and Hoffman is more known for being the overweight health minister than anything else, unfair though that may be. He is the most recognizable of the leadership candidates by a mile, he has actual demonstrated leadership abilities we hardly see from anyone nowadays, and Calgarians generally like him. The only major downside is that he's not a currently sitting MLA, but he would probably win any riding in Calgary handily.

    Calgary is pretty much a swing city at this point, since Edmonton goes mostly NDP and the smaller regions mostly go UCP, so someone Calgary can get behind is automatically a huge bonus. There's a better chance of seeing another NDP government under him than basically anyone else in the province.

  • “Apocalypse Bringer Mynoghra” Anime Adaptation Announced With New PV
  • If they put the effort in this could be a really good show. The LN has a lot of rough edges, but on the whole it's a great concept that goes in interesting directions. But the art does a surprising amount of heavy lifting; the depicted horror of the characters to those unfamiliar with them creates this interesting dichotomy with how a lot of the day-to-day interactions proceed, and it would be really easy to just gloss over that and make a fairly generic isekai.

  • What is your favourite shell to use
  • Honestly? Bash. I tried a bunch a few years back and eventually settled back on bash.

    Fish was really nice in a lot of ways, but the incompatibilities with normal POSIX workflows threw me off regularly. The tradeoff ended up with me moving off of it.

    I liked the extensibility of zsh, except that I found it would get slow with only a few bits from ohmyzsh installed. My terminal did cool things but too slowly for me to find it acceptable.

    Dash was the opposite, too feature light for me to be able to use efficiently. It didn't even have tab completion. I suffered that week.

    Bash sits in a middle ground of usability, performance, and extensibility that just works for me. It has enough features to work well out of the box, I can add enough in my bashrc to ease some workflows for myself, and it's basically instantaneous when I open a terminal or run simple commands.

  • Lightnovels releasing this week: (June 17 - June 23)
  • Babel does sound neat, I'll probably check it out.

    I've had D-Genesis on my to-read list for ages and can no longer remember why, but I guess a new volume release is a good reminder to get on that sometime.

  • Spy X Family Code: White Film Releases Blu-Ray & DVD On July 31
  • Code: White was so much fun in theaters. It kind of runs into similar problems to a lot of other anime movies, with the non-canon status-quo excuse for a big fight, but Spy X Family naturally handles that better than many series and it turned out to be a ton of fun.

    !The fact that the fate of the world rests on Anya not taking a dump is just peak comedy, I don't care what anyone says.!<

  • Midweek Discussions - Best light novel adaptations
  • The Konosuba LN is really funny, great read.

    The Konosuba anime is peak comedy, the crazy VAs and goofy-ass animation bring so much to it and it hardly loses a thing in the process.

  • What notes do you find yourself on most often?
  • I have a few evergreen notes that I update as needed, but the most frequent one is simply a list of what books I have on preorder and when they're expected to ship. I have a book buying problem.

    Otherwise most of my notes don't get referenced often because they're stores of knowledge, not items related to active projects. I have several reference docs for fiction writing and DnD that I reference and update often because I work on those projects often, but my note on the Zanclean Flood is just obviously not going to come up almost ever. But writing is how I learn, so I wrote about it 🤷

  • Lightnovels releasing this week: (June 10 - June 16)
  • I was conveniently hoping to catch up on some non-LN reading, and it's nice of the release schedule to make that easy on me.

  • What light novel(s) have you read last week, and what do you think about it? [June 03 - June 09]
  • As promised, Apothecary Diaries, vol 11: This was a wild volume. Lots of politics, lots of tension, and the climax hit out of nowhere in a way I found surprisingly satisfying. Finally finding out more about Gyouko-ou, the Yi clan, and Rikuson was great, although some of it felt like back-filling information that could have been presented in a more cohesive way over time.

    Still, super good volume with a lot of interesting developments. Honestly it speaks to the strength of the cast that Maomao took the backstage for most of this volume and it's still fantastic.

  • Heavy sweaters, how do you cope?
  • Yup. If my merino shirts didn't work so well through my workouts I'd probably hardly ever do an intense workout. My back sweats like I'm my own personal rain storm.

  • Gacha is cruel

    150 pulls, so I figured one Kriemhild and no Charlemagne would be reasonable, but nooooo, here's NP3 of a servant I didn't really want and 0 of the goth waifu.

    1

    Welp, summer is here.

    Should have known not to get too excited about warm weather, that's on me.

    0
    Books @lemmy.world brenticus @lemmy.world

    ADHD: Reading hobby edition

    I just keep starting books lately. Yeesh.

    Star Wars: Jedi Apprentice: The Rising Force: I have a fairly decent collection of Star Wars books, and recently my dad gave me all his old books plus a bunch from when I was a kid. Wanting to read one but not wanting to start YET ANOTHER book that would take a week to finish, I picked this up yesterday. 9% done.

    I May Be a Guild Receptionist, but I'll Solo Any Boss to Clock Out on Time, Vol. 2: I read volume 1 last week. Blew through it. I loved it. I started volume 2 this week rather than finish off anything else. Genius move. 11% done.

    Whalefall: Library surprise! Put it on hold months ago, got an email that it was ready just before the library workers went on strike, rushed to pick it up, read a few pages. It is now in the pile. 2% done.

    A Vindication of the Rights of Woman: Sometimes I just want to read on my kobo. My kobo book for a long time has been Ulysses. Ulysses is a hard and long read. I needed a break from it so I started reading this... and am still reading it three weeks later. 54% done.

    Ulysses : I've been reading this for a long time and wondering whether I understand it, like it, or generally have the slightest clue why I'm reading it, but when I pick it up and my brain doesn't bounce I am just enthralled by whatever the hell Joyce is doing. I'll get back to it eventually. 40% done.

    The Lord of the Rings: The Fellowship of the Ring: I got these lovely hardcovers a while back which are beautiful, feel lovely to read, have fantastic illustrations, and my god it's just a wonderful story... but lately I've been pretty lethargic and don't want to hold a hardcover. So it's been sitting by my bedside for ages. 37% done.

    What do I start without finishing any of my other books next?

    6

    How much do I need to worry about temperature for LED strips?

    'Tis the season and I figure I should finally put up some Christmas lights on the house, but ideally I'd like something I can leave up and change colours for other holidays, shots and giggles, etc. So getting some RGB LED strips sounds reasonable.

    The problem, potentially, is that it gets below -30° here pretty much every winter. I know this is problematic for batteries, and sometimes other electronics depending on the build, but for a bunch of LEDs with some sort of ZigBee controller I'm less sure.

    So: outdoor RGB LEDs when it's really freaking cold. Anything I should worry about? Any recommendations?

    7
    Books @lemmy.world brenticus @lemmy.world

    Web novels are the cocaine of books

    I avoided web novels for ages because I knew this would happen to me, but then a friend recommended Shadow Slave to me last weekend and god damn it my life is over.

    You read a chapter, around a thousand words. It ends on a light cliffhanger. You swipe to the next chapter. Repeat ad infinitum. Sometimes it takes me a long time to get through a longer book – I've been reading Don Juan for, like, a month now – but this? 300 chapters in a week. Around 300k words. Like nothing.

    I have over 700 chapters to go before I catch up, but then what? I can hardly imagine a world where I stop at just one series, even though it has a new chapter every goddamn day. Maybe I check out the sources for other manwha and light novels I've read. Maybe I dive into that one where Florida Man is selling bath salts in another world. There are too many options. How many years of my life will disappear into reading mediocre but addicting progression fantasy a few hundred words at a time?

    TL;DR I have a problem but at least I'm not on Reddit.

    12