frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Valve releases Steam Controller CAD files under Creative Commons license

https://www.digitalfoundry.net/news/2026/05/valve-releases-steam-controller-cad-files-under-creat...
1050•haunter•9h ago•343 comments

How I made $350K from an open-source JavaScript library using dual licensing

https://www.paritydeals.com/blog/monetize-open-source-dual-licensing/
21•sachinneravath•49m ago•6 comments

Appearing productive in the workplace

https://nooneshappy.com/article/appearing-productive-in-the-workplace/
705•diebillionaires•9h ago•272 comments

The Vatican's Website in Latin

https://www.vatican.va/latin/latin_index.html
10•ks2048•10m ago•0 comments

The Old Guard: Confronting America's Gerontocratic Crisis

https://harpers.org/archive/2026/05/the-old-guard-samuel-moyn-gerontocracy/
19•Caiero•1h ago•5 comments

Vibe coding and agentic engineering are getting closer than I'd like

https://simonwillison.net/2026/May/6/vibe-coding-and-agentic-engineering/
389•e12e•10h ago•416 comments

From Supabase to Clerk to Better Auth

https://blog.val.town/better-auth
203•stevekrouse•8h ago•125 comments

The bottleneck was never the code

https://www.thetypicalset.com/blog/thoughts-on-coding-agents
507•Anon84•2d ago•328 comments

Google Cloud fraud defense, the next evolution of reCAPTCHA

https://cloud.google.com/blog/products/identity-security/introducing-google-cloud-fraud-defense-t...
205•unforgivenpasta•7h ago•199 comments

Building my own Vi text editor in BASIC

https://leetusman.com/nosebook/yvi
23•zeech•1d ago•7 comments

How do I inform Windows that I'm writing a binary file?

https://devblogs.microsoft.com/oldnewthing/20260504-00/?p=112296
14•ingve•1d ago•11 comments

Learning the Integral of a Diffusion Model

https://sander.ai/2026/05/06/flow-maps.html
92•benanne•6h ago•17 comments

Show HN: Hallucinopedia

http://halupedia.com/
145•bstrama•8h ago•152 comments

Show HN: Tilde.run – Agent sandbox with a transactional, versioned filesystem

https://tilde.run/
126•ozkatz•9h ago•93 comments

Community firmware for the Xteink X4 e-paper reader

https://github.com/crosspoint-reader/crosspoint-reader
43•dmos62•1d ago•19 comments

A Theory of Deep Learning

https://elonlit.com/scrivings/a-theory-of-deep-learning/
123•elonlit•1d ago•27 comments

Inkscape 1.4.4

https://inkscape.org/doc/release_notes/1.4.4/Inkscape_1.4.4.html
211•s1291•6h ago•54 comments

Perturb-MARS: Reading mouse experiments through a human lens

https://www.noetik.blog/p/perturb-mars-reading-mouse-experiments
3•crescit_eundo•2d ago•0 comments

Programming Still Sucks

https://www.stvn.sh/writing/programming-still-sucks-fqffhyp
77•jeromechoo•6h ago•16 comments

Ted Turner has died

https://www.cnn.com/2026/05/06/us/ted-turner-death
223•pseudolus•10h ago•185 comments

Show HN: I built an open-source email builder, alternative to Beefree/Unlayer

https://play.templatical.com
98•oahmadov•9h ago•24 comments

Show HN: PHP-fts – Full-text search engine in pure PHP, no extensions

https://github.com/olivier-ls/php-fts
30•asmodios•5h ago•7 comments

Iran hit more U.S. military targets than has been reported, satellite images

https://www.washingtonpost.com/investigations/2026/05/06/iran-us-bases-satellite-images/
64•SanjayMehta•1h ago•29 comments

Higher usage limits for Claude and a compute deal with SpaceX

https://www.anthropic.com/news/higher-limits-spacex
382•meetpateltech•9h ago•327 comments

Setting up a Sun Ray server on OpenIndiana Hipster 2025.10

https://catstret.ch/202605/srss-hipster202510/
125•jandeboevrie•14h ago•46 comments

SoundOff: Low-Cost Passive Ultrasound Tags

https://yibo-fu.com/SoundOff-Low-cost-Passive-Ultrasound-Tags-for-Non-invasive-and-Non
31•jonbaer•8h ago•1 comments

SQLite Is a Library of Congress Recommended Storage Format

https://sqlite.org/locrsf.html
8•whatisabcdefgh•3h ago•0 comments

What makes a good smartphone camera?

https://cadence.moe/blog/2026-05-05-what-makes-a-good-smartphone-camera
76•zdw•1d ago•54 comments

What British people mean when they say 'sorry'

https://www.bbc.com/travel/article/20260506-what-british-people-really-mean-when-they-say-sorry
7•BiraIgnacio•2h ago•0 comments

Virtual violin produces realistic sounds

https://news.mit.edu/2026/mit-engineers-virtual-violin-produces-realistic-sounds-0429
75•gmays•3d ago•61 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

mannykannot•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
Congratz, you've invented regression tests.
quantadev•11mo 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•11mo 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•11mo ago
> And my intentions were not to belittle, but to praise.

With the stock eyeroll dismissal phrase.

quantadev•11mo 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•11mo ago
Good thing he has knights in shining armor like you to defend him from my nasty insults.
quantadev•11mo ago
Good thing you can admit what you were doing.
bheadmaster•11mo ago
Good thing you can understand sarcasm.
quantadev•11mo ago
but your sarcasm was truthful.
bheadmaster•11mo ago
but it wasn't.
quantadev•11mo ago
Well in that case...Congratz, you've invented sarcasm.
bheadmaster•11mo ago
Congratz, you've invented obnoxiousness.
quantadev•11mo ago
Not "independently reinvented" ?
readthenotes1•11mo ago
I was aware of unit testing before it had a name ... Desperation is the mother of intervention
quantadev•11mo ago
Yep, I "independently reinvent" the wheel every day I guess, because I, ya know...use wheels.
alilleybrinker•11mo 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•11mo 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•11mo 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•11mo ago
John Carmack uses a debugger