frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Learning Software Architecture

https://matklad.github.io/2026/05/12/software-architecture.html
193•surprisetalk•3h ago•30 comments

Screenshots of Old Desktop OSes

http://www.typewritten.org/Media/
319•adunk•7h ago•143 comments

Postmortem: TanStack NPM supply-chain compromise

https://tanstack.com/blog/npm-supply-chain-compromise-postmortem
908•varunsharma07•15h ago•379 comments

EU to crack down on TikTok, Instagram's 'addictive design' targeting kids

https://www.cnbc.com/2026/05/12/tiktok-instagram-social-media-addictive-eu-crack-down.html
110•thm•1h ago•58 comments

Docker images are MB; a full game engine compiles to 35MB WASM

https://bogomolov.work/blog/posts/wasm-vs-docker/
33•theanonymousone•2d ago•28 comments

A HN post with negative points – how?

https://news.ycombinator.com/item?id=48104663
34•donohoe•2h ago•19 comments

They Live (1988) inspired Adblocker

https://github.com/davmlaw/they_live_adblocker
337•tokenburner•12h ago•104 comments

Text Blaze (YC W21) Is Hiring for a No-AI Summer Internship

https://www.ycombinator.com/companies/text-blaze/jobs/P4CCN62-the-blaze-no-ai-summer-internship
1•scottfr•56m ago

If AI writes your code, why use Python?

https://medium.com/@NMitchem/if-ai-writes-your-code-why-use-python-bf8c4ba1a055
603•indigodaddy•16h ago•634 comments

Coursera and Udemy are now one company

https://blog.coursera.org/coursera-and-udemy-are-now-one-company-creating-the-worlds-most-compreh...
59•Anon84•2h ago•17 comments

UCLA discovers first stroke rehabilitation drug to repair brain damage (2025)

https://stemcell.ucla.edu/news/ucla-discovers-first-stroke-rehabilitation-drug-repair-brain-damage
374•bookofjoe•19h ago•72 comments

Music has scales / raagas. What about storytelling in movies and prestige shows?

https://arc.quanten.co/archetype
27•phaedrus044•4h ago•31 comments

Optimize for change not application performance

https://www.echooff.dev/blog/developer-experience-is-a-performance-feature
22•lo1tuma•2d ago•8 comments

Rtwatch: Watch videos with friends using WebRTC

https://github.com/pion/rtwatch
46•nateb2022•2d ago•6 comments

Toxicity on Social Media – The Noisy Room

https://thenoisyroom.com
105•skm•5h ago•68 comments

Claude Platform on AWS

https://claude.com/blog/claude-platform-on-aws
163•matrixhelix•11h ago•73 comments

Extremely Low Frequencies

https://computer.rip/2026-05-09-extremely-low-frequencies.html
112•pinewurst•8h ago•8 comments

Chasing Chicago's movable bridges (2014)

https://aresluna.org/seesaws-for-giants/
7•NaOH•2d ago•0 comments

Google says criminal hackers used AI to find a major software flaw

https://www.nytimes.com/2026/05/11/us/politics/google-hackers-attack-ai.html
202•donohoe•23h ago•148 comments

I let AI build a tool to help me figure out what was waking me up at night

https://martin.sh/i-let-ai-build-a-tool-to-help-me-figure-out-what-was-waking-me-up-at-night/
208•showmypost•15h ago•215 comments

I hate soldering

https://user8.bearblog.dev/rant/
147•James72689•4d ago•135 comments

Remembering Planet Source Code: Sharing Code Before GitHub Made It Easy

https://www.pietschsoft.com/post/2026/05/05/remembering-planet-source-code-sharing-code-before-gi...
28•pabs3•3d ago•3 comments

Unitree GD01: China's $537k rideable transformer robot is now in production

https://gagadget.com/en/709729-unitree-gd01-chinas-537k-rideable-transformer-robot-is-now-in-prod...
54•rguiscard•3h ago•37 comments

Software Internals Book Club

https://eatonphil.com/bookclub.html
119•aragonite•10h ago•20 comments

Boriel BASIC

https://zxbasic.readthedocs.io/en/docs/
56•AlexeyBrin•3d ago•20 comments

Don't hijack my mouse pointer

https://ruky.me/dont-hijack-my-pointer/
12•rukshn•56m ago•6 comments

Nullsoft, 1997-2004 (2004)

https://slate.com/technology/2004/11/the-death-of-the-last-maverick-tech-company.html
298•downbad_•4d ago•83 comments

Show HN: A modern Music Player Daemon based on Rockbox firmware

https://github.com/tsirysndr/rockbox-zig
94•tsiry•2d ago•22 comments

Interaction Models

https://thinkingmachines.ai/blog/interaction-models/
251•smhx•16h ago•31 comments

Show HN: TikTok but for scientific papers

https://andreaturchet.github.io/website/index.html
142•ciwrl•20h ago•64 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

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

With the stock eyeroll dismissal phrase.

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