frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ICC ditches Microsoft 365 for openDesk

https://www.binnenlandsbestuur.nl/digitaal/internationaal-strafhof-neemt-afscheid-van-microsoft-365
260•vincvinc•1h ago•64 comments

OpenDesk – a flexible all-in-one office suite for the public sector

https://www.opendesk.eu/de
55•gjvc•50m ago•14 comments

Kimi K2 Thinking, a SOTA open-source trillion-parameter reasoning model

https://moonshotai.github.io/Kimi-K2/thinking.html
265•nekofneko•3h ago•83 comments

Swift on FreeBSD Preview

https://forums.swift.org/t/swift-on-freebsd-preview/83064
64•glhaynes•1h ago•28 comments

Open Source Implementation of Apple's Private Compute Cloud

https://github.com/openpcc/openpcc
281•adam_gyroscope•1d ago•52 comments

FBI tries to unmask owner of archive.is

https://www.heise.de/en/news/Archive-today-FBI-Demands-Data-from-Provider-Tucows-11066346.html
341•Projectiboga•2h ago•172 comments

I analyzed the lineups at the most popular nightclubs

https://dev.karltryggvason.com/how-i-analyzed-the-lineups-at-the-worlds-most-popular-nightclubs/
107•kalli•5h ago•56 comments

The Parallel Search API

https://parallel.ai/blog/introducing-parallel-search
21•lukaslevert•1h ago•8 comments

Eating stinging nettles

https://rachel.blog/2018/04/29/eating-stinging-nettles/
115•rzk•6h ago•114 comments

Senior BizOps at Artie (San Francisco)

https://www.ycombinator.com/companies/artie/jobs/gqANVBc-senior-business-operations
1•tang8330•1h ago

Benchmarking the Most Reliable Document Parsing API

https://www.tensorlake.ai/blog/benchmarks
5•calavera•41m ago•0 comments

Ratatui – App Showcase

https://ratatui.rs/showcase/apps/
647•AbuAssar•16h ago•187 comments

Show HN: TabPFN-2.5 – SOTA foundation model for tabular data

https://priorlabs.ai/technical-reports/tabpfn-2-5-model-report
14•onasta•27m ago•0 comments

Springs and Bounces in Native CSS

https://www.joshwcomeau.com/animation/linear-timing-function/
25•Bogdanp•1w ago•2 comments

Australia has so much solar that it's offering everyone free electricity

https://electrek.co/2025/11/04/australia-has-so-much-solar-that-its-offering-everyone-free-electr...
178•ohjeez•3h ago•128 comments

Mathematical exploration and discovery at scale

https://terrytao.wordpress.com/2025/11/05/mathematical-exploration-and-discovery-at-scale/
185•nabla9•9h ago•74 comments

Show HN: See chords as flags – Visual harmony of top composers on musescore

https://rawl.rocks/
82•vitaly-pavlenko•23h ago•16 comments

Cloudflare Tells U.S. Govt That Foreign Site Blocking Efforts Are Trade Barriers

https://torrentfreak.com/cloudflare-tells-u-s-govt-that-foreign-site-blocking-efforts-are-digital...
231•iamnothere•5h ago•133 comments

Phantom in the Light: The story of early spectroscopy

https://chrisdempewolf.com/posts/phantom-in-the-light/
5•dempedempe•1w ago•0 comments

How often does Python allocate?

https://zackoverflow.dev/writing/how-often-does-python-allocate/
52•ingve•4d ago•37 comments

Pico-100BASE-TX: Bit-Banged 100 MBit/s Ethernet and UDP Framer for RP2040/RP2350

https://github.com/steve-m/Pico-100BASE-TX
60•_Microft•6d ago•7 comments

Show HN: qqqa – A fast, stateless LLM-powered assistant for your shell

https://github.com/matisojka/qqqa
78•iagooar•7h ago•72 comments

I may have found a way to spot U.S. at-sea strikes before they're announced

https://old.reddit.com/r/OSINT/comments/1opjjyv/i_may_have_found_a_way_to_spot_us_atsea_strikes/
185•hentrep•14h ago•212 comments

How I am deeply integrating Emacs

https://joshblais.com/blog/how-i-am-deeply-integrating-emacs/
178•signa11•11h ago•116 comments

Supply chain attacks are exploiting our assumptions

https://blog.trailofbits.com/2025/09/24/supply-chain-attacks-are-exploiting-our-assumptions/
15•crescit_eundo•3h ago•3 comments

End of Japanese community

https://support.mozilla.org/en-US/forums/contributors/717446
852•phantomathkg•16h ago•657 comments

AI Slop vs. OSS Security

https://devansh.bearblog.dev/ai-slop/
161•mooreds•6h ago•95 comments

Solarpunk is happening in Africa

https://climatedrift.substack.com/p/why-solarpunk-is-already-happening
1091•JoiDegn•22h ago•528 comments

Musik magazine archives (1995-2003)

https://www.muzikmagazine.co.uk
25•petecooper•1w ago•8 comments

The Basic Laws of Human Stupidity (1987) [pdf]

https://gandalf.fee.urv.cat/professors/AntonioQuesada/Curs1920/Cipolla_laws.pdf
163•bookofjoe•19h ago•72 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

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

With the stock eyeroll dismissal phrase.

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