frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SQLite-utils 4.0, now with database schema migrations

https://simonwillison.net/2026/Jul/7/sqlite-utils-4/
1•pretext•55s ago•0 comments

Adiabatic Circuit

https://en.wikipedia.org/wiki/Adiabatic_circuit
1•tristenharr•5m ago•0 comments

Zero Copy

https://en.wikipedia.org/wiki/Zero-copy
1•tristenharr•6m ago•0 comments

Interview: Drew DeVault on an AI-free version of Vim

https://jasonpolak.substack.com/p/interview-drew-devault-on-an-ai-free
1•vouaobrasil•7m ago•0 comments

Files SDK

https://files-sdk.dev
1•handfuloflight•8m ago•0 comments

Windows Privilege Abuse

https://www.semperis.com/blog/windows-privilege-abuse-can-lead-to-active-directory-compromise/
1•ishqdehlvi•9m ago•0 comments

Show HN: Orchestrator – a single-binary workflow orchestration tool

https://github.com/webstonehq/orchestrator
1•mikenikles•10m ago•1 comments

Three month suspension for a Core Developer

https://discuss.python.org/t/three-month-suspension-for-a-core-developer/60250
1•prakashqwerty•10m ago•0 comments

Lineageos Updates

https://lineageos.org/Infrastructure-Apps-Updates/
1•notorandit•12m ago•1 comments

Syntropy: A Web Framework for Ruby

https://github.com/digital-fabric/syntropy/
3•thunderbong•15m ago•0 comments

ZML releases free product to speed inference across AI chips

https://techcrunch.com/2026/07/08/hot-french-startup-zml-releases-free-product-to-speed-inference...
2•bogdiyan•17m ago•0 comments

Reform UK leader 'in real trouble' against Count Binface

https://www.mirror.co.uk/news/uk-news/nigel-farage-resigns-clacton-live-37401478
2•jjgreen•19m ago•1 comments

NUMA Aware Zone Placement — How Edera Decides

https://edera.dev/stories/numa-part-2-numa-aware-zone-placement----how-edera-decides
2•virtio_vixen•19m ago•0 comments

ULA's last six Atlas Vs can't launch anything besides Boeing's Starliner

https://arstechnica.com/space/2026/07/after-a-stellar-career-ulas-atlas-v-rocket-last-act-is-wait...
2•rbanffy•24m ago•1 comments

The Agent-Era Career

https://addyosmani.com/blog/career-advice-age-of-agents/
3•saikatsg•24m ago•0 comments

Anthropic's "J-lens" reveals workspace in Claude mirrors theory of consciousness

https://venturebeat.com/technology/anthropics-new-j-lens-reveals-a-silent-workspace-inside-claude...
1•aard•25m ago•1 comments

Klokrs – silent browser time tracking, no timers, no logging

http://Website:klokrs.comChromeExtension:https://chromewebstore.google.com/detail/blmfhmebeklbeko...
2•AbdulMoiz01•27m ago•1 comments

Ask HN: Anyone Needs a Developer?

2•need_a_work23•27m ago•1 comments

Testing Java Memory Management with Chronicle-Fix Using AI

http://blog.vanillajava.blog/2026/06/testing-java-memory-management-with.html
1•peter_lawrey•28m ago•1 comments

Tune Code Before Your Garbage Collector

http://blog.vanillajava.blog/2026/06/why-you-should-tun-code-before-your.html
1•peter_lawrey•30m ago•1 comments

Poison Book Project

https://sites.udel.edu/poisonbookproject/
1•robin_reala•34m ago•0 comments

Palantir: Profits, Procurement and Power [video]

https://www.youtube.com/watch?v=kJ5XRl7PWxM
1•mgh2•34m ago•0 comments

I built an MCP server and had to design UX with no screen

https://sharemypage.app/blog/how-i-built-the-sharemypage-mcp-and-measured-its-ux
2•HenningWitzel•37m ago•0 comments

Signed Integers by Default

https://www.gingerbill.org/article/2026/05/03/signed-by-default/
2•birdculture•38m ago•1 comments

Darwin Among the Weights: AI as a speciation event

https://benletchford.com/writing/darwin-among-the-weights/
1•notevenmostly•39m ago•0 comments

15-year-old arrested for unsubscribing over 40k anime accounts

https://mainichi.jp/english/articles/20260706/p2g/00m/0na/012000c
2•jonnybgood•39m ago•0 comments

Vespucci: OpenStreetMap Editor for Android

https://vespucci.io/
1•jdboyd•40m ago•0 comments

The teenage millionaire hacker from Tower Hamlets who took down TfL

https://www.londoncentric.media/p/thalha-jubair-scattered-spider-hack-transport-for-london
2•edent•40m ago•0 comments

Which AI coding tools to use

https://bryanhogan.com/blog/ai-coding-tools
2•bryanhogan•42m ago•0 comments

NASA's exoplanet mission accidentally discovers a planet

https://www.scientificamerican.com/article/nasas-exoplanet-mission-accidentally-discovers-a-world...
3•brthrjon•43m 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....