frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Interim Computer Museum

https://icm.museum/
38•mulmen•1h ago•4 comments

Make your first edit to OpenStreetMap

https://high5apps.github.io/josm-plugin-website-wizard/
373•juliantigler•11h ago•86 comments

Real-SWE: Benchmarking AI models on private, real-world, enterprise codebases

https://withspecific.com/benchmarks/real-swe
164•theanonymousone•7h ago•87 comments

Nvidia is the central bank of AI

https://www.economist.com/interactive/briefing/2026/09/03/nvidia-is-the-central-bank-of-ai
422•tolugenius•13h ago•290 comments

Why are AI agents lying, cheating and coordinating?

https://yoshuabengio.org/en/publication/why-are-ai-agents-lying-cheating-and-coordinating
38•jonifico•2h ago•35 comments

Apple iPod Engraver (2019)

https://dunstanorchard.com/apple-ipod-engraver/
162•NaOH•4d ago•37 comments

Everyone should slow down AI development except for me

https://xeiaso.net/notes/2026/everyone-slowdown-but-me/
245•xena•3h ago•135 comments

Getting 50 GB/S Back from the Apple Neural Engine

https://eiln.github.io/posts/ane-dma.html
100•eiln•3d ago•21 comments

Stabilizing Rust's Never Type

https://lwn.net/SubscriberLink/1091015/d9e48318ed242b41/
154•cjd8•3d ago•41 comments

No Atlantic hurricanes by Sept. 12 breaks a 60-year record

https://www.accuweather.com/en/hurricane/no-atlantic-hurricanes-by-sept-12-breaks-a-60-year-recor...
42•RickJWagner•4h ago•36 comments

The Succession Crisis That Tore England Apart

https://www.historytoday.com/archive/feature/succession-crisis-tore-england-apart
6•pepys•56m ago•0 comments

I Made a Non-Wi-Fi Mitsubishi AC Smart with an ESP32

https://medium.com/@ivangomezarnedo/how-i-added-a-non-wi-fi-mitsubishi-ac-to-home-assistant-22770...
9•ichacas•2d ago•0 comments

Don't be the out of touch Kung Fu master – John Carmack

https://twitter.com/ID_AA_Carmack/status/2098443262214230095
51•dsubburam•6h ago•30 comments

From Git to Fossil

https://lucio.albenga.es/web-en/posts/2025/from-git-to-fossil.html
12•smartmic•2d ago•6 comments

Don't call yourself an artisanal programmer

https://purplesyringa.moe/blog/dont-call-yourself-an-artisanal-programmer/
9•emschwartz•1h ago•4 comments

Vintage Scientific Papers with LaTeX

https://github.com/Foadsf/vintage-latex
45•petalmind•3d ago•3 comments

LG denies TV spying claims, says tracking and snooping concerns 'not true'

https://www.tomshardware.com/tech-industry/big-tech/lg-strongly-denies-tv-security-claims-says-tr...
462•datakan•2d ago•378 comments

AgentsDock: An IDE designed for agentic AI research

https://agentsdock.net/
20•ZihuiGeorgia•4h ago•8 comments

We must pace the frontier

https://darioamodei.com/post/we-must-pace-the-frontier
592•apsec112•14h ago•821 comments

Will There Be a 7G?

https://arxiv.org/abs/2609.01877
87•Betelbuddy•11h ago•148 comments

I made a build visualizer to understand Bun's compile times

https://lalitm.com/post/buildprof/
108•lalitmaganti•13h ago•21 comments

P(doom)

https://lucumr.pocoo.org/2026/9/12/pdoom/
26•lumpa•6h ago•8 comments

Microcode in Intel's 8087 floating-point chip: the scale instruction

https://www.righto.com/2026/09/8087-microcode-reverse-engineering-fscale.html
93•pwg•12h ago•27 comments

Linux Zoom client proactively reading everything written to X11 clipboard

https://hachyderm.io/@simontatham/117201594980991062
222•encyclopedism•9h ago•68 comments

Android NAT-T keepalive offload bypasses VPN lockdown

https://supuk.ch/papers/android-natt-keepalive-vpn-bypass
180•mhitza•1d ago•46 comments

I fixed a tractor using John Deere's self-repair service. Farmers aren't sold

https://www.wired.com/story/i-fixed-a-tractor-john-deere-self-repair-service/
114•sbulaev•1d ago•115 comments

Align AI and Mathematics–To Something Else

https://liorpachter.wordpress.com/2026/09/12/align-ai-and-mathematics-to-something-else/
29•nitrogenpuddle•3h ago•18 comments

How Trail of Bits helps verify the integrity of Signal chats

https://blog.trailofbits.com/2026/08/11/how-trail-of-bits-helps-verify-the-integrity-of-your-sign...
63•dgroshev•16h ago•38 comments

LG Says We're Fake News [video]

https://www.youtube.com/watch?v=ToP9xfLDSME
201•HelloUsername•8h ago•92 comments

A Mathematical Framework for Transformer Circuits (2021)

https://transformer-circuits.pub/2021/framework/index.html
88•Bluestein•14h ago•17 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.