frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The privacy nightmare of browser fingerprinting

https://kevinboone.me/fingerprinting.html
280•ingve•4h ago•182 comments

Show HN: Forty.News – Daily news, but on a 40-year delay

https://forty.news
50•foxbarrington•2h ago•15 comments

$1900 Bug Bounty to Fix the Lenovo Legion Pro 7 16IAX10H's Speakers on Linux

https://github.com/nadimkobeissi/16iax10h-linux-sound-saga
133•rany_•6d ago•50 comments

The Go-Between

https://theamericanscholar.org/the-go-between/
3•gmays•45m ago•0 comments

Agent design is still hard

https://lucumr.pocoo.org/2025/11/21/agents-are-hard/
305•the_mitsuhiko•9h ago•169 comments

Tektronix equipment has been used in many movies and shows

https://vintagetek.org/tektronix-in-movies-shows/
16•stmw•5d ago•2 comments

Personal blogs are back, should niche blogs be next?

https://disassociated.com/personal-blogs-back-niche-blogs-next/
558•gnabgib•22h ago•335 comments

As 'Dorian Gray' ages, its relevance only grows

https://www.washingtonpost.com/books/2025/11/08/dorian-gray-oscar-wilde-history/
59•apollinaire•1w ago•23 comments

Gwern's "Stem Humor" Directory

https://gwern.net/doc/math/humor/index
9•surprisetalk•3h ago•4 comments

Depot (YC W23) Is Hiring a Staff Infrastructure Engineer

https://www.ycombinator.com/companies/depot/jobs/O2iB56E-staff-infrastructure-engineer
1•jacobwg•3h ago

Helping Valve to power up Steam devices

https://www.igalia.com/2025/11/helpingvalve.html
771•TingPing•1d ago•274 comments

How to see the dead

https://www.asimov.press/p/see-the-dead
60•mailyk•5d ago•7 comments

Samsung's 60% DRAM price hike signals a new phase of global memory tightening

https://www.buysellram.com/blog/samsungs-memory-price-surge-sends-shockwaves-through-the-global-d...
416•redohmy•1w ago•365 comments

TiDAR: Think in Diffusion, Talk in Autoregression

https://arxiv.org/abs/2511.08923
86•internetguy•1w ago•12 comments

China reaches energy milestone by "breeding" uranium from thorium

https://humanprogress.org/china-reaches-energy-milestone-by-breeding-uranium-from-thorium/
105•surprisetalk•3h ago•68 comments

Digital echoes: open bus behavior on the compact Macintosh

https://thomasw.dev/post/compact-mac-openbus/
18•zdw•5d ago•0 comments

Show HN: Wealthfolio 2.0- Open source investment tracker. Now Mobile and Docker

https://wealthfolio.app/?v=2.0
614•a-fadil•1d ago•195 comments

The Connectivity Standards Alliance Announces Zigbee 4.0 and Suzi

https://csa-iot.org/newsroom/the-connectivity-standards-alliance-announces-zigbee-4-0-and-suzi-em...
102•paulatreides•4d ago•64 comments

'The French people want to save us': help pours in for glassmaker Duralex

https://www.theguardian.com/world/2025/nov/22/french-people-want-to-save-us-help-pours-glassmaker...
137•n1b0m•5h ago•94 comments

The Uncertain Origins of Aspirin

https://press.asimov.com/articles/aspirin
9•maxall4•4h ago•0 comments

Moss Survives 9 Months in Space Vacuum

https://scienceclock.com/moss-survives-9-months-in-space-vacuum/
146•ashishgupta2209•17h ago•62 comments

We should all be using dependency cooldowns

https://blog.yossarian.net/2025/11/21/We-should-all-be-using-dependency-cooldowns
443•todsacerdoti•1d ago•252 comments

How I learned Vulkan and wrote a small game engine with it (2024)

https://edw.is/learning-vulkan/
171•jakogut•21h ago•87 comments

Sharper MRI scans may be on horizon thanks to new physics-based model

https://news.rice.edu/news/2025/sharper-mri-scans-may-be-horizon-thanks-new-physics-based-model
136•hhs•20h ago•32 comments

Original Superman comic becomes the highest-priced comic book ever sold

https://www.bbc.com/news/articles/c8e9rp0knj6o
304•1659447091•15h ago•197 comments

The twin probes just launched toward Mars have an Easter egg on board

https://arstechnica.com/space/2025/11/the-twin-probes-just-launched-toward-mars-have-an-easter-eg...
56•pseudolus•1w ago•36 comments

New Apple Study Shows LLMs Can Tell What You're Doing from Audio and Motion Data

https://9to5mac.com/2025/11/21/apple-research-llm-study-audio-motion-activity/
55•andrewrn•5h ago•22 comments

LAPD helicopter tracker with real-time operating costs

https://lapdhelicoptertracker.com/
223•polalavik•22h ago•262 comments

Childhood Friends, Not Moms, Shape Attachment Styles Most

https://nautil.us/childhood-friends-not-moms-shape-attachment-styles-most-1247316/
270•dnetesn•1w ago•98 comments

Arduino Terms of Service and Privacy Policy update: setting the record straight

https://blog.arduino.cc/2025/11/21/the-arduino-terms-of-service-and-privacy-policy-update-setting...
92•manchoz•23h ago•81 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

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

With the stock eyeroll dismissal phrase.

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