frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Canvas is down as ShinyHunters threatens to leak schools’ data

https://www.theverge.com/tech/926458/canvas-shinyhunters-breach
455•stefanpie•6h ago•307 comments

Maybe you shouldn't install new software for a bit

https://xeiaso.net/blog/2026/abstain-from-install/
317•psxuaw•6h ago•137 comments

Dirtyfrag: Universal Linux LPE

https://www.openwall.com/lists/oss-security/2026/05/07/8
522•flipped•9h ago•218 comments

Cloudflare to cut about 20% workforce

https://www.reuters.com/business/world-at-work/cloudflare-cut-over-1100-jobs-2026-05-07/
443•PriorityLeft•8h ago•264 comments

Pinocchio is weirder than you remembered

https://storica.club/blog/pinocchio-in-italian/
70•cemsakarya•1d ago•11 comments

The map that keeps Burning Man honest

https://www.not-ship.com/burning-man-moop/
583•speckx•15h ago•304 comments

Agents need control flow, not more prompts

https://bsuh.bearblog.dev/agents-need-control-flow/
397•bsuh•12h ago•203 comments

GNU IFUNC is the real culprit behind CVE-2024-3094

https://github.com/robertdfrench/ifuncd-up
51•foltik•5h ago•20 comments

Plasticity and language in the anaesthetized human hippocampus

https://www.bcm.edu/news/researchers-discover-advanced-language-processing-in-the-unconscious-hum...
80•hhs•6h ago•32 comments

Natural Language Autoencoders: Turning Claude's Thoughts into Text

https://www.anthropic.com/research/natural-language-autoencoders
235•instagraham•11h ago•80 comments

AlphaEvolve: Gemini-powered coding agent scaling impact across fields

https://deepmind.google/blog/alphaevolve-impact/
272•berlianta•14h ago•113 comments

DeepSeek 4 Flash local inference engine for Metal

https://github.com/antirez/ds4
340•tamnd•13h ago•95 comments

Gambling ads on social media reach more than twice as many men as women: study

https://www.cam.ac.uk/research/news/gambling-ads-on-social-media-reach-more-than-twice-as-many-me...
35•hhs•6h ago•20 comments

Agentic Engineering

https://addyosmani.com/blog/agentic-engineering/
7•fagnerbrack•50m ago•0 comments

AI slop is killing online communities

https://rmoff.net/2026/05/06/ai-slop-is-killing-online-communities/
540•thm•10h ago•486 comments

Los Alamos and the long path to detecting neutrinos

https://www.lanl.gov/media/publications/1663/from-ghost-particle-to-cosmic-messenger
14•LAsteNERD•1d ago•1 comments

Nonprofit hospitals spend billions on consultants with no clear effect

https://www.uchicagomedicine.org/forefront/research-and-discoveries-articles/nonprofit-hospitals-...
108•hhs•6h ago•31 comments

Brazil's Pix payment system faces pressure from Visa and Mastercard

https://www.elciudadano.com/en/brazils-pix-payment-system-faces-pressure-from-visa-and-mastercard...
135•wslh•11h ago•90 comments

How to make SSE token streams resumable, cancellable, and multi-device

https://zknill.io/posts/everyone-said-sse-token-streaming-was-easy/
6•zknill•1d ago•0 comments

Singapore introduces caning for boys who bully others at school

https://www.theguardian.com/world/2026/may/06/singapore-caning-school-bullies
117•rustoo•1d ago•126 comments

Komai: a fine Matrix chat app you can get to love

https://etke.cc/blog/introducing-komai
38•anotherevan•5h ago•16 comments

I want to live like Costco people

https://tastecooking.com/i-want-to-live-like-costco-people/
272•speckx•13h ago•568 comments

Hardening Firefox with Claude Mythos Preview

https://hacks.mozilla.org/2026/05/behind-the-scenes-hardening-firefox/
116•HieronymusBosch•13h ago•68 comments

Two Home Affairs officials suspended after AI 'hallucinations' found

https://www.citizen.co.za/news/home-affairs-officials-suspended-ai-hallucinations/
67•jruohonen•9h ago•18 comments

Creating for a niche

https://www.davesnider.com/posts/working-in-a-niche
47•snide•9h ago•6 comments

Programming Still Sucks

https://www.stvn.sh/writing/programming-still-sucks-fqffhyp
531•jeromechoo•1d ago•282 comments

Chrome removes claim of On-device Al not sending data to Google Servers

https://old.reddit.com/r/chrome/comments/1t5qayz/chrome_removes_claim_of_ondevice_al_not_sending/
514•newsoftheday•13h ago•196 comments

Principles for agent-native CLIs

https://twitter.com/trevin/status/2051316002730991795
76•blumpy22•11h ago•42 comments

Tools in the Grass: Raising the next generation of crafts person

https://www.popularwoodworking.com/editors-blog/tools-in-the-grass/
39•NaOH•2d ago•3 comments

The Self-Cancelling Subscription

https://predr.ag/blog/the-self-cancelling-subscription/
165•surprisetalk•15h ago•67 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

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

With the stock eyeroll dismissal phrase.

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