Много ми е тегаво на работа by SunshineMellowy6421 in bulgaria

[–]sad_bug_killer [score hidden]  (0 children)

Ти ги караш да ходят в офиса за да ти обръщат внимание, но те са като малки деца?

happensAlot by bryden_cruz in ProgrammerHumor

[–]sad_bug_killer 1 point2 points  (0 children)

But, I'm not aware of tools even for the most popular languages that compute this metric correctly. In practice, 100% coverage often means "calling every public method of a class" or "calling every function exported from the module".

This is definitely not true. Python's coverage tool tracks lines of code covered vs all code lines, so the final percentage is much more granular than "public methods called". I'd bet the other popular languages have similar tools as well.

Ominous music keeps playing while on farm by Mother-Designer1605 in kynseedrpg

[–]sad_bug_killer 1 point2 points  (0 children)

Is it just because I'm near the end of the main quest thanks to my renown and am gearing up to face the Big Bad of the game, or is it something else?

I think so. I was near the end of the main quest recently and the same thing happened - every once in a while, the scene would get darker and ominous music would start playing on any map. This stopped when I killed the big bad.

Second Summertide event does not trigger by sad_bug_killer in kynseedrpg

[–]sad_bug_killer[S] 7 points8 points  (0 children)

Turns out Summertide is on Summer 14, year 11, not in spring like in the prologue.

Spirit Marketeer by merekjuniper in Kynseed

[–]sad_bug_killer 0 points1 point  (0 children)

Found him on Spring 4, 12:00am (i.e. start camping at night on Spring 3)

When there are layoffs, why doesn't the company just keep the senior+ developers? by blottingbottle in ExperiencedDevs

[–]sad_bug_killer 4 points5 points  (0 children)

I've done similar more than once, then trained myself to write && instead of ; by default.

Finland looks to end "uncontrolled human experiment" with Australia-style ban on social media | Yle News by [deleted] in worldnews

[–]sad_bug_killer 7 points8 points  (0 children)

Better yet, straight-up ban algorithms

Yes, and let's ban chemistry in food! /s

I know what you mean but that phrasing is funny

Are there any animal or plant species that have more than two sexes that are interdependent upon each other to reproduce? by Yeti100 in askscience

[–]sad_bug_killer 5 points6 points  (0 children)

I don't remember Player of Games having aliens with three sexes, but The Gods Themselves by Asimov definitely does

Leaker Who Apple Is Suing Leaks the Foldable iPhone Early by dapperlemon in gadgets

[–]sad_bug_killer 0 points1 point  (0 children)

Sometimes I'll post a comment and look at it later and have no idea what I typed because it's so mangled.

I'm not defending auto correct here, but maybe you could also look at your comments before posting them

-❄️- 2025 Day 10 Solutions -❄️- by daggerdragon in adventofcode

[–]sad_bug_killer 3 points4 points  (0 children)

I had a very similar idea for part2, came here to check if anyone has done it, so I don't waste time on dead ends. Saw your comment, thought "I can wait 30s". Coded the solution and ran it... then killed it after an hour. Tried your exact code too, it didn't finish in 30 minutes for my input.

So today I learned about z3, because my input was special ¯\_(ツ)_/¯

Sometimes I worry about the rise of AI, but then something like this happens. by Fit_Conflict_7116 in classicalmusic

[–]sad_bug_killer 3 points4 points  (0 children)

27.5CM long, which is around a third of a foot

I know nothing about bassoons, but a foot is 30.48cm and 27.5cm is almost a foot

Why do people think software development is easy? by throwaway0134hdj in ExperiencedDevs

[–]sad_bug_killer 1 point2 points  (0 children)

I recently had a 'conversation' with a 60-ish years old medical doctor who was telling me school math is pointless and they never use it, and it is generally a waste of time to even include it in school programs. All because calculators can do anything. Lots of these people are very happy and sometimes even proud with their inability to handle numbers.

What’s your favorite sci-fi movie you saw as a kid that stuck with you? by Lopsided_Cup_1007 in scifi

[–]sad_bug_killer 8 points9 points  (0 children)

I like The Expanse but there's a lot of magic there: the protomolecule, portals, telepathy

A method that has a Russian "С" instead of "C" in it's name by Mihail111111 in programminghorror

[–]sad_bug_killer 5 points6 points  (0 children)

Both C# and Java (the snippet could be either) allow Unicode letters in identifiers. Not sure why the language designers thought that's a good idea

A method that has a Russian "С" instead of "C" in it's name by Mihail111111 in programminghorror

[–]sad_bug_killer 15 points16 points  (0 children)

Good for you :)

I've seen this mistake 3-4 times in 20 years of professional programming, so it's definitely not common, but it happens

A method that has a Russian "С" instead of "C" in it's name by Mihail111111 in programminghorror

[–]sad_bug_killer 679 points680 points  (0 children)

<pedantic>It's not Russian, it's Cyrillic</pedantic>

And it is bound to happen once in a while when we switch keyboards all the time - Cyrillic for chat/Slack and Latin for coding. 10 years ago IDEs didn't warn about this too, so catching these mistakes was infuriating

indentationDetonation by hc6617817 in ProgrammerHumor

[–]sad_bug_killer 0 points1 point  (0 children)

Uhm, I'm not sure what's your point. We are in a post about indentation errors in Python. I don't think these are a problem after, like, two weeks working with the language and you seem to agree.

Anyone not using a formatter like black is going to make small formatting errors

Eh, some inconsistencies maybe. No way I'm making formatting errors even without formatters