frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Families tracked victims and survivors in real time in Hong Kong tower fire

https://www.abc.net.au/news/2025-11-27/how-families-tracked-hong-kong-fatal-fire-in-real-time-onl...
1•charlieyu1•41s ago•0 comments

Elevating Intelligence via Efficient Model and Tool Orchestration

https://arxiv.org/abs/2511.21689
1•georgehe9•1m ago•0 comments

Ask HN: How many screens do you usually work with?

1•vpaulus•4m ago•0 comments

Show HN: GitHub Activity Analytics Powered by ClickHouse

https://velocity.clickhouse.com/
1•saisrirampur•5m ago•0 comments

Agentic Learner with Grow-and-Refine Multimodal Semantic Memory

https://arxiv.org/abs/2511.21678
1•badmonster•7m ago•0 comments

Artificial 'nose' tells people when certain smells are present

https://www.science.org/content/article/artificial-nose-tells-people-when-certain-smells-are-present
1•ashishgupta2209•10m ago•0 comments

Turning old bread into flour and then into tasty tortillas

https://www.rnz.co.nz/life/food/turning-old-bread-into-flour-and-then-into-tasty-tortillas
1•colinprince•11m ago•0 comments

I run a personal IPv6 BGP network. Netflix is blocking a /64 of our /36. Why?

https://www.neelc.org/posts/netflix-blocks-our-ipv6/
2•ericdiao•12m ago•0 comments

Building a Low-Cost Satellite Tracker

https://hackaday.com/2025/11/26/building-a-low-cost-satellite-tracker/
2•toomuchtodo•17m ago•1 comments

Tesla FSD software may not be approved by EU regulator after all

https://techcrunch.com/2025/11/24/tesla-fsd-software-may-not-be-approved-by-eu-regulator-after-all/
1•gochuks•19m ago•0 comments

BazelCon 2025 Recap

https://blogsystem5.substack.com/p/bazelcon-2025-recap
1•jmmv•20m ago•0 comments

Linux Kernel Explorer

https://reverser.dev/linux-kernel-explorer
1•tanelpoder•20m ago•0 comments

Between Compassion and Respomsibilty

https://rodgercuddington.substack.com/p/between-compassion-and-responsibility
1•freespirt•23m ago•1 comments

Last Issue of "ECMAScript News"

https://ecmascript.news/archive/es-next-news-2025-11-26.html
1•Klaster_1•23m ago•0 comments

Optimizing Ray Tracing in Haskell (2020)

https://medium.com/@s.nawaz/optimizing-ray-tracing-in-haskell-3dc412fff20a
1•todsacerdoti•25m ago•0 comments

AT&T Archives: The Step-by-Step Switch [video]

https://www.youtube.com/watch?v=xZePwin92cI
1•croh•40m ago•1 comments

Ask HN: What's your favorite open-source AI model, and what do you use it for?

1•miletus•42m ago•1 comments

Secrets in unlisted GitHub gists are now reported to secret scanning partners

https://github.blog/changelog/2025-11-25-secrets-in-unlisted-github-gists-are-now-reported-to-sec...
1•tech234a•45m ago•0 comments

Principles of Vasocomputation

https://opentheory.net/2023/07/principles-of-vasocomputation-a-unification-of-buddhist-phenomenol...
2•eatitraw•46m ago•0 comments

Ask HN: Do teams need a tool to make IT architecture diagrams look better

1•lynn_xx•47m ago•3 comments

Contrast best practices between OS and enterprise

https://gist.github.com/bdfinst/496d06b057c44edae7fd88d906e78f67
1•gpi•1h ago•0 comments

OpenAI API user data exposed in Mixpanel security breach

https://www.dqindia.com/news/openai-api-user-data-exposed-in-mixpanel-security-breach-10816218
10•donsupreme•1h ago•3 comments

How to Fix a Typewriter and Your Life

https://www.nytimes.com/interactive/2025/11/20/us/typewriter-repair-seattle-bremerton.html
2•gmays•1h ago•0 comments

Show HN: Era – Open-source local sandbox for AI agents

https://github.com/BinSquare/ERA
4•gregTurri•1h ago•0 comments

The Temporal Uncanny Valley: On the Nature of AI Work

https://substack.com/inbox/post/180071478
2•mpesce•1h ago•1 comments

Fracking has transformed an Argentine town

https://www.bbc.com/news/articles/cewj1e1yk2vo
2•1659447091•1h ago•1 comments

Evaluating Uniform Memory Access Mode on AMD's Turin

https://chipsandcheese.com/p/evaluating-uniform-memory-access
2•zdw•1h ago•0 comments

PostgreSQL CDC library with snapshot – 50x less memory than Debezium

https://github.com/Trendyol/go-pq-cdc
3•erayarslan•1h ago•0 comments

The Thinking Game – Full documentary [video]

https://www.youtube.com/watch?v=d95J8yzvjbQ
2•vinhnx•1h ago•0 comments

Tell HN: Happy Thanksgiving

12•prodigycorp•1h ago•2 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•6mo 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 :-)