frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cider 2.0 Is Brewing

https://metaredux.com/posts/2026/06/30/cider-2-0-is-brewing.html
1•eigenhombre•34s ago•0 comments

Self-Hosted GitHub Actions Runners on Lambda MicroVMs

https://github.com/mkdev-me/terraform-aws-github-runner-lambda-microvms/tree/main
1•fodoj•1m ago•1 comments

The Decadent Double Dealer

https://64parishes.org/decadent-double-dealer
1•jruohonen•1m ago•0 comments

Ask HN: Developers and Builders, what have you shipped this week?

1•enlightpixel•2m ago•0 comments

Google kills Tenor GIF API, forcing changes at X, Discord, and more

https://arstechnica.com/gadgets/2026/06/google-kills-tenor-gif-api-forcing-changes-at-x-discord-a...
2•scommab•2m ago•0 comments

Over 900 Oracle E-Business instances exposed to ongoing attacks

https://www.bleepingcomputer.com/news/security/over-900-oracle-e-business-instances-exposed-to-on...
3•Brajeshwar•3m ago•0 comments

Show HN: A Simple Investment Portfolio Tracker

https://zenvesto.com/
3•zenvesto•7m ago•0 comments

Ensuring fairness and safety: €3 customs duty for low-value parcels

https://commission.europa.eu/news-and-media/news/ensuring-fairness-and-safety-eur3-customs-duty-l...
2•robin_reala•7m ago•0 comments

Buyers Disappointed as eBay Pulls Gift Cards Again

https://www.ecommercebytes.com/C/blog/blog.pl?/pl/2026/6/1782874791.html
1•ilamont•8m ago•0 comments

When anything is possible, how do you decide what to create?

https://digitalseams.com/blog/making-things-interview-series
1•bobbiechen•8m ago•0 comments

Show HN: AI Score Chrome extension, measure how AI agents read your docs site

https://chromewebstore.google.com/detail/jamdesk-ai-score/mhihkkgpcbmapmojnakhjfhjmiagkhlj
2•gbourne•8m ago•0 comments

Developers React to AI-Scented Blog Posts

https://writethatblog.substack.com/p/dev-reaction-to-ai-blog-posts
1•robin_reala•10m ago•0 comments

Verd: AI trip-plan checks for visa, connection, and border risks

https://verd.nanocorp.app
2•verdlaunch•11m ago•0 comments

Building Docker images 7x Faster with Clipper

https://clipper.dev/blog/buildkit-profile
1•a_t48•11m ago•1 comments

Show HN: Sidedoor – Paste any job, find who in your network can refer you

https://happenstance.ai/sidedoor
2•welshpony•13m ago•0 comments

PlayStation will end physical disc production for new games in 2028

https://www.cnbc.com/2026/07/01/sony-playstation-physical-disc-production-2028.html
2•shinryudbz•15m ago•0 comments

Using ChatGPT is not bad for the environment

https://blog.andymasley.com/p/a-short-summary-of-my-argument-that
4•ck2•16m ago•1 comments

Show HN: HN Keyboard Boost – Minimal Keyboard Navigation for Hacker News

https://addons.mozilla.org/en-US/firefox/addon/hn-keyboard-boost/
1•jessesoo•17m ago•0 comments

Sam Altman: This is how we can make AI safe for everyone

https://www.ft.com/content/0c2e1077-f658-4b3d-9040-602615c961ca
1•bifftastic•19m ago•0 comments

Inside the Egg Price-Fixing Scandal That Spiked American Grocery Bills

https://www.wsj.com/business/retail/inside-the-egg-price-fixing-scandal-that-spiked-american-groc...
2•impish9208•20m ago•1 comments

Ella: Deterministic compute engine for ultra‑low‑latency systems

https://github.com/steforsyth5439-ai/ELLA-whitepaper
1•ste5439•22m ago•0 comments

HT-ML.app – Deploy HTML Artifacts from Claude Code and Codex

https://ht-ml.app/
1•nsmith22•22m ago•1 comments

The Repository Knows Why

https://community.ibm.com/community/user/blogs/frank-de-gilio/2026/05/28/the-repository-knows-why
1•rbanffy•23m ago•0 comments

Taming Production Database Migrations

https://www.lirbank.com/taming-production-database-migrations
5•andrelandgraf•25m ago•1 comments

Jj jj jj jj jj

https://caiustheory.com/jj-jj-jj-jj-jj/
2•birdculture•26m ago•1 comments

Florida Is Executing Prisoners at a Record Pace

https://www.propublica.org/article/florida-death-penalty-executions-ron-desantis
9•petethomas•26m ago•1 comments

Is there a "is fable up tracker" or notification hook?

1•217•26m ago•1 comments

Palantir vs. Republik [Swiss News Magazine]

https://www.republik.ch/2026/06/13/palantir-gegen-die-republik-das-urteil
1•Arodex•27m ago•1 comments

Reduce GVisor Cold Starts with GPU Snapshotting

https://cerebrium.ai/blog/reducing-gpu-cold-starts-with-memory-snapshots-restoring-cuda-workloads...
16•jono_irwin•30m ago•2 comments

Explaining relationship-based access control with a MIDI keyboard [video]

https://www.youtube.com/watch?v=nPL3W_oHSrE
2•melsmo•32m 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....