frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

1-Click GitHub Token Stealing via a VSCode Bug

https://blog.ammaraskar.com/github-token-stealing/
137•ammar2•13h ago•19 comments

The American Missile Crisis

https://research.contrary.com/report/the-american-missile-crisis
23•JumpCrisscross•1h ago•10 comments

Use your Nvidia GPU's VRAM as swap space on Linux

https://github.com/c0dejedi/nbd-vram
196•tanelpoder•5h ago•56 comments

MAI-Code-1-Flash

https://microsoft.ai/news/introducingmai-code-1-flash/
424•EvanZhouDev•9h ago•182 comments

HHS is overriding peer review to require changes to research scope, design

https://www.science.org/content/article/exclusive-hhs-now-weighing-science-nih-grants
26•SubiculumCode•1h ago•12 comments

CT scans of BYD car parts

https://www.lumafield.com/scan-of-the-month/byd
284•viasfo•8h ago•120 comments

Agentic Mfw

https://agenticmotherfucking.website
76•elmerland•2h ago•22 comments

Roku LT Operating System open source distribution

https://blog.roku.com/developer/roku-lt-os
46•dpmdpm•3h ago•11 comments

The Unreasonable Redundancy of Nature's Protein Folds

https://research.ligo.bio/posts/unreasonable-redundancy-of-natural-protein-folds/
9•ray__•58m ago•0 comments

Capstone – multi-platform, multi-architecture disassembly framework

https://www.capstone-engine.org/
21•gregsadetsky•2h ago•0 comments

Gmail thinks I'm stupid, so I left

https://moddedbear.com/gmail-thinks-im-stupid-so-i-left
727•speckx•9h ago•432 comments

My thoughts after using Clojure for about a month

https://www.acdw.net/clojure/
155•speckx•8h ago•85 comments

Pluto.jl 1.0 release – reactive notebook for Julia

https://discourse.julialang.org/t/pluto-1-0-release/137296
58•fons-p•5h ago•4 comments

Words of Type

https://wiki.wordsoftype.com/
10•tobr•2d ago•2 comments

AI outperforms law professors in Stanford Law study

https://law.stanford.edu/press/ai-outperforms-law-professors-in-stanford-law-study/
139•berlianta•5h ago•129 comments

A walking tour of surveillance infrastructure in Seattle (2020)

https://coveillance.org/a-walking-tour-of-surveillance-infrastructure-in-seattle/
388•eustoria•15h ago•264 comments

Open Repair Data Standard – Open Repair Alliance

https://openrepair.org/open-data/open-standard/
108•cassepipe•9h ago•3 comments

4K years ago, Mohenjo-daro grew more equal over time

https://archaeologymag.com/2026/05/mohenjo-daro-grew-more-equal-over-time/
63•marojejian•6h ago•35 comments

America's Data Center Build-Out Is Falling Way Behind Schedule

https://www.wsj.com/tech/ai/americas-data-center-build-out-is-falling-way-behind-schedule-e408a9a8
15•1vuio0pswjnm7•53m ago•3 comments

HP re-releases classic computer science calculator: The HP-16C

https://hpcalcs.com/product/hp-16c-collectors-edition/
141•dm319•9h ago•88 comments

NLAB: The worlds smallest electronics lab

https://getnlab.com/
7•doctoboggan•2h ago•3 comments

Can A.I. produce writing that we want to read?

https://www.newyorker.com/news/fault-lines/can-ai-produce-writing-that-we-actually-want-to-read
11•fortran77•2h ago•39 comments

How we index images for RAG

https://www.kapa.ai/blog/how-we-index-images-for-rag
103•mooreds•12h ago•14 comments

Multicore suppport for DOS is real – partly

https://www.vogons.org/viewtopic.php?t=111336
74•beebix•2d ago•12 comments

OpenFOV – Webcam head tracking for iRacing

https://www.openfov.com/
101•mwit2023•3d ago•51 comments

Loading Sega Games Off a Vinyl Record [video]

https://www.youtube.com/watch?v=c744iD0_fWU
23•zdw•2d ago•4 comments

Trump signs downsized AI order after weeks of reversals

https://www.politico.com/news/2026/06/02/trump-signs-downsized-ai-order-00946389
191•_alternator_•12h ago•137 comments

Preparing for KDE Plasma's Last X11-Supported Release

https://blog.davidedmundson.co.uk/blog/596/
164•jandeboevrie•14h ago•192 comments

Expanding Project Glasswing

https://www.anthropic.com/news/expanding-project-glasswing
164•surprisetalk•15h ago•220 comments

Fidonet: Technology, Use, Tools, and History (1993)

https://www.fidonet.org/inet92_Randy_Bush.txt
154•BruceEel•14h ago•64 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.