frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

South Korea Mandates Solar Panels for Public Parking Lots

https://www.reutersconnect.com/item/south-korea-mandates-solar-panels-for-public-parking-lots/dGF...
124•_____k•1h ago•66 comments

Founder of GitLab battles cancer by founding companies

https://sytse.com/cancer/
695•bob_theslob646•7h ago•163 comments

CSS is DOOMed

https://nielsleenheer.com/articles/2026/css-is-doomed-rendering-doom-in-3d-with-css/
177•msephton•4h ago•48 comments

OpenBSD on Motorola 88000 Processors

http://miod.online.fr/software/openbsd/stories/m88k1.html
36•rbanffy•1d ago•2 comments

Further human + AI + proof assistant work on Knuth's "Claude Cycles" problem

https://twitter.com/BoWang87/status/2037648937453232504
145•mean_mistreater•6h ago•104 comments

Alzheimer's disease mortality among taxi and ambulance drivers (2024)

https://www.bmj.com/content/387/bmj-2024-082194
5•bookofjoe•33m ago•0 comments

AI overly affirms users asking for personal advice

https://news.stanford.edu/stories/2026/03/ai-advice-sycophantic-models-research
521•oldfrenchfries•11h ago•402 comments

Joining databases across teams without copying data or running servers

https://datahike.io/notes/collaborate-without-infrastructure/
13•whilo•2d ago•1 comments

The first 40 months of the AI era

https://lzon.ca/posts/other/thoughts-ai-era/
108•jpmitchell•6h ago•46 comments

Meta Partners with Arm to Develop New Class of Data Center Silicon

https://about.fb.com/news/2026/03/meta-partners-with-arm-to-develop-new-class-of-data-center-sili...
35•eatonphil•4d ago•5 comments

Linux is an interpreter

https://astrid.tech/2026/03/28/0/linux-is-an-interpreter/
161•frizlab•8h ago•31 comments

I decompiled the White House's new app

https://thereallo.dev/blog/decompiling-the-white-house-app
364•amarcheschi•9h ago•128 comments

I Built an Open-World Engine for the N64 [video]

https://www.youtube.com/watch?v=lXxmIw9axWw
349•msephton•13h ago•59 comments

InpharmD (YC W21) Is Hiring – Senior Ruby on Rails Developer

https://inpharmd.com/jobs/senior-ruby-on-rails-engineer
1•tulasichintha•3h ago

OpenCiv1 – open-source rewrite of Civ1

https://github.com/rajko-horvat/OpenCiv1
87•caminanteblanco•7h ago•28 comments

Cocoa-Way – Native macOS Wayland compositor for running Linux apps seamlessly

https://github.com/J-x-Z/cocoa-way
301•OJFord•15h ago•94 comments

Stop picking my Go version for me

https://blog.howardjohn.info/posts/go-mod-version/
16•ingve•3h ago•9 comments

Sealing Paper Packaging Without Adhesives

https://www.fraunhofer.de/en/press/research-news/2026/march-2026/sealing-paper-packaging-without-...
12•gnabgib•2h ago•0 comments

Spanish legislation as a Git repo

https://github.com/EnriqueLop/legalize-es
691•enriquelop•13h ago•213 comments

Undroidwish – a single-file, batteries-included Tcl/Tk binary for many platforms

https://androwish.org/home/wiki?name=undroidwish
62•smartmic•8h ago•3 comments

Detecting file changes on macOS with kqueue

https://www.vegardstikbakke.com/kqueue/
63•benhoyt•4d ago•11 comments

Computer chip material inspired by the human brain could slash AI energy use

https://www.cam.ac.uk/research/news/new-computer-chip-material-inspired-by-the-human-brain-could-...
8•hhs•2h ago•3 comments

Cat Itecture: Better Cat Window Boxes

https://gwern.net/catitecture
4•gggscript•17h ago•0 comments

Private equity turned vulnerable elderly people into human ATMs

https://www.theguardian.com/society/2026/mar/28/the-great-care-home-cash-grab-how-private-equity-...
90•mordechai9000•3h ago•49 comments

My heuristics are wrong. What now?

https://brooker.co.za/blog/2026/03/20/ic-leadership.html
32•herbertl•4d ago•4 comments

rpg.actor Game Jam

https://rpg.actor/jam
64•Kye•9h ago•5 comments

TreeTrek – A raw Git repository viewer web app

https://repo.autonoma.ca/treetrek
5•maxloh•2h ago•2 comments

Improved Git Diffs with Delta, Fzf and a Little Shell Scripting

https://nickjanetakis.com/blog/awesome-git-diffs-with-delta-fzf-and-a-little-shell-scripting
120•nickjj•4d ago•35 comments

ICAO issued new power bank restriction on flight

https://www.icao.int/news/new-power-bank-restrictions-will-safeguard-international-aviation
58•phantomathkg•10h ago•86 comments

Hacking old hardware by renaming to .zip [video]

https://www.youtube.com/watch?v=P1kfuCkWo24
100•abadar•3d ago•77 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

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

With the stock eyeroll dismissal phrase.

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