frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Token Entanglement in Subliminal Learning

https://owls.baulab.info/
1•derbOac•1m ago•0 comments

Why it's almost impossible to produce a smartphone in the United States

https://www.neowin.net/opinions/why-its-almost-impossible-to-produce-a-smartphone-in-the-united-s...
1•bundie•9m ago•0 comments

Signed satellite images for AI agents

1•avijeetsingh16•9m ago•0 comments

Zero Interest Rate Tech Debt

https://twitter.com/staysaasy/status/2071312293326172647
2•thisismytest•19m ago•0 comments

Google: An 8-minute step-by-step guide to building the smallest Agent loop

https://twitter.com/Easycompany333/status/2071204465168769451
4•aurenvale•22m ago•2 comments

Show HN: SaaS landing page template (React/Vue/HTML, Tailwind), free and MIT

https://github.com/hannah-wright/saas-landing-page-template
1•hannahwright•23m ago•0 comments

Tell Congress: Don't Force Age Checks Online

https://act.eff.org/action/tell-congress-don-t-force-age-checks-online
2•rmason•24m ago•0 comments

HackerRank open sourced its ATS. My resume scored 90/100. Oh wait 74. No – 88

https://danunparsed.com/p/hackerrank-open-source-ats
2•sambellll•32m ago•0 comments

AI and Liability

https://www.schneier.com/blog/archives/2026/06/ai-and-liability.html
2•lwhsiao•44m ago•1 comments

AI-assisted binary patching to fix an abandoned router's DHCP bug

https://gurulabs.com/blogs/edgeos-dhcrelay-binary-patch/
2•4onthefloor124•51m ago•0 comments

Are Lobsters Immortal?

https://www.nhm.ac.uk/discover/are-lobsters-immortal.html
2•thunderbong•51m ago•0 comments

AI boom risks global financial crash, warn central bankers

https://www.telegraph.co.uk/business/2026/06/28/ai-boom-risks-global-financial-crash-central-bank...
18•b-man•52m ago•5 comments

Sophon PFG-1: a monolithic-3D AI ASIC with 330 GB of on-die DRAM and no HBM

https://www.phantafield.com/whitepaper
21•minkowsky•53m ago•14 comments

Guy beats one of the best published quantum circuits for breaking ECDSA with AI

https://twitter.com/bbuddha_xyz/status/2061606383435620527
1•binyu•54m ago•1 comments

Slavoj ŽIžek: Should We Grasp AI Not Only as Substance but Also as Subject?

https://www.youtube.com/watch?v=PNU3YILDyYc
2•AndrewKemendo•55m ago•0 comments

Show HN: XSDR – Real-time event monitoring infrastructure for agents

https://xsdr.app
1•wcrann3•59m ago•0 comments

Why are there more top grades at university? ChatGPT is to blame

https://english.elpais.com/technology/2026-05-21/why-are-there-more-top-grades-at-university-chat...
2•xiaoyu2006•59m ago•0 comments

More fun with high-speed rail in the UK

https://www.theguardian.com/uk-news/2026/jun/29/pause-hs2-reset-until-you-are-confident-it-can-be...
1•zabzonk•1h ago•0 comments

Sway typeahead command palette for the memory constrained

https://www.nilcoast.com/blog/sway-command-palette
1•be_erik•1h ago•0 comments

LLM Optimization

https://www.youtube.com/watch?v=9tvJ_GYJA-o
1•kidbomb•1h ago•0 comments

You might not need a service worker

https://www.jayfreestone.com/writing/you-might-not-need-a-service-worker/
2•Fudgel•1h ago•0 comments

Micron Suggests Apple Helped Cause Memory Price Crisis

https://www.macrumors.com/2026/06/26/micron-suggests-apple-helped-cause-memory-crisis/
11•mgh2•1h ago•1 comments

Reacting to Two French Entrepreneurs Who Built a $100K SaaS

https://thenewassociationwebmasters.blogspot.com/2026/06/from-20000-to-100000month-raw.html
2•odilelof•1h ago•0 comments

China cracks down on rule-bending offshore investments

https://www.economist.com/finance-and-economics/2026/06/28/china-cracks-down-on-rule-bending-offs...
5•andsoitis•1h ago•2 comments

The Truth about Space Data Centers [video]

https://www.youtube.com/watch?v=_qpdUNMt2yg
4•tambourine_man•1h ago•0 comments

Why can't India's government build a decent website?

https://www.economist.com/asia/2026/06/28/why-cant-indias-government-build-a-decent-website
14•andsoitis•1h ago•12 comments

A faster bump allocator for rust

https://owen.cafe/posts/stumpalo/
4•birdculture•1h ago•0 comments

AI 'exuberance' risks ending in lengthy investment bust

https://www.ft.com/content/e81ce414-e4bd-4e8c-bac7-94f7bf17def4
5•petethomas•1h ago•1 comments

Show HN: Image2JXL – a native macOS JPEG XL converter

https://old.reddit.com/r/givebest/comments/1ueh3v4/i_built_image2jxl_a_native_macos_app_for_local/
3•givebest•2h ago•0 comments

Self-learning skill for Claude: let the agent capture its own hard-won patterns

https://github.com/Kulaxyz/self-learning-skills
3•kulaxyz•2h 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....