fidwell's recent activity
-
Comment on I think nobody wants AI in Firefox, Mozilla in ~tech
-
Comment on I think nobody wants AI in Firefox, Mozilla in ~tech
fidwell Link ParentWhat a lot of people in the forum thread seemed to think is that Mozilla developing this feature is taking up human time and effort that could be better spent on making Firefox better. That...What a lot of people in the forum thread seemed to think is that Mozilla developing this feature is taking up human time and effort that could be better spent on making Firefox better. That they're trend-chasing instead of building in better privacy features, for example, that would differentiate them from all the Chromium browsers. And I think I agree; if only a small percentage of Firefox users would be interested, surely they already have their own preferred tools they use instead of whatever gets shoehorned into Firefox?
-
Comment on Psychostick - Æt (2025) in ~music
fidwell Link ParentA decade? I still get "Girl Directions" stuck in my head every few months, and that's gotta be pushing twenty now, maybe? I'm amazed they're still around, but maybe I shouldn't be. This song is...A decade? I still get "Girl Directions" stuck in my head every few months, and that's gotta be pushing twenty now, maybe? I'm amazed they're still around, but maybe I shouldn't be. This song is pretty darn good for a parody.
-
Comment on Changes to Advent of Code starting this December in ~comp.advent_of_code
fidwell LinkThis is probably great for everyone. I have noticed that the amount of sleep I get in December has gone down the last couple of years, from waiting until midnight for puzzles to pop... it will be...This is probably great for everyone. I have noticed that the amount of sleep I get in December has gone down the last couple of years, from waiting until midnight for puzzles to pop... it will be nice to not have that happen again.
-
Comment on The day return became enter in ~tech
fidwell Link ParentI get that, but if it existed I'd still take a nice PDF version and read it wherever I could. Oh well.I get that, but if it existed I'd still take a nice PDF version and read it wherever I could. Oh well.
-
Comment on The day return became enter in ~tech
fidwell Link ParentYeah me too, but there doesn't even seem to be an eBook version?Yeah me too, but there doesn't even seem to be an eBook version?
-
Comment on CGA-2025-09 🕹️🚂 INSERT CARTRIDGE 🟢 The Last Express in ~games
fidwell LinkI've never heard of this game 'til now, but I do love me a point-and-click and for only a couple bucks that's an easy buy. After I got it, I read that the gold edition is a little hand-holdy? Are...I've never heard of this game 'til now, but I do love me a point-and-click and for only a couple bucks that's an easy buy.
After I got it, I read that the gold edition is a little hand-holdy? Are there settings for that? I don't mind hints, but I also like at least some challenge.
-
Comment on The Common Pile v0.1: An 8TB dataset of public domain and openly licensed text in ~tech
-
Comment on Reducing the digital clutter of chats in ~tech
fidwell Link ParentAnd neither of these services should be setting a timer for you in the first place. Your phone has a clock app, and that clock app has a timer. No internet, bots, or "AI" required.Gemini doesn’t do any better a job of setting a timer than Google assistant does.
And neither of these services should be setting a timer for you in the first place. Your phone has a clock app, and that clock app has a timer. No internet, bots, or "AI" required.
-
Comment on Dogma 25: Group of Scandi filmmakers launching refreshed manifesto in ~movies
fidwell Link ParentFrom what I remember reading, most of the "official" Dogme 95 films broke or bent at least one of the rules anyway. I'm sure some didn't, but I bet they were in the minority.From what I remember reading, most of the "official" Dogme 95 films broke or bent at least one of the rules anyway. I'm sure some didn't, but I bet they were in the minority.
-
Comment on If you enjoy very difficult puzzle games, try Epigraph in ~games
-
Comment on Chai Tea: fight me about it in ~humanities.languages
fidwell (edited )Link ParentWhoever told you it was called it that was wrong. It's normally called a "pumpkin spice latte" because it's made with the spices you'd put in pumpkin pie.pumpkin latte has nothing to do with pumpkins
Whoever told you it was called it that was wrong. It's normally called a "pumpkin spice latte" because it's made with the spices you'd put in pumpkin pie.
-
Comment on <deleted topic> in ~food
fidwell Link ParentInstall yourself some SponsorBlock. I didn't even notice the ad read.Install yourself some SponsorBlock. I didn't even notice the ad read.
-
Comment on Wu-Tang Clan x Mathematics - Mandingo (2025) in ~music
fidwell LinkNice song, and very good for modern Wu. Shame about the video though. I guess it looks okay for AI, but it would have looked better with, you know, real people. They have the resources.Nice song, and very good for modern Wu. Shame about the video though. I guess it looks okay for AI, but it would have looked better with, you know, real people. They have the resources.
-
Comment on Donation drive: Lambda Legal in ~lgbt
fidwell LinkI'm in for $500. Thanks for sharing this fund. I'm sure it won't be the last one I donate to this year.- Exemplary
I'm in for $500. Thanks for sharing this fund. I'm sure it won't be the last one I donate to this year.
-
Comment on There is no safe word: How the best-selling fantasy author Neil Gaiman hid the darkest parts of himself for decades in ~books
fidwell Link ParentIt finished filming last summer; I doubt it'll get canned this late in production.It finished filming last summer; I doubt it'll get canned this late in production.
-
Comment on Day 10: Hoof It in ~comp.advent_of_code
fidwell (edited )Link ParentFrom what I've read on Reddit and the other AoC community I talk to, it sounds like everyone did that. A pretty simple puzzle, especially if you did the one from last year that this one...From what I've read on Reddit and the other AoC community I talk to, it sounds like everyone did that. A pretty simple puzzle, especially if you did the one from last year that this one references. If I hadn't run the example input first, I probably would have accidentally gotten the Part 2 answer before I got Part 1.
-
Comment on Day 5: Print Queue in ~comp.advent_of_code
fidwell (edited )Link ParentI've been doing 2015 problems here and there lately in my spare time, and one thing I've noticed is that a lot of the input data just uses \n instead of \r\n, which screwed up my input parsers...I've been doing 2015 problems here and there lately in my spare time, and one thing I've noticed is that a lot of the input data just uses
\ninstead of\r\n, which screwed up my input parsers (I'm using C# on Windows). Last year I didn't have that problem for some reason. After tweaking my tools to just always remove\rfrom any and all input files, I haven't had an issue since. (Hopefully it doesn't come back to bite me later...) -
Comment on Day 2: Red-Nosed Reports in ~comp.advent_of_code
fidwell (edited )LinkWell I was already up until almost midnight so I decided to rush solving day 2. And we all know rushing leads to lots of silly mistakes and terrible code. Somehow it was enough to get me on top of...Well I was already up until almost midnight so I decided to rush solving day 2. And we all know rushing leads to lots of silly mistakes and terrible code. Somehow it was enough to get me on top of the Tildes leaderboard, although I'm sure I won't stay there.
Today's was almost as straightforward as yesterday's; just a lot of array iteration and manipulation which isn't terribly interesting to go through algorithmically. I wrote a naïve solution that "brute-forced" it, though at this stage that's more than sufficient for single-digit-millisecond runtimes (I think 4ms for part 2). My biggest hangup was making copies of arrays in C#; it's not as straightforward as it is in other languages (or maybe that was due to rushing).
Code — refactored. added some utility functions that made it (hopefully) very readable.
-
Comment on Day 1: Historian Hysteria in ~comp.advent_of_code
fidwell (edited )LinkI knew today's puzzle would be easy so I stayed up til midnight to get it done quick. I thought 6 minutes for part 1 was blazing fast, but apparently there are just so many people doing it now...I knew today's puzzle would be easy so I stayed up til midnight to get it done quick. I thought 6 minutes for part 1 was blazing fast, but apparently there are just so many people doing it now that it was still only good enough for rank 2,737. Oh well! I'm not in it for the points, so I probably won't be trying to rush again.
Good luck with the rest of the month!
(edit: by the way here's my repo; I'm doing 2024 in C# again just because I'm too lazy to try something new. I have done a few old problems in Python, just to learn it; but I'm thinking of saving some other old ones to try in Rust. we'll see.)
Kagi is also introducing anti-AI features too, though; they just put out a thing where you can report and deweight AI search results. So they're on both sides of the fence there.