frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Plasma Bigscreen – 10-foot interface for KDE plasma

https://plasma-bigscreen.org
254•PaulHoule•5h ago•78 comments

UUID package coming to Go standard library

https://github.com/golang/go/issues/62026
79•soypat•3h ago•24 comments

this css proves me human

https://will-keleher.com/posts/this-css-makes-me-human/
204•todsacerdoti•7h ago•73 comments

Can a wealthy family change the course of a deadly brain disease?

https://www.science.org/content/article/can-wealthy-family-change-course-deadly-brain-disease
26•Snoozus•2h ago•15 comments

Maybe There's a Pattern Here?

https://dynomight.net/pattern/
58•surprisetalk•2d ago•24 comments

LLMs work best when the user defines their acceptance criteria first

https://blog.katanaquant.com/p/your-llm-doesnt-write-correct-code
122•dnw•4h ago•93 comments

C# strings silently kill your SQL Server indexes in Dapper

https://consultwithgriff.com/dapper-nvarchar-implicit-conversion-performance-trap
81•PretzelFisch•6h ago•49 comments

Galileo's handwritten notes found in ancient astronomy text

https://www.science.org/content/article/galileo-s-handwritten-notes-found-ancient-astronomy-text
75•tzury•1d ago•12 comments

Hardening Firefox with Anthropic's Red Team

https://www.anthropic.com/news/mozilla-firefox-security
533•todsacerdoti•17h ago•149 comments

Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scripting

https://github.com/moongate-community/moongatev2
240•squidleon•15h ago•135 comments

Tell HN: I'm 60 years old. Claude Code has ignited a passion again

280•shannoncc•5h ago•167 comments

Querying 3B Vectors

https://vickiboykis.com/2026/02/21/querying-3-billion-vectors/
12•surprisetalk•3d ago•0 comments

Editing changes in patch format with Jujutsu

https://www.knifepoint.net/~kat/kb-jj-patchedit.html
3•cassepipe•2d ago•0 comments

The Shady World of IP Leasing

https://acid.vegas/blog/the-shady-world-of-ip-leasing/
82•alibarber•8h ago•48 comments

Show HN: Kula – Lightweight, self-contained Linux server monitoring tool

https://github.com/c0m4r/kula
25•c0m4r•5h ago•19 comments

Tech employment now significantly worse than the 2008 or 2020 recessions

https://twitter.com/JosephPolitano/status/2029916364664611242
806•enraged_camel•11h ago•549 comments

Launch HN: Palus Finance (YC W26): Better yields on idle cash for startups, SMBs

43•sam_palus•10h ago•70 comments

CT Scans of Health Wearables

https://www.lumafield.com/scan-of-the-month/health-wearables
197•radeeyate•15h ago•42 comments

Show HN: 1v1 coding game that LLMs struggle with

https://yare.io
15•levmiseri•22h ago•5 comments

What canceled my Go context?

https://rednafi.com/go/context-cancellation-cause/
27•mweibel•2d ago•15 comments

Entomologists use a particle accelerator to image ants at scale

https://spectrum.ieee.org/3d-scanning-particle-accelerator-antscan
114•gmays•13h ago•21 comments

A tool that removes censorship from open-weight LLMs

https://github.com/elder-plinius/OBLITERATUS
143•mvdwoord•14h ago•62 comments

Ada 2022

https://www.adaic.org/ada-resources/standards/ada22/
122•tosh•9h ago•23 comments

A Modular Robot Dashboard

https://github.com/transitiverobotics/transact
8•chfritz•1d ago•0 comments

Workers who love ‘synergizing paradigms’ might be bad at their jobs

https://news.cornell.edu/stories/2026/03/workers-who-love-synergizing-paradigms-might-be-bad-thei...
534•Anon84•15h ago•301 comments

Good Bad ISPs

https://community.torproject.org/relay/community-resources/good-bad-isps/
113•rzk•15h ago•38 comments

Analytic Fog Rendering with Volumetric Primitives (2025)

https://matejlou.blog/2025/02/11/analytic-fog-rendering-with-volumetric-primitives/
90•surprisetalk•1d ago•8 comments

