frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How to manage a growing fleet of AI agents with Latitude

https://latitude.so/blog/how-to-manage-a-fleet-of-agents-with-latitude
1•mooreds•23s ago•0 comments

The Lottery of Life

https://substack.com/@rutgerbregman/note/c-332235472
1•higginsniggins•49s ago•0 comments

MCP Client Registration: Dinner Party or Nightclub?

https://fusionauth.io/blog/cimd-vs-dcr
1•mooreds•2m ago•0 comments

Hacking Cable: AI in post-exploitation operations

https://palisaderesearch.org/blog/hacking-cable
1•syumei•4m ago•0 comments

Show HN: Spatial memory for document OCR pipelines (zero dependencies)

https://github.com/aws-samples/sample-textract-field-memory
1•avnban•6m ago•0 comments

Stop making swap partitions–use swap files instead

https://gist.github.com/joshenders/c4960cec9c63a7b7d68ffa9543356c43
1•jenders•6m ago•0 comments

The Solo-Dev Ship Checklist – a 10-item pre-launch checklist for indie devs

https://merlin-ship-checklist.surge.sh
1•clawforger_mthx•6m ago•0 comments

Solo.io Pushes Agentic AI Governance to the Desktop: Open-Source Agentdesktop

https://techstrong.ai/articles/solo-io-pushes-agentic-ai-governance-to-the-desktop-with-open-sour...
1•CrankyBear•7m ago•0 comments

Running agents in a sandbox or VM is the wrong pattern

https://funky.dev/blog/running-agents-in-a-sandbox-or-vm-is-the-wrong-pattern
1•xij•7m ago•0 comments

Despite the chatter, AI pricing is not converging on a model

https://www.solvimon.com/blog/ai-pricing-not-converging-on-single-model
1•arnon•9m ago•0 comments

Refeeding Syndrome

https://en.wikipedia.org/wiki/Refeeding_syndrome
1•chistev•9m ago•0 comments

Show HN: An interactive visualization of Caribbean imperial history

https://contestedworlds.com/
1•jamesgpearce•10m ago•0 comments

Open Models Change the Economics of AI [video]

https://www.youtube.com/watch?v=rY0wnfFHYbs
1•gmays•10m ago•0 comments

A Topological Picture Book, Rendered

https://e-infinity.space/picture-book/
1•mathgenius•11m ago•0 comments

How I Built First-Party Analytics for a Personal Blog

https://gkoreli.com/first-party-analytics-for-a-personal-blog
1•gogakoreli•15m ago•0 comments

The DOJ's AI Fair Use Brief Is Correct, but from a DOJ That Has No Credibility

https://www.techdirt.com/2026/09/08/the-dojs-ai-fair-use-brief-is-correct-but-from-a-doj-that-has...
2•hn_acker•17m ago•0 comments

25 Years Since 9/11: 13 Numbers That Tell the Story

https://zeteo.com/p/25-years-since-911-13-numbers-that
1•abdelhousni•17m ago•0 comments

Why this month's Microsoft patch release is a doozy

https://arstechnica.com/security/2026/09/microsoft-patches-a-record-972-vulnerabilities-112-of-th...
1•canucker2016•18m ago•0 comments

Microsoft Plugs Nearly 1000 Security Holes

https://krebsonsecurity.com/2026/09/microsoft-plugs-nearly-1000-security-holes/
1•jnord•19m ago•0 comments

A Doctor Sued 700 Patients for Debts; 81 Were Arrested. Now He's a Senator

https://www.nytimes.com/2026/09/08/us/politics/roger-marshall-obgyn-doctor-debts.html
6•rawgabbit•22m ago•1 comments

NASA's Nancy Grace Roman Space Telescope: Why It's So Cool

https://www.windriver.com/blog/NASA-Nancy-Grace-Roman-Space-Telescope
2•ohjeez•23m ago•0 comments

Show HN: SagaShield – ACID transactions and security guardrails for AI agents

https://github.com/sebastianmechno-sys/sagashield
1•esseba-dev•24m ago•0 comments

Danny McBride's Solution to the Masculinity Crisis

https://www.newyorker.com/books/page-turner/danny-mcbrides-solution-to-the-masculinity-crisis
1•petethomas•26m ago•0 comments

A Single-Tower Multimodal-Native Multilingual Foundation Encoder (By H)

https://arxiv.org/abs/2609.01657
1•bitboyro•29m ago•0 comments

The Oldest Architecture in Computing

https://www.allthingsdistributed.com/2026/09/the-oldest-architecture-in-computing.html
1•jonbaer•29m ago•0 comments

The Editorial Mindset – By Troy Howard

https://blog.thoward37.me/articles/the-editorial-mindset/
1•thoward37•30m ago•1 comments

A Universe of My Own

https://catbee.ca/universe/
1•behohippy•30m ago•1 comments

Show HN: Owned. Own a piece of the world and make it visible

https://owned.bennytaccardi.com/
4•axeowl123•31m ago•1 comments

Show HN: Genotype: language that compiles to idiomatic TS, Rust and Python

https://genotype-lang.org/
3•kossnocorp•31m ago•0 comments

The 40 Year Old Kernel Bug (iOS, macOS, XNU, etc.)

https://yuvalino.com/how-can-you-not-be-romantic-about-unix-domain-sockets
2•Orlan•31m 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 :-)