frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Appreciation Day: Security Leaders Say the Celebration Needs an Asterisk

https://www.itsecurityguru.org/2026/07/16/ai-appreciation-day-security-leaders-say-the-celebratio...
1•mooreds•1m ago•0 comments

Agntcy – Open Infrastructure for the Internet of Agents

https://docs.agntcy.org/
1•dannyobrien•2m ago•0 comments

Nobody Needs to Impress the Salesman

https://writing.sidharthkakkar.com/p/nobody-needs-to-impress-the-salesman
1•sikakkar•3m ago•0 comments

Iran asked Yemen's Houthi movement to stand ready to close the Red Sea oil route

https://bsky.app/profile/reuters.com/post/3mqrlesy5ms2b
1•ceejayoz•4m ago•0 comments

Show HN: Galois connections for composable numeric casts in Rust

https://github.com/cmk/connections
1•partialsolve•4m ago•0 comments

First geomorphological evidence of landslides on Pluto

https://www.sciencedirect.com/science/article/pii/S0019103526002769?via%3Dihub
1•bookofjoe•5m ago•0 comments

Ask HN: Are we there yet? Can I create a human analogue using AI?

1•JoeAltmaier•5m ago•0 comments

Making Software - How to make a font

https://www.makingsoftware.com/chapters/how-to-make-a-font
1•Brajeshwar•9m ago•0 comments

A Quest for the Gros Michel, the Great Banana of Yesteryear (2018)

https://www.atlasobscura.com/articles/gros-michel-bananas
1•f_allwein•14m ago•0 comments

AI products generate more signal than teams know how to use

https://www.armank.dev/thoughts/2
2•armank-dev•14m ago•0 comments

Experimental Alzheimer's drug shows promise targeting a different brain protein

https://apnews.com/article/alzheimers-drug-brain-protein-tau-diranersen-biogen-d58728ee8f7d9dfd9e...
1•gmays•14m ago•0 comments

Zip codes are a bad spatial abstraction

https://skaldmaps.com/blog/2026/07/zip-codes-are-a-bad-spatial-abstraction/
2•otter-in-a-suit•14m ago•0 comments

Towards the dark factory: Autonomous, isolated AI agents in software engineering

https://jeroensoeters.github.io/towards-the-dark-factory/
1•discountelf•14m ago•1 comments

What I Learned from Reimplementing 40 Multi-Agent LLM Papers

https://medium.com/@Koukyosyumei/what-i-learned-from-reimplementing-40-multi-agent-llm-papers-bd6...
1•syumei•15m ago•0 comments

56,000 lines of DOOM, in a language I made up

https://betlang.dev/about/
2•ghuntley•15m ago•0 comments

Photos of items from families in different countries with different incomes

https://www.gapminder.org/dollar-street
6•uneven9434•16m ago•0 comments

Data Centers to Add Billions in Power Costs in 13 States

https://www.nytimes.com/2026/07/14/business/energy-environment/pjm-electricity-prices-data-center...
1•cdrnsf•16m ago•1 comments

Building scalable AI agents with modular prompt transpilation

https://developers.googleblog.com/building-scalable-ai-agents-with-modular-prompt-transpilation/
2•yruzin•18m ago•0 comments

Signal Ring gives blood pressure readings, not just alerts like Apple Watch

https://9to5mac.com/2026/07/16/signal-ring-gives-blood-pressure-readings-not-just-alerts-like-app...
2•malshe•19m ago•1 comments

My Accessibility Review Process

https://rightbadcode.com/a11y-review-process/
1•mooreds•20m ago•0 comments

Astronomers Have Found a Sugar Molecule in Deep Space for the First Time Ever

https://www.wired.com/story/astronomers-found-sugar-molecule-in-deep-space/
2•Brajeshwar•21m ago•0 comments

I Unlocked ChatGPT's Dark Side for $101.40 [video]

https://www.youtube.com/watch?v=b-nD3HgIR5Y
1•qwertox•22m ago•0 comments

Decoy Font

https://www.mixfont.com/experiments/decoy-font
6•ray__•22m ago•2 comments

Show HN: ASMR and Hypnosis Easy Audio Studio

https://reactorcore.itch.io/asmrify-asmr-hypnosis-audio-studio
1•not_wowinter13•22m ago•0 comments

Show HN: A modern port of Linux to a ten-year-old QWERTY phone

1•tmzt•24m ago•0 comments

Pyte – Python library emulating VTXXX-compatible terminals in memory

https://github.com/selectel/pyte
1•gregsadetsky•25m ago•0 comments

Agent-talk: Enabling coding agents to work together

https://github.com/xhluca/agent-talk
4•xhluca•26m ago•0 comments

The IDE Is Now Just a Large Attack Surface

https://worklifenotes.com/2026/07/16/the-ide-is-now-just-a-large-attack-surface/
1•taleodor•26m ago•0 comments

White House teleprompter operator made $100K+ betting on Trump's speeches

https://abcnews.com/US/white-house-teleprompter-operator-made-100k-betting-trumps/story?id=134764573
8•ceejayoz•26m ago•1 comments

1Password for Claude: Give Claude access without giving up your credentials

https://1password.com/blog/1password-for-claude
4•terracatta•27m 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 :-)