frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Hardware Attestation as Monopoly Enabler

https://grapheneos.social/@GrapheneOS/116550899908879585
1242•ChuckMcM•12h ago•405 comments

Local AI needs to be the norm

https://unix.foo/posts/local-ai-needs-to-be-norm/
883•cylo•12h ago•395 comments

The Greatest Shot in Television: James Burke Had One Chance to Nail This Scene (2024)

https://www.openculture.com/2024/10/the-greatest-shot-in-television.html
89•susam•3h ago•32 comments

7 lines of code, 3 minutes: Implement a programming language (2010)

https://matt.might.net/articles/implementing-a-programming-language/
18•azhenley•1h ago•1 comments

I'm going back to writing code by hand

https://blog.k10s.dev/im-going-back-to-writing-code-by-hand/
214•dropbox_miner•4h ago•85 comments

Running local models on an M4 with 24GB memory

https://jola.dev/posts/running-local-models-on-m4
231•shintoist•7h ago•77 comments

Obsidian plugin was abused to deploy a remote access trojan

https://cyber.netsecops.io/articles/obsidian-plugin-abused-in-campaign-to-deploy-phantom-pulse-rat/
152•cmbailey•8h ago•74 comments

Incident Report: CVE-2024-YIKES

https://nesbitt.io/2026/02/03/incident-report-cve-2024-yikes.html
475•miniBill•12h ago•117 comments

An AI coding agent, used to write code, needs to reduce your maintenance costs

https://www.jamesshore.com/v2/blog/2026/you-need-ai-that-reduces-your-maintenance-costs
107•cratermoon•6h ago•23 comments

Show HN: adamsreview – better multi-agent PR reviews for Claude Code

https://github.com/adamjgmiller/adamsreview
18•adamthegoalie•4h ago•1 comments

Ask HN: What are you working on? (May 2026)

165•david927•12h ago•586 comments

How Fast Does Claude, Acting as a User Space IP Stack, Respond to Pings?

https://dunkels.com/adam/claude-user-space-ip-stack-ping/
49•adunk•7h ago•10 comments

First tunnel element of the Fehmarnbelt Tunnel immersed

https://www.arup.com/en-us/news/first-fehmarnbelt-tunnel-element-lowered/
73•robin_reala•3d ago•17 comments

dBase: 1979-2026

https://delphinightmares.substack.com/p/dbase-1979-2026
50•deeaceofbase•3d ago•13 comments

Guy Goma's Accidental BBC Interview Lives on After 20 Years

https://www.nytimes.com/2026/05/06/business/media/bbc-guy-goma-interview.html
88•nxobject•2d ago•17 comments

Traces Of Humanity

https://tracesofhumanity.org/hello-world/
142•alex77456•13h ago•20 comments

I returned to AWS and was reminded why I left

http://fourlightyears.blogspot.com/2026/05/i-returned-to-aws-and-was-reminded-hard.html
712•andrewstuart•1d ago•516 comments

Seeing Birdsong

https://www.lucioarese.net/seeing-birdsong/
5•carabiner•3d ago•0 comments

The people preserving the scientific practice of bird banding

https://thenarwhal.ca/bird-banding-ontario/
47•bookofjoe•3d ago•0 comments

PS3 Emulator Devs Politely Ask That People Stop Flooding It with AI PRs

https://kotaku.com/playstation-3-emulator-devs-politely-ask-that-people-stop-flooding-it-with-ai-...
141•stalfosknight•6h ago•88 comments

Stop MitM on the first SSH connection, on any VPS or cloud provider

https://www.joachimschipper.nl/Stop%20MITM%20on%20the%20first%20SSH%20connection,%20on%20any%20VP...
101•JoachimSchipper•2d ago•61 comments

Eight More '8-Bit Era' Microprocessors

https://thechipletter.substack.com/p/eight-more-8-bit-era-microprocessors
68•klelatti•2d ago•18 comments

Gode Cookery – Authentic Medieval Recipes

http://www.godecookery.com/godeboke/godeboke.htm
7•Mr_Minderbinder•3d ago•0 comments

Maryland citizens hit with $2B power grid upgrade for out-of-state AI

https://www.tomshardware.com/tech-industry/artificial-intelligence/maryland-citizens-slapped-with...
214•lemonberry•9h ago•118 comments

The locals don't know

https://www.quarter--mile.com/The-Locals-Dont-Know
128•herbertl•14h ago•99 comments

Shelf Source: Tom MacWright

https://roadlessread.com/views/ss-macwright
9•tobr•1d ago•0 comments

Idempotency is easy until the second request is different

https://blog.dochia.dev/blog/idempotency/
298•ludovicianul•3d ago•180 comments

Walking slower? Your ears, not your knees, might be the problem

https://www.wsj.com/health/wellness/hearing-loss-walking-speed-iphone-study-c53c482a
105•marc__1•1d ago•66 comments

Conway's Law and Cross-Hatching

https://willmanning.com/writing/conways-law-and-cross-hatching
7•weatherreport•2d ago•0 comments

Task Paralysis and AI

https://g5t.de/articles/20260510-task-paralysis-and-ai/index.html
221•MrGilbert•23h ago•111 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•11mo ago
Congratz, you've invented obnoxiousness.
quantadev•11mo 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