frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SpaceX Is Retiring Crew Dragon

https://gizmodo.com/spacex-is-retiring-crew-dragon-forcing-nasa-to-bet-big-on-boeings-troubled-st...
1•calcifer•1m ago•0 comments

Human Motor Corpus Callosum

https://www.jneurosci.org/content/27/45/12132
1•bryanrasmussen•6m ago•1 comments

Mostly Oberon (2020)

https://rsdoiel.github.io/blog/2020/04/11/Mostly-Oberon.html
1•marttt•6m ago•0 comments

$32M in Google Ads Spend: Lessons Learned

https://mojodojo.io/blog/32m-google-ads-audit
2•zenincognito•8m ago•2 comments

Show HN: Local subagent orchestration for Codex/Claude

https://github.com/ringlochid/oh-my-subagents
1•ringlochid•16m ago•0 comments

Cloak Data at Every Touchpoint

https://incountry.com/
1•taubek•18m ago•0 comments

What Happens When Your RAG System Retrieves the Wrong Documents?

https://medium.com/@NikoZero11/your-rag-pipeline-doesnt-need-more-retrieval-it-needs-better-decis...
1•Savanjj•18m ago•0 comments

SwarmAuth – OAuth 2.1 for AI Agent Swarms

https://pypi.org/project/swarmauth/
1•waspdrey•20m ago•0 comments

VortexMQ – Fast message broker in pure Go with Redis protocol

1•ianshugarg•25m ago•0 comments

Haxophone – A hackable electronic saxophone with mechanical keys

https://www.crowdsupply.com/cardona-bits/haxophone
1•raffael_de•26m ago•0 comments

AI posters don't have to be horrible

https://john.hartnup.uk/2026/06/07/ai-event-posters.html
2•ereiamjh•28m ago•1 comments

Show HN: AgentMeasure – healthchecks and settlement statements for AI bills

https://github.com/roy-tong/AgentMeasure
1•tongroy•32m ago•0 comments

Stop adapting Jane Austen 5 other 18th‑century writers perfect for the screen

https://theconversation.com/stop-adapting-jane-austen-five-other-18th-century-writers-perfect-for...
3•zeristor•40m ago•0 comments

Ask HN: Losing motivation to work in the IT field, need advice

5•trowa159•41m ago•1 comments

Microsoft Patents "Ad-Credit" System to Serve In-Game Ads During Pause Windows

https://respawnfirst.com/microsoft-patents-ad-credit-system-for-pc-and-consoles-to-serve-in-game-...
2•haunter•42m ago•0 comments

Dear Customer, Fuck You

https://fuck-off.ai
4•gfody•50m ago•0 comments

Benchmarking Wild vs. Mold

https://davidlattimore.github.io/posts/2026/09/18/benchmarking-wild-vs-mold.html
1•vinhnx•56m ago•0 comments

Classifier.dev: outperforms Jev and is free

https://classifier.dev/
2•handfuloflight•57m ago•0 comments

CrypLLM: AI chat agent for CrypTool 2

https://github.com/CrypToolProject/CrypTool-2/tree/main/CrypLLM
1•modinfo•57m ago•0 comments

What Motivates Innovators?

https://bec-systems.com/blog/0356-what-motivates-innovators/
2•jyhrow•58m ago•1 comments

Chess Atlas

https://chess-timeline.vercel.app/gallery.html
2•msotomorras•1h ago•0 comments

ObjGit – object-storage backed Git

https://github.com/tigrisdata/objgit
1•dvrp•1h ago•0 comments

In conversation with Eric Ries [video]

https://www.mishcon.com/news/tv/in-conversation-with-eric-ries
2•JohnHammersley•1h ago•0 comments

Stripe Withholding Balance of $100000

3•zenkoakishaga•1h ago•6 comments

No First Use

https://nofirstuse.global/
3•Egg-Man•1h ago•0 comments

Starship – The Holy Grail of Rocketry [video]

https://www.youtube.com/watch?v=EthkNLasUa8
1•mpweiher•1h ago•1 comments

I who have never known trees.

https://www.nature.com/articles/d41586-026-02859-w
1•thinkingemote•1h ago•0 comments

I made a 3D portfolio engine

https://www.xrfolio.page/
1•CPeros•1h ago•1 comments

Write While Learning

https://purplesyringa.moe/blog/write-while-learning/
2•meetpateltech•1h ago•0 comments

Miniaturism: A Small Hobby Is Having a Big Moment

https://www.bloomberg.com/news/features/2026-09-18/tiktok-hobby-seekers-find-escapism-in-the-worl...
1•helsinkiandrew•1h ago•0 comments
Open in hackernews

A proof of concept tool to verify estimates

https://terrytao.wordpress.com/2025/05/01/a-proof-of-concept-tool-to-verify-estimates/
2•jeremyscanvic•1y ago

Comments

turtleyacht•1y ago
A defensive programming nit is not to return the desired result [1] but to show all collected cases are true.

  def defensive_true():
      # assume False
      ...
      return arr.all(True)
There are tests, but some wild refactoring in the night and "tests still pass," leading to a blind ship, could be a tiny risk.

Not a big deal, just I don't trust myself to return the happy path if the middle could change.

[1] https://github.com/teorth/estimates/blob/main/src/estimates....