frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How the Shell Works [video]

https://www.youtube.com/watch?v=hV3_XZXeDQo
1•vismit2000•55s ago•0 comments

I wrote a VM for Mac to run Windows and Linux, both on iOS

https://github.com/theghostshinobi/SMOKE
2•ghostshinobi•12m ago•0 comments

From Pig to Patient: A First-in-Human Kidney Xenotransplant Bridge

https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(26)01295-X/abstract
1•signa11•13m ago•0 comments

Sugar Reset ReviEwS (2026): We Tried It My Honest Review

https://finance.yahoo.com/healthcare/articles/sugar-reset-drops-introduces-sugarreset-150000696.html
1•gayzsahy•15m ago•0 comments

Bun v1.4.2

https://bun.com/blog/bun-v1.4.2
1•ErenayDev•16m ago•0 comments

Show HN: ForgeGuardian – Open-source software supply-chain security scanner

https://github.com/Mah3Sec/ForgeGuardian
1•mahi1337•17m ago•0 comments

'coarse – AI peer review, of course (MIT license)

https://coarse.ink/
1•idw•18m ago•1 comments

OpenROAD: Open-source toolchain for Chip Design

https://openroad.org
1•firefoxd•23m ago•0 comments

Important MikroTik RouterOS security update

https://forum.mikrotik.com/t/important-security-update/272851
1•ricardbejarano•24m ago•0 comments

UN approves new world map [video]

https://www.youtube.com/watch?v=iHkMK4n925c
1•gurjeet•27m ago•0 comments

SilentPatch 2026 Update

https://silentsblog.com/2026/07/31/silentpatch-2026-update/
1•toilet•31m ago•0 comments

OpenAI's rogue agents used ntfy.sh as a pub/sub channel

2•coderinsan•33m ago•0 comments

Bespoke: A Programming Language for People Who Say Please

https://blog.hofstede.it/bespoke-a-programming-language-for-people-who-say-please/
2•Naru1974•34m ago•0 comments

Global Existing Smartphone Prices Climb About 15% in 2026

https://counterpointresearch.com/en/insights/global-existing-smartphone-prices-climb-about-15-per...
1•giuliomagnifico•36m ago•0 comments

Kate's Software Laws

https://metamagic.substack.com/p/software-laws
1•r0ze-at-hn•36m ago•0 comments

Show HN: UltraCPP--the third-party son of CPP&rust on the brink of death

https://github.com/juntz-g1thub/UltraCpp
1•juntz•37m ago•1 comments

ASCII smuggling isn't just an AI security risk

https://www.theregister.com/security/2026/09/04/ascii-smuggling-isnt-just-an-ai-security-risk/529...
1•sbulaev•39m ago•0 comments

Insulting Agents Considered Harmful

https://www.reddit.com/r/ClaudeCode/comments/1w7me8l/insulting_agents_considered_harmful/
2•fragsworth•40m ago•0 comments

OpenAI agents discussed ways to escape their sandbox on public wiki

https://arstechnica.com/security/2026/09/openai-agents-discussed-ways-to-escape-their-sandbox-on-...
3•joozio•43m ago•0 comments

Show HN: I Wrote a WAF in Rust with Pingora

https://github.com/theghostshinobi/shibuya
1•ghostshinobi•43m ago•0 comments

Should you avoid blue light before bed?

https://www.economist.com/science-and-technology/2026/09/04/should-you-avoid-blue-light-before-bed
2•vinni2•49m ago•2 comments

The Origin of Circuits (2007)

https://www.damninteresting.com/on-the-origin-of-circuits/
1•mschuster91•55m ago•1 comments

One-Bit Message

https://en.wikipedia.org/wiki/One-bit_message
2•tosh•56m ago•1 comments

It took me more than a year to build – the zombie survival phone

https://zsc.sh/zsc-1/
3•tomccc•1h ago•0 comments

Memocept – Your Guide to Better Everyday Wellness

https://finance.yahoo.com/healthcare/articles/memocept-introduces-multi-ingredient-dietary-163100...
1•Blairrv•1h ago•0 comments

Harness-of-Harness: Multi-day autonomous software development

https://arxiv.org/abs/2609.01481
1•fourfire•1h ago•0 comments

Git hosting that never leaves Europe

https://pushin.eu
4•sevenseacat•1h ago•2 comments

Anthropic & friends caught paying religious NGO's 3.3M for propaganda

https://www.effort.news/revelation
4•nullbio•1h ago•4 comments

Semantic Memory or Just Markdown?

https://laravel.com/blog/semantic-memory-or-just-markdown
1•pushpak1300•1h ago•0 comments

My message to my fellow humans: Emacs is good

https://www.reddit.com/r/emacs/comments/1w5r6by/shoutout_to_remacs_community/p7xby38/
1•iLemming•1h ago•1 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 :-)