Astra: An open-source observatory control software

https://github.com/ppp-one/astra
89•pppone•13h ago•22 comments

Multifactor (YC F25) Is Hiring an Engineering Lead

https://www.ycombinator.com/companies/multifactor/jobs/lcpd60A-engineering-lead
1•multifactor•12h ago

Art Bits from HyperCard

https://archives.somnolescent.net/web/mari_v2/junk/hypercard/
73•TigerUniversity•7h ago•15 comments
Open in hackernews

A Taxonomy of Bugs

https://ruby0x1.github.io/machinery_blog_archive/post/a-taxonomy-of-bugs/index.html
52•lissine•9mo ago

Comments

mannykannot•9mo ago
Here's a step 0 for your debugging strategy: spend a few minutes thinking about what could account for the bug. Prior to its occurrence, you are thinking about what could go wrong, but now you are thinking about what did go wrong, which is a much less open-ended question.
marginalia_nu•9mo ago
I've had large success by treating the bug as a binary search problem as soon as I identify an initial state that's correct and a terminal state that's incorrect. It seems like a lot of work, but that's underestimating just how fast binary searches are.

Depends of course on the nature of the bug whether it's a good strategy.

readthenotes1•9mo ago
I was such a bad developer that I realized I had to automate the re-running of parts of the system to find the bugs.

Of course, the code I wrote to exercise the code I wrote had bugs, but usually I wouldn't make offsetting errors.

It didn't fix all the problems I made, but it helped. And it helped to have the humility when trying to fix code to realize I wouldn't get it the first time, so should automate replication

bheadmaster•9mo ago
> I had to automate the re-running of parts of the system to find the bugs

Congratz, you've independently invented integration tests.

tough•9mo ago
I don't always test but adding a lil test after finding and fixing a bug so you don't end up there again a second time is a great practice
bheadmaster•9mo ago
Congratz, you've invented regression tests.
quantadev•9mo ago
Congrats, you've found someone who failed to invoke a buzzword that you know.

EDIT: But Acktshally `the code I wrote to exercise the code I wrote` is a description of "Unit Testing", not integration testing.

bheadmaster•9mo ago
Unit/integration tests are anything but a buzzword. And my intentions were not to belittle, but to praise.

Some actions simply make so much sense to do, that any sensible person (unaware of the concept) will start doing them given enough practice, and in process they "reinvent" a common method.

keybored•9mo ago
> And my intentions were not to belittle, but to praise.

With the stock eyeroll dismissal phrase.

quantadev•9mo ago
As far as you knew that guy was aware what Unit Testing was since well before you were born. lol. I'm sure he appreciates all your nice compliments.
bheadmaster•9mo ago
Good thing he has knights in shining armor like you to defend him from my nasty insults.
quantadev•9mo ago
Good thing you can admit what you were doing.
bheadmaster•9mo ago
Good thing you can understand sarcasm.
quantadev•9mo ago
but your sarcasm was truthful.
bheadmaster•9mo ago
but it wasn't.
quantadev•9mo ago
Well in that case...Congratz, you've invented sarcasm.
bheadmaster•9mo ago
Congratz, you've invented obnoxiousness.
quantadev•9mo ago
Not "independently reinvented" ?
readthenotes1•9mo ago
I was aware of unit testing before it had a name ... Desperation is the mother of intervention
quantadev•9mo ago
Yep, I "independently reinvent" the wheel every day I guess, because I, ya know...use wheels.
alilleybrinker•9mo ago
There's also the Common Weakness Enumeration (CWE), a long-running taxonomy of software weaknesses (meaning types of bugs).

https://cwe.mitre.org/

Animats•9mo ago
The Third-Party Bug

Is the party responsible for the bug bigger than you? If yes, it's your problem. If no, it's their problem.

marginalia_nu•9mo ago
A subcategory of the design flaw I find quite a lot is the case where the code works exactly as intended, it's just not having the desired effect because of some erroneous premise.
djmips•9mo ago
John Carmack uses a debugger