frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AnkiDroid: Google Play no longer allowing Open Collective donation link

https://github.com/ankidroid/Anki-Android/issues/21656
548•hexa555•5h ago•147 comments

Ask HN: Who is hiring? (September 2026)

52•whoishiring•1h ago•46 comments

Io_uring Without Readahead

https://frn.sh/io-uring/
58•porridgeraisin•2h ago•10 comments

44% on ARC-AGI-1 in 67 cents

https://mvakde.github.io/blog/44-on-arc-1/
251•porridgeraisin•6h ago•72 comments

Ambient CSS v3 – Blender meets CSS

https://ambientcss.vercel.app/
13•kikkupico•33m ago•2 comments

American Airlines' Legendary Mechanic Passes Away at 100 After 80-Year Career

https://simpleflying.com/american-airlines-mechanic-passes-away-100-record-80-years/
259•NaOH•2d ago•104 comments

Fastpotify

https://fastpotify.rocks/
674•nreece•13h ago•432 comments

EFF to Governor Newsom: Veto California's AB 1709

https://www.eff.org/deeplinks/2026/08/eff-gov-newsom-veto-californias-ab-1709
62•mdp2021•1h ago•33 comments

We Are Rebuilding Monica

https://www.monicahq.com/en/blog/we-are-rebuilding-monica/
31•robinhood•1d ago•12 comments

Introducing Ad Blocker for Firefox on iOS

https://blog.mozilla.org/en/firefox/ad-blocker-on-ios/
82•HieronymusBosch•2h ago•33 comments

Saab Enters Collaborative Combat Aircraft Race with High-End Concept

https://aviationweek.com/defense/aircraft-propulsion/saab-enters-collaborative-combat-aircraft-ra...
55•rbanffy•1h ago•26 comments

A browser-based viewer for Office Open XML documents

https://ooxml.silurus.dev/
8•mathiaswp•35m ago•0 comments

Fractal Jittered Voronoi Partitions

https://www.boristhebrave.com/2026/08/29/fractal-jittered-voronoi-partitions/
43•jp3141•2d ago•3 comments

Tmp.0ut Volume 5

https://tmpout.sh/5/
156•ghuntley•16h ago•34 comments

Restroom Archive

https://restroomarchive.com
271•jcalx•12h ago•63 comments

GPU World

https://www.gpuworld.org/
349•simonpure•12h ago•207 comments

Playa Phone

https://playaphone.com/
704•cutoff•1d ago•221 comments

I turned my security cameras into an automatic bird identification system

https://jasontucker.blog/how-i-turned-my-security-cameras-into-an-automatic-bird-identification-s...
573•speckx•23h ago•153 comments

Terence Tao explains 6 essential mathematical concepts [video]

https://www.youtube.com/watch?v=OOMx2BHHWtE
547•matthewsinclair•1d ago•72 comments

DIY – Build a Potato Box (2022)

https://www.rebootedmom.com/build-a-potato-box/
28•akkartik•3d ago•8 comments

CollectWise (YC F24) Is Hiring

https://www.ycombinator.com/companies/collectwise/jobs/7U500pP-founding-customer-success-engineer
1•OBrien_1107•9h ago

State of Open Models: Summer 2026 Observations

https://huggingface.co/blog/state-of-open-models-summer-2026
19•gmays•1h ago•2 comments

A Genealogy of Freudenthal's Lincos

https://www.shellsandpebbles.com/2026/01/19/a-genealogy-of-freudenthals-lincos-part-i-looking-up-...
3•akkartik•16h ago•0 comments

RotaryCell: Making an unmodified rotary phone work over LTE with an ESP32-S3

https://github.com/fregacmols/RotaryCell
131•jombib•13h ago•37 comments

A walkable ASCII cyberpunk city in one HTML file [video]

https://www.youtube.com/watch?v=3YtygAx_C6A
374•keithcarolus•21h ago•55 comments

Dwarf Fortress is getting the mother of all magic updates

https://www.rockpapershotgun.com/dwarf-fortress-is-getting-the-mother-of-all-magic-updates-extend...
480•Tomte•4d ago•220 comments

Ubisoft's FOR HONOR will block SteamOS / Linux players starting September 10

https://www.gamingonlinux.com/2026/09/ubisofts-for-honor-will-block-steamos-linux-on-september-10/
64•haunter•59m ago•53 comments

Apple caught off guard by AI demand for Mac Mini and Mac Studio

https://www.macrumors.com/2026/08/30/apple-unexpected-mac-mini-and-studio-demand/
473•thm•1d ago•547 comments

Cheap GPS jammers are filling the world with navigation dead zones

https://www.wsj.com/tech/gps-jammers-dead-zones-e76f3261
200•vinnyglennon•1d ago•204 comments

Show HN: Laser Graffiti

https://laser.consti.de
239•con•3d ago•51 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.