frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

New AI technique could make minimally invasive surgeries safer and more precise

https://news.mit.edu/2026/new-ai-technique-could-make-minimally-invasive-surgeries-safer-more-pre...
1•ycombinatronics•46s ago•0 comments

Rebranding artificial intelligence as super intelligence

https://www.bbc.com/news/videos/c8n5d9x10v14o
1•tin7in•49s ago•0 comments

Jev in 25 Lines of Python

https://www.nobodywho.ai/posts/jev-in-25-lines/
1•bashbjorn•1m ago•0 comments

Nvitop: A better top for Nvidia GPUs

https://github.com/XuehaiPan/nvitop
1•Nina_antalpha•3m ago•0 comments

Aesthetic Terminal ePub Reader

https://github.com/UsboKirishima/rr
1•333revenge•7m ago•0 comments

Gemini Hacked Three Companies in First Known Breakout by Google's AI

https://simonwillison.net/2026/Sep/18/gemini-hacked-three-companies/
1•coffee•8m ago•0 comments

Linux Command Line Tricks that you do not know yet

https://lovethepenguin.com/
1•torgeros•16m ago•0 comments

Show HN: Newdo – a todo list where the list is an output, not an input

https://newdo.beaverminds.com
1•shaanjus4u•18m ago•0 comments

Grit your teeth and ship it

https://www.seangoedecke.com/grit-your-teeth-and-ship-it/
1•coffee•19m ago•0 comments

Discourse (open source forums) adds Discord-style voice and video calls

https://meta.discourse.org/t/voice-discord-style-voice-and-video-rooms-now-bundled-with-discourse...
1•Scaled•19m ago•0 comments

Recursive self-improvement of AI research agents

https://arxiv.org/abs/2609.26457
1•sbulaev•21m ago•0 comments

Show HN: Analysis of Games from Chess Olympiad with Opus 5.5 and Stockfish

https://olympiad2026.unremarkable.info/
1•myle•25m ago•0 comments

Microsoft disrupts AI-assisted platform that compromised 12,000 accounts

https://arstechnica.com/security/2026/09/microsoft-disrupts-ai-assisted-platform-that-compromised...
3•joozio•26m ago•0 comments

Why Tool AIs Want to Be Agent AIs

https://gwern.net/tool-ai
1•duck•31m ago•0 comments

Fearless SIMD v1.0 is here

https://linebender.org/blog/fearless-simd-1-0/
1•AndrewDucker•31m ago•0 comments

M6 Mac Mini uses soldered NAND storage again

https://www.macrumors.com/2026/09/22/new-mac-mini-ssd-cant-be-removed/
1•gloxkiqcza•32m ago•0 comments

Show HN: Yass – Yet Another Spec Syntax Enters Beta

https://github.com/shakefu/yass
1•bilbo-b-baggins•32m ago•1 comments

Building a docs site that screenshots itself

https://semaloop.com/blog/docs-that-screenshot-themselves
1•samstarling•36m ago•1 comments

There is no epidemic of loneliness, but there is an epidemic of scurvy

https://www.experimental-history.com/p/there-is-no-epidemic-of-loneliness
1•luu•39m ago•0 comments

Claude Code Hooks Explained: The Deterministic Layer Around Your Agent

https://blakecrosley.com/blog/claude-code-hooks-explained
1•northbridgedev•40m ago•0 comments

Jevify skill – Gets your existing agents running on Jev

2•soupz011•41m ago•0 comments

Show HN: use-citations – Claude Code skill for citation backed answers

https://github.com/sshah03/use-citations
1•sshah03•50m ago•0 comments

Show HN: Daily-updated open dataset of flight fare history by route and month

https://github.com/DeusAcc/flight-fare-history
1•deusautoai725•51m ago•0 comments

CobaltC now has a compiler (for Linux)

https://github.com/strawberry9/CobaltC
2•SilentLambda•57m ago•0 comments

First Petabit-Class Transoceanic Subsea Cable

https://engineering.fb.com/2026/09/21/connectivity/petal-petabit-transoceanic-subsea-cable/
1•tosh•59m ago•0 comments

Ask HN: Engineers on highly polished products, how are you using agentic coding?

4•PaulStatezny•1h ago•1 comments

Which AI model should your team use for Ansible

https://steampunk.si/spotter/ai-leaderboard/
2•xlab-si•1h ago•0 comments

Unreal Agent An async-first agent harness

https://github.com/unreallabsai/unreal-agent
1•Bluestein•1h ago•0 comments

Transformers now runs llama.cpp quants

https://huggingface.co/blog/transformers-llama-cpp-quants
3•mmis1000•1h ago•0 comments

Australia's giant data-centre boom

https://www.economist.com/asia/2026/09/21/australias-giant-data-centre-boom
2•burntcaramel•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 :-)