frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Microsoft unveils Project Zenith, to run 30B+ parameters locally

https://www.theverge.com/news/990051/microsoft-project-zenith-windows-developers
1•utiiiD•57s ago•0 comments

LangBrain

https://github.com/youssouf994/LangBrain
1•youssouf994•1m ago•0 comments

iPhone USB reverse tethering on Windows

https://github.com/0xbaksa/iphone-usb-reverse-tethering-windows
1•0xbaksa•2m ago•0 comments

Show HN: What if AI did the prompting – and humans did the thinking?

https://www.antiagent.site
1•EnthusiastShiv•2m ago•0 comments

Google AI Mode shows same products 21.6% more expensive than traditional search

https://productrise.app/blog/google-ai-mode-prefers-more-expensive-products
1•DeepLogin•2m ago•0 comments

Citemark – Check if ChatGPT/Gemini/Claude mention your business

https://getcitemark.com/checker
1•jackkap•3m ago•0 comments

Adobe Announces Anil Chakravarthy to Become President and CEO

https://news.adobe.com/
1•mak8•6m ago•0 comments

Programming Z3

https://z3prover.github.io/papers/programmingz3.html
1•Bluestein•6m ago•0 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
2•moultano•6m ago•0 comments

Estonian defense minister resigns after procurement scandal

https://www.politico.eu/article/estonian-defense-minister-resigns-after-procurement-scandal/
2•sam_lowry_•8m ago•1 comments

Kernels, Margins, and Ensembles

https://stochastic.blog/kernels-margins-and-ensembles/
1•Anon84•8m ago•0 comments

Google Slides AI is laughably bad

https://theopenpresenter.com/blog/google-slides-ai-is-laughably-bad/
1•michaelsalim•9m ago•0 comments

Getting Agents to Tell on Themselves

https://blog.thinkst.com/2026/09/getting-agents-to-tell-on-themselves.html
2•mh_•10m ago•0 comments

Fidelity 2026 Q2 Retirement analysis

https://about.fidelity.com/data-and-insights/q2-2026-retirement-analysis
1•cebert•10m ago•0 comments

Psilocybin prevents chemo-induced peripheral neuropathy

https://www.science.org/doi/10.1126/science.aec6116
2•jodacola•12m ago•0 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/index.html
3•Re-Tails•13m ago•1 comments

Physics-Informed Neural Networks – Making Your Neural Networks Even Smarter

https://abelabraham3.substack.com/p/the-rabbit-hole-2-making-your-neural
1•vismit2000•13m ago•0 comments

What Did Jurassic Forests Sound Like? Like This

https://www.nytimes.com/2026/09/03/science/what-did-jurassic-forests-sound-like-like-this.html
1•tintinnabula•15m ago•0 comments

The Code They Leave Behind: Beyond Benchmark Scores

https://bitbin.de/qualitative-benchmarks/
1•stbenjam•15m ago•0 comments

Agenci – CI/CD testing for AI agents

https://github.com/klinditafa1/agenciandhttps://x.com/tryagenci
1•KT1616•17m ago•0 comments

AI Philosophy Competition

https://www.zacharygoodsell.com/ai-philosophy-competition
1•paraschopra•17m ago•0 comments

Private equity faces existential crisis in US as unsold companies pile up

https://www.theguardian.com/us-news/2026/sep/04/private-equity-boom-hospital-job-layoff
3•bell-cot•22m ago•0 comments

Stochastic Processes – Gambler's Ruin

https://deepnull.bearblog.dev/stochastic-processes-gamblers-ruin/
1•hackboyfly•26m ago•0 comments

What Eight Agent Systems Record About What They Did

https://machinetestimony.org/census/2026-09/
2•TroyClifford•26m ago•0 comments

The sextant as backup navigation tool for astronauts

https://www.bbc.com/future/article/20260903-the-300-year-old-instrument-that-could-save-stranded-...
2•mauvehaus•28m ago•0 comments

Emergent Language: A Survey and Taxonomy

https://link.springer.com/article/10.1007/s10458-025-09691-y
1•rr0•29m ago•1 comments

Confused about which VPN is right, US senator asks the NSA for guidance

https://arstechnica.com/security/2026/09/us-senator-calls-on-the-nsa-to-give-guidance-for-use-of-...
2•bookofjoe•30m ago•0 comments

The Hottest New Trade Is Your Own Electricity [video]

https://www.youtube.com/watch?v=VK76jIsmiSw
1•thelastgallon•31m ago•0 comments

Ask HN: Is Microsoft 365 having an email outage?

2•roomey•31m ago•1 comments

Observation of quantum phase and the consistency with equivalence principle

https://www.science.org/doi/10.1126/sciadv.aec8045
1•danielmorozoff•32m 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 :-)