frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

.name Termination

https://neil.fraser.name/news/2026/09/03/
603•pavel_lishin•3h ago•157 comments

Audacity 4.0

https://github.com/audacity/audacity/releases/tag/Audacity-4.0.0
859•ClydeN•7h ago•193 comments

K2 Horizon: Frontier Performance, Radically Open

https://ifm.ai/blog/k2/
129•karimf•2h ago•33 comments

Any Human Ever – One life, drawn at random from all who have ever lived

https://anyhumanever.com/
204•thinkingemote•3h ago•97 comments

New York Times and The Athletic workers demand company scrap Kalshi deal

https://newsguild.org/new-york-times-and-the-athletic-workers-demand-company-scrap-kalshi-deal/
196•ChrisArchitect•4h ago•132 comments

Ask HN: Why are OpenAI, Claude, and Grok simultaneously down? Coincidence?

169•halcdev•2h ago•136 comments

Porting my 1993 Amiga game to Godot, with an LLM reading the 68000 assembly

https://babyloniantwins.com/blog/porting-a-1993-amiga-game-to-godot/
13•rabahs•3h ago•2 comments

Founding Creative Engineer – Gooseworks (YC W23) Is Hiring

https://www.ycombinator.com/companies/gooseworks/jobs/rfgY8La-founding-creative-engineer
1•shivsak•1h ago

Static Allocation, Constant Work

https://matklad.github.io/2026/09/02/static-allocation-constant-work.html
38•surprisetalk•1d ago•0 comments

Sony makes bold claim about game ownership

https://aginggamer.net/game-industry/sony-makes-bold-claim-about-game-ownership/
138•speckx•2h ago•167 comments

Launch HN: Mireye (YC S26) – Infrastructure for Physical World AI Agents

https://www.mireye.com
12•anshchokshi•1h ago•0 comments

Google Antigravity TOS: 3rd party usage can get Google account suspended

https://twitter.com/GergelyOrosz/status/2095453567955968398
151•tosh•7h ago•102 comments

“We want it to really confuse people, but also really make people happy”

https://unsung.aresluna.org/we-want-it-to-really-confuse-people-but-also-really-make-people-happy/
8•zdw•4d ago•0 comments

Pre-Release of Polars 2.0

https://pola.rs/posts/announcing-polars-2/
348•komape•11h ago•110 comments

The browser's main thread is expensive

https://kciter.so/posts/the-expensive-main-thread/en/
317•kciter•2d ago•102 comments

Nvidia to Acquire Hugging Face

https://blogs.nvidia.com/blog/nvidia-to-acquire-hugging-face/
247•tosh•5h ago•74 comments

Invisible Companies

https://colossus.com/article/invisible-companies/
141•ltononro•2d ago•43 comments

Usbsid-Pico: Bridging Real Commodore 64 Sound to Modern USB

https://smallrun.net/blog/loud/usbsid-pico-sids-on-usb
8•LouDNL•52m ago•0 comments

VC isn't VC anymore – understanding the rise of Cancer Capital

https://www.anildash.com/2026/09/02/cancer-capital/
93•tlhunter•2h ago•27 comments

What I Learned from My Mom (1941-2026)

https://experimentalliving.substack.com/p/what-i-learned-from-my-mom-1941-2026
225•NaOH•4d ago•9 comments

Three schoolgirls in Kinsale pulled up a pea plant covered in warts (2014)

https://www.yahoo.com/news/16-old-girls-win-google-science-fair-simple-194434703.html
135•DamonHD•10h ago•58 comments

Texas Data Center Map: See where data centers are operating or planned

https://www.kxan.com/news/texas/texas-data-center-tracker-see-where-600-projects-are-operating-or...
30•simonpure•1h ago•20 comments

Sanders introduces bill to ban artificial superintelligence and pause AI

https://www.sanders.senate.gov/press-releases/news-sanders-casar-introduce-legislation-to-ban-art...
19•-_-•40m ago•7 comments

Intrusive linked lists (2019)

https://www.data-structures-in-practice.com/intrusive-linked-lists/
70•tripdout•3d ago•48 comments

Fish bad, sugar good and other medieval ideas about food

https://lithub.com/fish-bad-sugar-good-and-other-medieval-ideas-about-food/
88•mooreds•2d ago•65 comments

Cheap Desktop 400GbE Switch MikroTik CRS804-4DDQ-HRM Review

https://www.servethehome.com/mikrotik-crs804-4ddq-hrm-review-marvell-annapurna-labs-400gbe/
12•speckx•55m ago•2 comments

Grok outage

https://status.x.ai/
146•samaysharma•2h ago•136 comments

Amazon Stonehenge: Parque Arqueológico do Solstício

https://en.wikipedia.org/wiki/Parque_Arqueol%C3%B3gico_do_Solst%C3%ADcio
40•nycdatasci•3d ago•10 comments

Instrument Clusters Are Now Paid Extras in Two Hyundai Models

https://www.caranddriver.com/news/a73583741/hyundai-instrument-cluster-paid-option/
10•WarOnPrivacy•35m ago•6 comments

My BC-250 Journey (With 40 CUs Unlocked)

https://worldofmatthew.com/blog/bc250/
9•worldofmatthew•4d ago•6 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

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

With the stock eyeroll dismissal phrase.

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