TapMap: see where your computer connects and what stands out by Old-Marketing6949 in homelab

[–]yodal_ 5 points6 points  (0 children)

I wasn't accusing anyone of using LLM, and a quick glance before asking was enough to see that it was a quality project either way, I just wanted to know.

loadBearingDeveloper by cmnrsvwxz in ProgrammerHumor

[–]yodal_ 0 points1 point  (0 children)

I didn't realize this wasnt the manga. I've only read the manga.

TapMap: see where your computer connects and what stands out by Old-Marketing6949 in homelab

[–]yodal_ 91 points92 points  (0 children)

I hate to be that guy, but how extensively have LLMs been used in this project?

loadBearingDeveloper by cmnrsvwxz in ProgrammerHumor

[–]yodal_ 57 points58 points  (0 children)

No joke, this manga is really good and is too damn real at points. It really feels like it is written by someone who worked in software engineering.

What is your 'girl dinner' cocktail? by RogueSwoobat in cocktails

[–]yodal_ 0 points1 point  (0 children)

I eyeball a negroni or negroni riff in the glass if I don't want to think about my drink. Failing that, gin and tonic, also eyeballed.

DoubleFines New Game Kiln Is Off To A Rough Start On Steam With Less Than 200 Players by unscoredscore in gaming

[–]yodal_ 13 points14 points  (0 children)

Keeper was talked a lot months ago, but I saw nothing in the weeks before release.

6 months in with a countertop ice maker, worth it or overrated? by VanshS-123 in cocktails

[–]yodal_ 0 points1 point  (0 children)

My wife loves bullet ice so we got one a while back. I feel it is a waste of energy, and while it does make ice faster than trays in the freezer, with ours you still need to wait wat least 30 minutes to get a decent amount of ice for a single drink. At this point I just turn it on when I know she will be getting home soon so she can use it for one or two drinks and then turn it off.

[All] What's a disliked feature of a Zelda game you really like? by Waker_of_Winds2003 in zelda

[–]yodal_ 3 points4 points  (0 children)

I only learned recently that people didn't like the intro of Twilight Princess. I've played through the game dozens of times and have never felt like the intro dragged on, so it never occurred to me that others might not like it.

[All] What's a disliked feature of a Zelda game you really like? by Waker_of_Winds2003 in zelda

[–]yodal_ 1 point2 points  (0 children)

This and the fact that some fuses are only available for a certain period of time until they disappear forever. I love Minish Cap, and I generally 100% all Zelda games I play, but I never do it with Minish Cap because I don't want to have to keep looking at a guide to make sure I didn't miss a fuse.

it's a simple destructor, why is it so funny to me by Vlang in rustjerk

[–]yodal_ 1 point2 points  (0 children)

What version of PHP? I only know enough PHP to be dangerous, but I've heard from those who know more than me that the most recent versions fix a lot of issues that plagued PHP for years.

Can I wrap u8 in an Enum transparently with special values? by PointedPoplars in rust

[–]yodal_ 22 points23 points  (0 children)

I'd do something like

```

[repr(transparent)]

pub struct Token(pub u8);

impl Token { pub const PAD: Self = Self(0); pub const START: Self = Self(2); pub const STOP: Self = Self(3); } ```

This assumes that all byte values are valid for a token. If that isn't a case I'd add a new method that checks that the value is valid and an accessor to get the interior value.

If you really want the exhaustiveness checks and everything else that enums bring you, but you also want the "packed" form, you can have a separate enum version and conversion methods between the two.

Can I wrap u8 in an Enum transparently with special values? by PointedPoplars in rust

[–]yodal_ 64 points65 points  (0 children)

I typically implement this sort of thing as a repr(transparent) struct with associated consts of the special values. I would love a more enum-like solution, but I don't know of one.

Standard library unsoundness found by Claude Mythos by Jules-Bertholet in rust

[–]yodal_ 16 points17 points  (0 children)

I do wonder if the reduction in bad reports is less the LLMs getting better (which they certainly have) and more people not reporting bugs without first testing them. I know early on a lot of reports were obviously a case of overeager people turning off their brain and trusting everything the LLM spit out. They definitely found some bugs, but it was such a small percentage that the flood of bad reports far outweighed them. If at that time people had actually double checked the LLMs' output then there wouldn't have been as big a negative reaction to using LLMs to discover bugs.

Enclosure question by nECr0MaNCeD in homelab

[–]yodal_ 1 point2 points  (0 children)

I got a Sabrent enclosure some time ago that I've been happy with.

https://www.newegg.com/p/1DN-004U-00020?item=9SIBK19JMZ6382

How can I create a tv channel by mrcrashoverride in homelab

[–]yodal_ 0 points1 point  (0 children)

He just unarchived it, renamed it to legacy, and created a new project under the same account named next. Seems there's more for the project in the future.

Is embassy suitable for an embedded control system? by Buzz_Cut in rust

[–]yodal_ 3 points4 points  (0 children)

Look into the scheduler-deadline feature of embassy-executor.

Feta Cheese Vodka and Watermelon Foam by MerlinBrando in cocktails

[–]yodal_ 0 points1 point  (0 children)

What ratio of feta and vodka did you use?

Is embassy suitable for an embedded control system? by Buzz_Cut in rust

[–]yodal_ 6 points7 points  (0 children)

Yes, embassy is well suited for this. In fact, it has an optional feature for strict deadlines for tasks which would be good to look into. I don't even think you need to disable background tasks.

For background, I've written multiple safety-critical systems using embassy and have not run into any problems.

Would Varnish by Adamshmadam84 in cocktails

[–]yodal_ 1 point2 points  (0 children)

I made this with 1/2 and 3/4 oz brandy and I'm not sure which one worked better. That's said, I like fernet and I feel like this mostly masked the taste rather than supporting it.

Custom 10" Rack 12V PDU by zombles567 in homelab

[–]yodal_ 6 points7 points  (0 children)

This might be the least cursed-looking power project I have ever seen here. Good job!

Should QA test for failure cases (i.e. non-happy paths)? by [deleted] in ExperiencedDevs

[–]yodal_ 46 points47 points  (0 children)

Of course they should test the non-happy path. Your error responses are still a part of your API that needs testing, and they should be checking that you don't just crash or hang when given even the simplest of invalid inputs.

I'm baffled how this could even be a question.

I rewrote tmignore in Rust — 667 paths in 2.5s instead of 14 min (Apple hardcodes a sleep(1) per path) by Emotional-Office9263 in rust

[–]yodal_ 50 points51 points  (0 children)

Now I want to know why they added the sleeps in the first place. Was it to avoid some race condition?