frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Async Rust never left the MVP state

https://tweedegolf.nl/en/blog/237/async-rust-never-left-the-mvp-state
126•pjmlp•2h ago•64 comments

Hand Drawn QR Codes

https://sethmlarson.dev/hand-drawn-qr-codes
105•jollyjerry•5h ago•12 comments

Bun is being ported from Zig to Rust

https://github.com/oven-sh/bun/commit/46d3bc29f270fa881dd5730ef1549e88407701a5
505•SergeAx•8h ago•356 comments

How OpenAI delivers low-latency voice AI at scale

https://openai.com/index/delivering-low-latency-voice-ai-at-scale/
408•Sean-Der•14h ago•125 comments

CVE-2026-31431: Copy Fail vs. rootless containers

https://www.dragonsreach.it/2026/05/04/cve-2026-31431-copy-fail-rootless-containers/
102•averi•6h ago•36 comments

Train Your Own LLM from Scratch

https://github.com/angelos-p/llm-from-scratch
241•kristianpaul•5h ago•28 comments

Should I Run Plain Docker Compose in Production in 2026?

https://distr.sh/blog/running-docker-in-production/
6•pmig•4d ago•3 comments

Mouse Pointer as a Mere Mortal

https://unsung.aresluna.org/mouse-pointer-as-a-mere-mortal/
14•zdw•2d ago•0 comments

Farewell to a Giant of Botany

https://nautil.us/farewell-to-a-giant-of-botany-1280409
25•Brajeshwar•2d ago•0 comments

Google Chrome silently installs a 4 GB AI model on your device without consent

https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/
196•john-doe•2h ago•209 comments

Agent Skills

https://addyosmani.com/blog/agent-skills/
253•BOOSTERHIDROGEN•12h ago•116 comments

The Frog for Whom the Bell Tolls

https://sethmlarson.dev/the-frog-for-whom-the-bell-tolls
9•anujbans•2h ago•2 comments

Empty Screenings – Finds AMC movie screenings with few or no tickets sold

https://walzr.com/empty-screenings
145•MrBuddyCasino•5h ago•117 comments

Why I Created phpc.tv

https://afilina.com/why-phpc-tv
14•luu•1d ago•1 comments

Gap between national food production and food-based dietary guidance (2025)

https://www.nature.com/articles/s43016-025-01173-4
60•simonebrunozzi•21h ago•38 comments

pgxbackup: Continuity Support for pgBackRest

https://thebuild.com/blog/2026/05/01/pgxbackup-continuity-support-for-pgbackrest/
51•Wingy•2d ago•7 comments

Securing a DoD contractor: Finding a multi-tenant authorization vulnerability

https://www.strix.ai/blog/how-strix-found-zero-auth-vulnerability-dod-backed-startup
197•bearsyankees•16h ago•81 comments

Does Employment Slow Cognitive Decline? Evidence from Labor Market Shocks

https://www.nber.org/papers/w35117
287•littlexsparkee•18h ago•267 comments

2-D Mathematical Curves

https://www.2dcurves.com/
30•the-mitr•5h ago•1 comments

When Networking Doesn't Work

https://www.os2museum.com/wp/when-networking-doesnt-work/
64•kencausey•13h ago•11 comments

Redis array: short story of a long development process

https://antirez.com/news/164
282•antirez•19h ago•96 comments

Biscuit

https://github.com/yattsu/biscuit
46•unixfg•6h ago•0 comments

Kids bypass age verification with fake moustaches

https://www.theregister.com/2026/05/04/uk_online_safety_act_age_checks_subvert/
96•dreadsword•5h ago•53 comments

Talking to strangers at the gym

https://thienantran.com/talking-to-35-strangers-at-the-gym/
1359•thitran•22h ago•646 comments

Testing macOS on the Apple Network Server 2.0 ROMs

http://oldvcr.blogspot.com/2026/05/testing-macos-on-apple-network-server.html
86•zdw•1d ago•17 comments

1966 Ford Mustang Converted into a Tesla with Working 'Full Self-Driving'

https://electrek.co/2026/05/02/tesla-1966-mustang-ev-conversion-full-self-driving/
169•Brajeshwar•18h ago•127 comments

Lessons for Agentic Coding: What should we do when code is cheap?

https://www.dbreunig.com/2026/05/04/10-lessons-for-agentic-coding.html
50•ingve•2h ago•42 comments

Microsoft Edge stores all passwords in memory in clear text, even when unused

https://twitter.com/L1v1ng0ffTh3L4N/status/2051308329880719730
548•cft•15h ago•193 comments

PyInfra 3.8.0

https://github.com/pyinfra-dev/pyinfra/releases/tag/v3.8.0
282•wowi42•21h ago•92 comments

I am worried about Bun

https://wwj.dev/posts/i-am-worried-about-bun/
487•remote-dev•17h ago•317 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