frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Fran Sans – font inspired by San Francisco light rail displays

https://emilysneddon.com/fran-sans-essay
279•ChrisArchitect•3h ago•37 comments

Native Secure Enclave backed SSH keys on macOS

https://gist.github.com/arianvp/5f59f1783e3eaf1a2d4cd8e952bb4acf
231•arianvanp•4h ago•84 comments

780k Windows Users Downloaded Linux Distro Zorin OS in the Last 5 Weeks

https://blog.zorin.com/2025/11/18/test-the-upgrade-from-zorin-os-17-to-18-and-celebrating-1-milli...
64•m463•2h ago•49 comments

Calculus for Mathematicians, Computer Scientists, and Physicists [pdf]

https://mathcs.holycross.edu/~ahwang/print/calc.pdf
165•o4c•5h ago•33 comments

Show HN: Gitlogue – A terminal tool that replays your Git commits with animation

https://github.com/unhappychoice/gitlogue
31•unhappychoice•5d ago•2 comments

Shaders: How to draw high fidelity graphics with just x and y coordinates

https://www.makingsoftware.com/chapters/shaders
290•Garbage•9h ago•67 comments

Racket v9.0

https://blog.racket-lang.org/2025/11/racket-v9-0.html
226•Fice•8h ago•73 comments

Mount Proton Drive on Linux using rclone and systemd

https://github.com/dadtronics/protondrive-linux
74•cf100clunk•5h ago•29 comments

"Good engineering management" is a fad

https://lethain.com/good-eng-mgmt-is-a-fad/
92•jkbyc•1h ago•28 comments

Editing Code in Emacs

https://redpenguin101.github.io/html/posts/2025_11_23_emacs_for_code_editing.html
95•redpenguin101•7h ago•22 comments

A time-travelling door bug in Half Life 2

https://mastodon.gamedev.place/@TomF/115589875974658415
241•AshleysBrain•1d ago•20 comments

After my dad died, we found the love letters

https://www.jenn.site/after-my-dad-died-we-found-the-love-letters/
698•eatitraw•13h ago•335 comments

A monopoly ISP refuses to fix upstream infrastructure

https://sacbear.com/xfinity-wont-fix-internet/
560•vedmed•21h ago•281 comments

Court filings allege Meta downplayed risks to children and misled the public

https://time.com/7336204/meta-lawsuit-files-child-safety/
271•binning•6h ago•120 comments

HumanLayer (YC F24) Is Hiring Founding Engineers

https://www.ycombinator.com/companies/humanlayer/jobs/oBCZzc7-founding-product-engineer
1•dhorthy•4h ago

Spectral rendering, part 2: Real-time rendering

https://momentsingraphics.de/SpectralRendering2Rendering.html
45•todsacerdoti•1w ago•13 comments

Pyrotechnic Display Design Software

https://github.com/giuseppe-coco/FireShow
27•Giuseppe_Coco•6d ago•10 comments

Terence Tao: At the Erdos problem website, AI assistance now becoming routine

https://mathstodon.xyz/@tao/115591487350860999
119•dwohnitmok•1d ago•11 comments

MCP Apps: Extending servers with interactive user interfaces

http://blog.modelcontextprotocol.io/posts/2025-11-21-mcp-apps/
143•mercury24aug•18h ago•101 comments

I Learned the Pythagorean Theorem

https://danq.me/2025/11/13/pythagorean-theorem/
3•speckx•1w ago•0 comments

Garibaldi, history's sexiest revolutionary?

https://www.historyextra.com/period/victorian/historys-sexiest-revolutionary-meet-the-mesmerising...
72•thomassmith65•1w ago•53 comments

Unusual circuits in the Intel 386's standard cell logic

https://www.righto.com/2025/11/unusual-386-standard-cell-circuits.html
201•Stratoscope•18h ago•49 comments

Apple to focus on 'quality and underlying performance' with iOS 27 next year

https://9to5mac.com/2025/11/23/apple-focusing-on-software-quality-improvements-ios-27-next-year-r...
59•jb1991•3h ago•33 comments

Forever Object: The Staple-Less Oceanus Brass Stapler

https://www.core77.com/posts/139027/Forever-Object-The-Staple-less-Oceanus-Brass-Stapler
5•surprisetalk•4d ago•3 comments

Almost all Collatz orbits attain almost bounded values

https://mathvideos.org/2023/terence-tao-almost-all-collatz-orbits-attain-almost-bounded-values/
88•measurablefunc•6d ago•29 comments

SVG.js v3.2

https://svgjs.dev/docs/3.2/
66•eustoria•4h ago•12 comments

GCC SC approves inclusion of Algol 68 Front End

https://gcc.gnu.org/pipermail/gcc/2025-November/247020.html
214•edelsohn•19h ago•89 comments

The Inference Economy: Why demand matters more than supply

https://frontierai.substack.com/p/the-inference-economy-part-ii
13•cgwu•1w ago•3 comments

Sit – Create StuffIt archives on Unix systems

https://github.com/thecloudexpanse/sit
52•classichasclass•6d ago•6 comments

Typechecking is undecideable when 'type' is a type (1989) [pdf]

https://dspace.mit.edu/bitstream/handle/1721.1/149366/MIT-LCS-TR-458.pdf
41•birdculture•5d ago•21 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