frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How Russia Continues to Reinvent the One-Way Attack Drone

https://www.csis.org/analysis/shahed-geran-how-russia-continues-reinvent-one-way-attack-drone
1•allenleee•54s ago•0 comments

Ask HN: Remove Filler LLM Comments

1•HNIsUnusable•2m ago•0 comments

NATO allies thwart Russian undersea cable sabotage operation

https://www.euronews.com/my-europe/2026/09/10/nato-allies-successfully-thwart-russian-undersea-ca...
1•delichon•3m ago•0 comments

Autonomous Tesla Cybercabs Hit the Streets of New York City

https://gothamist.com/news/autonomous-tesla-cybercabs-hit-the-streets-of-new-york-city
2•geox•5m ago•0 comments

Timeline: The September 11 terrorist attacks

https://millercenter.org/remembering-september-11/september-11-terrorist-attacks
1•GaryBluto•8m ago•0 comments

Terrorism designation has global consequences for open internet

https://www.article19.org/resources/usa-terrorism-designation-has-global-consequences-for-open-in...
1•robtherobber•9m ago•0 comments

GTFS is a community-driven open standard for rider-facing transit information

https://gtfs.org/
1•Bluestein•12m ago•0 comments

Following complaints, Dyson is withdrawing its $500 toothbrush from sale

https://www.numerama.com/tech/2330911-apres-de-nombreux-signalements-dyson-retirerait-deja-de-la-...
2•matthieu_bl•13m ago•0 comments

How to Write an Effective Software Design Document

https://refactoringenglish.com/excerpts/write-an-effective-design-doc/
1•birdculture•14m ago•0 comments

NPM extends recovery-code security holds to all accounts

https://github.blog/changelog/2026-09-09-npm-extends-recovery-code-security-holds-to-all-accounts/
1•soheilpro•15m ago•0 comments

Show HN: What happened to 14,229 launches from Show HN, YC and Product Hunt

https://www.buildorskip.com
1•skr007•16m ago•0 comments

2nd mathematician is accusing OpenAI of being dishonest about training data

https://qz.com/openai-mathematician-training-data-dishonesty-andreas-thom-091026
2•jacquesm•16m ago•0 comments

2001: The Tale of an American Peter Rabbit (2026)

https://medium.com/@solidi/2001-the-tale-of-an-american-peter-rabbit-3e9927c91b2a
1•biscuits1•16m ago•0 comments

A preview of the future Intel Architecture documentation

https://intel.github.io/SDM/announcement/2026/08/20/announce-preview.html
1•AndrewDucker•18m ago•0 comments

The dawn of formalized mathematics [video]

https://www.youtube.com/watch?v=zp6WleEjHUg
1•Thom2503•18m ago•0 comments

Show HN: Browse PC Parts on Amazon.com without distractions

https://findpcpart.com/products?category_key=cpu
1•findpcpart•19m ago•0 comments

AI boom helps drive surprise UK growth in July

https://www.bbc.co.uk/news/articles/cq5xjlvn71lo
1•gste•20m ago•0 comments

(Re)Building an AI-Ready Data Universe at BlaBlaCar

https://medium.com/blablacar/building-an-ai-ready-data-universe-at-blablacar-cb15fbc42020
1•matthieu_bl•24m ago•0 comments

Serving LLMs on Tenstorrent Hardware: Inside the vLLM TT Plugin

https://vllm.ai/blog/2026-09-07-vllm-tt-plugin
1•ankitg12•24m ago•0 comments

Bad benchmarks and evals: Senior SWE-Bench, napkin math, and winter tires

https://danluu.com/exercise-7/
1•luu•28m ago•0 comments

The Death of Shame Is Tearing Us Apart

https://www.newyorker.com/news/fault-lines/the-death-of-shame-is-tearing-us-apart
2•Michelangelo11•29m ago•0 comments

EXXOGEN: First-principles quantum molecular recognition (now on Crunchbase)

https://www.google.com/url?q=https%3A%2F%2Fwww.crunchbase.com%2Forganization%2Fexxogen&sa=D&sntz=...
1•kisnorbert•30m ago•1 comments

Large language models pass three-party Turing test, outscoring actual humans

https://www.pnas.org/doi/10.1073/pnas.2524472123
2•maxloh•36m ago•0 comments

Ask HN: How realistic is a modern-day era NLU

1•ramon156•38m ago•0 comments

Open Letter about the Mathathon

https://docs.google.com/document/d/1IL0b2oG2KvvSnxn_DuXsNxuHaCefDJ9hNY1k9BP3kKQ/view?pli=1&tab=t.0
2•YeGoblynQueenne•39m ago•0 comments

Ghostarchive is a free-to-use archiving website

https://ghostarchive.org/about.html
1•Bluestein•44m ago•0 comments

Build your own custom benchmark

https://artificialanalysis.ai/optima
1•prathje•45m ago•1 comments

De-Anglicizing Programming

https://program.toile-libre.org/DP/index.htm
2•dmabboux•47m ago•5 comments

The centre tracking South Korea's stalkers in real time

https://www.theguardian.com/world/ng-interactive/2026/sep/11/app-tracks-south-korea-stalkers-in-r...
3•nzlend•51m ago•1 comments

Nvidia Nemotron VoiceChat on Apple Silicon: Full-Duplex Speech with Tools

https://blog.ivan.digital/nvidia-nemotron-voicechat-on-apple-silicon-full-duplex-speech-with-tool...
2•aufklarer•52m 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 :-)