frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ExoModel – the object calls the LLM; you just describe what you want

https://github.com/exomodel-ai/exomodel
1•pessoaleo•1m ago•0 comments

The Robot That Rolls Until It Has to Climb – Mobility and Field Robotics

https://atomsfrontier.substack.com/p/the-robot-that-rolls-until-it-has
1•jpatel3•1m ago•0 comments

Record Type Inference for Dummies

http://haskellforall.com/2026/06/record-type-inference-for-dummies
1•g0xA52A2A•1m ago•0 comments

Emerging technologies of 2026 according to WEF

https://www.weforum.org/publications/top-10-emerging-technologies-of-2026/digest/
1•giuliomagnifico•2m ago•0 comments

Lamini: Build mini-agents with 90%+ accuracy

https://docs.lamini.ai/
1•doener•3m ago•0 comments

Show HN: Parlel – 250+ SaaS and DB emulators on local Docker

https://github.com/dksingh1997/parlel
1•Dheerajiitr•4m ago•0 comments

String

https://fivetakes.news/data-center-buildout-and-public-sentiment-ai-backlash-in-infrastructure
1•mmeirovich•5m ago•0 comments

In Defense of the Marginal Baby

https://caseyhandmer.wordpress.com/2026/06/22/in-defense-of-the-marginal-baby/
1•surprisetalk•6m ago•0 comments

Show HN: Khala – let your AI sessions talk to each other, across any LLM

https://khala.to/
1•lanakim9410•6m ago•0 comments

Deploy from Claude Design to Vercel

https://vercel.com/changelog/claude-design-and-vercel
1•osener•6m ago•0 comments

Explodex – mod the official Codex app

https://github.com/dan-dr/explodex
1•danr4•7m ago•0 comments

The State of AI Font Generation

https://simoncozens.github.io/state-of-ai-font-generation/
1•gsky•7m ago•0 comments

Show HN: One global text input, shared by everyone

https://onlyoneinput.com/
1•askrzypczak•7m ago•0 comments

AST-Grep Outline

https://ast-grep.github.io/blog/ast-grep-outline.html
1•becojo•7m ago•0 comments

Health board apologizes for phishing staff with with bogus vacation day

https://www.theregister.com/security/2026/06/22/canadian-health-board-sorry-after-tasteless-phish...
1•Bender•8m ago•0 comments

China Takes Supercomputer Crown from U.S. for First Time Since 2017

https://www.nytimes.com/2026/06/23/technology/china-supercomputer-crown-us.html
1•0in•8m ago•0 comments

Show HN: Anonymous Confessions over SSH

https://github.com/pwnwriter/eipi.boo
1•pwn0x01•8m ago•0 comments

The AI race might be entering a highly volatile phase

https://nasengetu.com/article/the-ai-race-is-getting-wilder
1•StizzurpXDD•8m ago•1 comments

GM installs robots at flagship EV factory after laying off 1,300 workers

https://arstechnica.com/ai/2026/06/gm-installs-robots-at-flagship-ev-factory-after-laying-off-130...
1•Bender•8m ago•0 comments

Lossless GIF recompression via exhaustive search

https://blog.arusekk.pl/posts/lossless-gif-recompression/
1•ZacnyLos•10m ago•0 comments

The Complete Kubrick

https://www.criterion.com/boxsets/9000-the-complete-kubrick
1•sohkamyung•10m ago•0 comments

Why I Use Uruky, a Private Search Engine

https://theprivacydad.com/why-i-use-uruky-a-private-search-engine/
1•BrunoBernardino•10m ago•0 comments

Encoding Knowledge with Automation Scripts

https://iterativetangents.com/encoding-knowledge-with-automation-scripts/
1•gsky•10m ago•0 comments

KV Cache Store – Reduce prefill KV costs 99.99%

https://kvcachestore.com/
1•vibeagency•13m ago•1 comments

Trump Suggests GM, Ford to Shift to Missile Production

https://www.cnn.com/2026/06/17/politics/trump-weapons-iran-defense-production-act
1•Rooster61•13m ago•0 comments

Show HN: Styler – CSS-in-JS rebuilt around React 19 streaming SSR (5KB, 0 deps)

https://github.com/vitus-labs/ui-system/tree/main/packages/styler
1•vitbokisch•13m ago•0 comments

Show HN: I built an online patch backup tool for vintage 80s synths

https://knob.monster/
2•halfradaition•13m ago•0 comments

DiffusionGemma: 1k tok/s on an H100, 43 tok/s on a Mac

https://astgl.com/p/diffusiongemma-vs-gemma-apple-silicon
1•Jmeg8r•13m ago•0 comments

Vite 8.1 is out with an experimental full bundle mode

https://vite.dev/blog/announcing-vite8-1
1•TheAlexLichter•14m ago•0 comments

The Value of Getting Closer to the Work

https://cate.blog/2026/06/23/the-value-of-getting-closer-to-the-work/
1•ingve•14m 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....