frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Thoughts on AI

https://jackpeplinski.bearblog.dev/thoughts-on-ai/
1•jackpep•2m ago•0 comments

CO2: Language backward compatible with C, with access to the Rust ecosystem

https://github.com/hkalbasi/co2/tree/main
1•Georgelemental•6m ago•0 comments

Six months daily driving Linux

https://interestingstuff.xyz/reviews/six-months-daily-driving-linux/
1•interestingstuf•6m ago•0 comments

Show HN: Baton - Know which of your AI coding agents needs you

https://github.com/neilkpatel/baton
1•nkp007•8m ago•0 comments

Show HN: Web App Uses RTL-SDR to Align HDTV Antenna

https://tunerscope.com/
1•robotastic•11m ago•0 comments

I tried 5 free image-to-ASCII converters so you don't have to

https://image-to-ascii.com/
1•LumisYY•18m ago•0 comments

That Is Load-Bearing

https://old.reddit.com/r/ClaudeAI/comments/1tob6q5/that_is_loadbearing/
1•varun_chopra•19m ago•0 comments

Frank Lloyd Wright's First Home

https://www.architecturaldigest.com/story/frank-lloyd-wright-home-and-studio-everything-you-need-...
1•NaOH•22m ago•0 comments

The cloud begins with coal (2013)

https://www.cepi.org/the-cloud-begins-with-coal-an-overview-of-the-electricity-used-by-the-global...
1•thelastgallon•27m ago•0 comments

What most histories get wrong about MUMPS's first standard

https://github.com/rochus-keller/MUMPS/blob/main/docs/First_MUMPS_Standard_Article.md
1•Rochus•31m ago•0 comments

Self-Improving Agent Systems: A Unified View

https://yigengjiang.github.io/posts/self_improving_agent_systems/
1•ygx•32m ago•0 comments

PC Emulator PCem Makes It to WebAssembly

https://github.com/va3jfl/PCem-WebAssembly
2•JoelLagace•44m ago•0 comments

mRNA vaccine targeting tick proteins induces tick resistance in guinea pigs

https://medicine.yale.edu/news-article/yale-researchers-advance-work-in-diagnosing-and-preventing...
2•DogOfTheGaps•47m ago•0 comments

Pg_re2: 9x faster regular expressions in Postgres

1•saisrirampur•50m ago•1 comments

Australian Consumer advocate calls for mandatory domestic mobile roaming

https://www.abc.net.au/news/2026-07-13/calls-for-mandatory-domestic-mobile-roaming-intensify/1068...
4•ggm•52m ago•0 comments

The Battle of Carrhae (53B.C.E.) [video[

https://www.youtube.com/watch?v=bR7VDPUj5AE
1•JumpCrisscross•57m ago•0 comments

Is It Safe to Eat Pink Pork? Here's What You Need to Know

https://www.southernliving.com/is-it-ok-to-eat-pink-pork-11777418
1•mooreds•57m ago•0 comments

DeployKit: Agent-native deployment tooling for FDEs

https://cephos.substack.com/p/deploykit-agent-native-deployment
3•ism-cep•57m ago•0 comments

Is China's High-Quality Investment Output Economically Viable?

https://carnegieendowment.org/china-financial-markets/2026/04/is-chinas-high-quality-investment-o...
2•mooreds•57m ago•0 comments

Modernizing Property Tax Assessments in Allegheny County

https://www.prohousingpgh.org/blog/new-report-modernizing-property-tax-assessments-in-allegheny-c...
15•mooreds•58m ago•1 comments

Boinc-Like Crunching Numbers

https://primecrunch.com/
1•sudo_cowsay•59m ago•1 comments

People Can't Identify AI Poetry, but Enjoy It Less When Told It's by an AI

https://academic.oup.com/dsh/advance-article/doi/10.1093/llc/fqag067/8694305?login=false
1•willmarch•59m ago•0 comments

Medical examiner preliminary findings in Sen. Lindsey Graham's cause of death [video]

https://www.youtube.com/watch?v=u7-YKC7A_mA
2•Bender•1h ago•1 comments

Personas agents built from engagement data, scored on predictions

https://github.com/noashavit/noas-persona-loop
1•noashavit•1h ago•1 comments

Hyper-Local, Hyper-Cloud

https://www.proofofconcept.pub/p/hyper-local-hyper-cloud
2•herbertl•1h ago•0 comments

Less is more, more or less

https://jakub.kr/writing/less-is-more
1•herbertl•1h ago•0 comments

Putting a thrift store's inventory online with a $2 microcontroller

https://snapy.pro/blog/putting-a-thrift-stores-inventory-online
4•sej8•1h ago•2 comments

Show HN: Use After Effects with Claude Code, Cursor and Antigravity

https://github.com/Arman-Luthra/aftr
6•armanluthra_•1h ago•2 comments

Tinier – Image compress, convert and AI-upscale, 100% in the browser

https://tinier.app/
1•jonathanst•1h ago•0 comments

Temporarily removing the 5 hour usage limit restriction for all paid Codex plans

https://xcancel.com/thsottiaux/status/2076365965915467978#m
1•chiefstorm•1h ago•0 comments
Open in hackernews

Show HN: Open-lmake, a scalable, reliable build system with auto dep-tracking

https://github.com/cesar-douady/open-lmake
6•cd_fr91400•1y ago
Hello Hacker News,

I often hear people saying "all build-systems suck", an opinion I have been sharing for years, and this is the motivation for this project. I finally got the opportunity to make it open-source, and here it is.

In a few words, it is like make, except it can be comfortably used even in big projects using HPC (with millions of jobs, thousands of them running in parallel).

The major differences are that: - dependencies are automatically tracked (no need to call gcc -M and the like, no need to be tailored to any specific tool, it just works) by spying disk activity - it is reliable : any modification is tracked, whether it is in sources, included files, rule recipe, ... - it implements early cut-off, i.e. it tracks checksums, not dates - it is fully traceable (you can navigate in the dependency DAG, get explanations for decisions, etc.)

And it is very light weight.

Configuration (Makefile) is written in Python and rules are regexpr based (a generalization of make's pattern rules).

And many more features to make it usable even in awkward cases as is common when using, e.g., EDA tools.

Give it a try and enjoy :-)