frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Meta$^N$: Recursive Self-Improvement Through Emergent Depth

https://arxiv.org/abs/2608.24735
1•Anon84•2m ago•0 comments

Navier-Stokes Visualized as 1kB i386 demos

https://juandecos.github.io/TurboZip/vortex.html
2•chaostaco•4m ago•1 comments

Looking for Some Beta Testers

https://nevarroapp.com/
1•Linden207•8m ago•0 comments

DeepSeek Peak Hours

https://deepseek-peak-hours.sivaram.dev/
1•denysvitali•9m ago•0 comments

AI extinction is only one way the future is frightening

https://www.rnz.co.nz/news/world/1362349/ai-extinction-is-only-one-way-the-future-is-frightening
4•billybuckwheat•12m ago•1 comments

Memos.page

https://memos.page/
1•montyanderson•12m ago•0 comments

Unified Plan to Align Priorities and Investments for Strategic Petroleum Reserve

https://files.gao.gov/reports/GAO-26-106918/index.html
2•Bluestein•12m ago•0 comments

Show HN: Swobu – TUI-First LLM Switchboard You Can Share over E2E HTTPS

https://github.com/swobuforge/swobu
1•metrofun•14m ago•0 comments

The Last AI Built by Humans: Toward Genuine Recursive Self-Improvement

https://arxiv.org/abs/2609.11873
1•pella•20m ago•0 comments

Show HN: What Just Pinged Me?

https://whatjustpingedme.com
2•furyofantares•21m ago•0 comments

China Cleantech Exports Data Explorer

https://ember-energy.org/data/china-cleantech-exports-data-explorer/
2•Bluestein•22m ago•0 comments

Byte: A Visual Archive

https://byte.tsundoku.io/#198410-011
2•doener•24m ago•0 comments

Mees AI Journal and Chat

https://play.google.com/store/apps/details?id=chat.meesai.net&hl=en_US
3•saidevac•33m ago•0 comments

Slime moulds and the bitter debate over the nature of intelligence

https://www.theguardian.com/news/ng-interactive/2026/sep/08/this-is-dangerous-slime-moulds-and-th...
1•bookofjoe•34m ago•0 comments

Portable Cooling Mister and Bonus Stationary Pet Version

https://www.instructables.com/Portable-Cooling-Mister-Bonus-Stationary-Pet-Versi/
1•sudo_cowsay•34m ago•0 comments

Douglas Adams and the exterminated Doctor Who adventure

https://www.bbc.co.uk/news/articles/c8jdp38z4jgo
2•6LLvveMx2koXfwn•37m ago•0 comments

Show HN: I made an automated day-by-day itinerary organizer for my trip to Spain

https://petrelvoyage.com/app
3•desktopentree•39m ago•2 comments

Registration without a phone number on Signal will use zero-knowledge proofs

https://community.signalusers.org/t/registration-without-a-phone-number/2222?page=10
6•Cider9986•39m ago•0 comments

There's No Such Thing as an AI 'Lab'

https://www.theatlantic.com/technology/2026/09/stop-calling-ai-companies-labs/688528/
3•Bluestein•43m ago•0 comments

Destockd

https://www.destockd.com/#/about
2•DeepLogin•45m ago•0 comments

The Hidden Software Variable in UAS Performance

https://foxandlion.pub/analysis/the-hidden-software-variable-in-uas-performance
8•agrantic•48m ago•0 comments

A malleable IDE for typed knowledge

https://github.com/arsumbris/arsumbris
3•arscontexta•52m ago•1 comments

What are the five pros and cons of artificial intelligence?

https://www.aljazeera.com/news/2026/9/13/what-are-the-five-pros-and-cons-of-artificial-intelligence
4•jethronethro•55m ago•0 comments

The Human Use of Human Beings - Norbert Wiener (1989) [pdf]

https://monoskop.org/images/6/60/Wiener_Norbert_The_Human_Use_of_Human_Beings_1989.pdf
4•andsoitis•58m ago•0 comments

I think of time as an arrow, so I made a linear calendar

https://theawesomecalendar.com/en
1•maksonam•1h ago•3 comments

Expanding model choice in Copilot with Grok

https://techcommunity.microsoft.com/blog/microsoft-copilot-blog/expanding-model-choice-in-copilot...
3•andsoitis•1h ago•0 comments

Ask HN: Is there an emerging pattern for NEGATIVESKILLS.md files?

2•mehmetoguzderin•1h ago•2 comments

BluBeam Pro

https://blubeam.pro/
2•alexawilder•1h ago•1 comments

DuckDB 2.0 Pushes Whole Queries Through ADBC–10–11× Faster on PostgreSQL

https://query.farm/blog/one-query-one-arrow-stream-adbc-duckdb-2/
3•rustyconover•1h ago•0 comments

Why is privacy so hard?

https://cacm.acm.org/blogcacm/why-is-privacy-so-hard/
5•andsoitis•1h ago•3 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....