frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Stop Making TUIs

https://sockpuppet.org/blog/2026/08/20/stop-making-tuis/
29•underdeserver•2h ago•32 comments

The August 17 outage

https://github.blog/news-insights/company-news/the-august-17-outage-and-the-work-ahead/
479•0xedb•12h ago•547 comments

I like 'em thick: an apology to my English teachers

https://www.experimental-history.com/p/i-like-em-thick
698•Ariarule•2d ago•289 comments

The Religious Experience of Philip K. Dick by R. Crumb (1986)

https://philipdick.com/resources/miscellaneous/the-religious-experience-of-philip-k-dick-by-r-cru...
22•wise_blood•2h ago•8 comments

HTML Can Do That

https://chrisburnell.com/html-can-do-that/
738•encyclopedism•1d ago•184 comments

Malicious Rust crate Arrayref runs a build-time payload

https://safedep.io/arrayref-proc-macro1-rust-build-time-malware/
477•abhisek•18h ago•406 comments

Ox Alpha

https://openrouter.ai/stealth/ox-alpha
121•mtokmak06•7h ago•90 comments

Version Control for Everything

https://tyoverby.com/posts/version-control-for-everything-else/
18•evakhoury•3d ago•6 comments

I should have loved biology (2020)

https://jsomers.net/i-should-have-loved-biology/
257•tyre•13h ago•100 comments

We Rebuilt the Linux MicroVM Stack on Apple Silicon

https://encore.dev/blog/firecracker-apple-silicon
5•signa11•45m ago•0 comments

Japan tried to build an operating system for the world, the US intervened

https://www.xda-developers.com/japan-tried-build-operating-system-entire-world-us-government-inte...
68•rdmuser•2h ago•28 comments

Why aren't smart people happier? (2022)

https://www.experimental-history.com/p/why-arent-smart-people-happier
157•rafaelc•13h ago•214 comments

CIA funding helped keep NeXT afloat in the 80s

https://www.wsj.com/tech/steve-jobs-apple-next-cia-161b65f9?st=NWWds1&reflink=desktopwebshare_per...
392•EwanG•1d ago•234 comments

Launch HN: Vendo (YC S26) – Let users build features on top of your product

https://github.com/runvendo/vendo
34•yousefh409•16h ago•18 comments

Captain Zilog

https://www.zilog.com/captain_zilog/
45•rbanffy•3d ago•6 comments

Make a 6-Tesla-class high-temperature superconducting dipole magnet at 4.2 K

https://journals.aps.org/prab/abstract/10.1103/4nhs-bkwh
37•supermagnet•6d ago•8 comments

Codex on AWS bedrock bug causing 10x charges

https://github.com/openai/codex/issues/37674
124•TheP1000•4h ago•38 comments

Show HN: Huzzah – a novel approach to coding with AI

https://www.danielvaughn.dev/posts/huzzah/
288•danielvaughn•12h ago•154 comments

Show HN: Argentic – An L402 Lightning toll booth for AI scraping agents

https://Argentic.network
5•Ag0146•1h ago•1 comments

I Ported Moonshine to JavaScript

https://petewarden.com/2026/08/15/why-i-ported-moonshine-to-javascript/
4•jreynar•5d ago•1 comments

Vomit: Clean up Claude 5's token output with a separate LLM

https://github.com/zachahn/vomit
240•Bluestein•16h ago•241 comments

Linux 7.2

https://www.igalia.com/2026/08/19/Linux-72-Released.html
242•mariuz•15h ago•88 comments

Seed: Minimal, self-modifying agent harness

https://github.com/vivekhaldar/seed
6•gandalfgeek•2h ago•0 comments

AliExpress runs silent WebAudio fingerprinting that breaks Bluetooth multipoint

https://blog.laserphile.com/2026/08/aliexpress-webpage-keeping-multipoint.html
951•emctech•21h ago•298 comments

Git at any scale

https://cursor.com/blog/git-at-any-scale
325•meetpateltech•2d ago•102 comments

Speeding Up (Small) Ruby Hashes

https://byroot.github.io/ruby/performance/2026/08/13/speeding-up-ruby-hashes.html
48•arto•1w ago•0 comments

Stop Anthropomorphizing Intermediate Tokens as Reasoning/Thinking Traces (2025)

https://arxiv.org/abs/2504.09762
225•nunodonato•1d ago•147 comments

SpacetimeDB: a short technical review

https://strn.cat/posts/spacetime/
88•hurrrr•12h ago•17 comments

Anti-AI fonts are useless and harmful

https://blog.yaros.ae/anti-ai-fonts-are-useless-and-harmful/
151•speckx•16h ago•110 comments

AI companies destroy physical books – let's scan rare books before it's too late

https://annas-archive.gl/blog/physical-destruction.html
285•Cider9986•5h ago•209 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.