frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

We are in the golden age of Open Source

https://kerkour.com/open-source-golden-age-ai
1•worik•8m ago•0 comments

MySQL 9.7.0 LTS Is Now Available

https://blogs.oracle.com/mysql/mysql-9-7-0-lts-is-now-available-expanded-community-capabilities-a...
1•ksec•8m ago•0 comments

Show HN: Aegis – post-quantum cyberdefense proxy (471 attacks, 0 breaches)

https://github.com/conchaestradamiguelangel-droid/aegis
1•conchaestrada•11m ago•0 comments

They are looting your life savings

https://social.bau-ha.us/@raganwald/116705256401454865
11•ColinWright•14m ago•4 comments

They Already Need a Bailout

https://www.youtube.com/watch?v=QAn_39-qu6I
3•tcp_handshaker•16m ago•0 comments

The mysterious database that provides clues to China's foreign surveillance

https://www.smh.com.au/world/asia/the-mysterious-database-that-provides-clues-to-china-s-foreign-...
1•cwwc•18m ago•0 comments

No More Hidden Changes: How MySQL 9.6 Transforms Foreign Key Management

https://blogs.oracle.com/mysql/no-more-hidden-changes-how-mysql-9-6-transforms-foreign-key-manage...
1•ksec•19m ago•0 comments

The Dictionary of Obscure Sorrows

https://www.thedictionaryofobscuresorrows.com
2•mhb•20m ago•0 comments

Add a Little Something to the CSS

https://codeberg.org/gedankenstuecke/pages-source/commit/57f7df832d45eb847d1a0af3cca2f3ab81585a2c
1•ColinWright•21m ago•0 comments

Ask HN: How to get my contact info off US political party's list

1•kaycebasques•21m ago•0 comments

An engine-run runtime environment for data sovereignty

https://www.trinitymonolith.io/
1•rahkyt•23m ago•0 comments

Ukrainian Drone Strikes Target Russian Military Facilities in St. Petersburg

https://www.wsj.com/world/russia/mass-ukrainian-drone-strikes-target-russian-military-facilities-...
2•JumpCrisscross•23m ago•0 comments

Database as a Graph for Relational Deep Learning

https://neovintage.org/posts/relational-deep-learning/
1•neovintage•25m ago•0 comments

Programmers Aren't People

https://elliotbonneville.com/programmers-arent-people/
2•elliotbnvl•25m ago•0 comments

Gothic 1 Remake

https://store.steampowered.com/app/1297900/Gothic_1_Remake/
1•doener•26m ago•0 comments

Alley Cat (IBM, 1984)

https://www.playdosgames.com/online/alley-cat/
1•reconnecting•29m ago•0 comments

2026 Methods for Free Compute and AI Credits

https://www.dropbox.com/scl/fi/bvi5v0i94ifnk3mfstewq/SAIRC-Free-Compute.pdf?dl=0&e=1&noscript=1&r...
1•imranmk•33m ago•0 comments

Decoupled RISC-LLM Architectures via Circadian Synaptic Consolidation

https://aermia.com/u/NancySadkov/p/research-proposal-decoupled-risc-llm-architectures-via-circadi...
1•NancySadkov•35m ago•0 comments

AI could drive advances that solve problems it brings, scientist suggests

https://www.rnz.co.nz/news/science-and-technology/597458/ai-could-drive-advances-that-solve-the-p...
3•billybuckwheat•39m ago•0 comments

Why Robotics Is a Pre-Paradigm Field

https://whattotelltherobot.com/p/why-robotics-is-a-pre-paradigm-field
2•stefie10•40m ago•0 comments

NEOM issues temporary work stoppage on The Line until at least 2030

https://www.archpaper.com/2026/06/neom-temporary-work-pause-the-line/
2•JumpinJack_Cash•41m ago•0 comments

The C++ Documentary Won't Show You a Number. I Will

https://hftuniversity.com/post/the-c-documentary-won-t-show-you-a-number-i-will
3•canyp•45m ago•1 comments

Wasting China's solar panel surplus is madness

https://www.ft.com/content/b6cac184-75a4-47ab-94c5-5eb8c92cd407
4•mmarian•46m ago•3 comments

Criticizing the Everything Machine

https://pluralistic.net/2026/06/06/applied-counterescatology/
1•hn_acker•49m ago•0 comments

Refining Humanity

https://pluralistic.net/2026/06/05/defining-humanity/
1•hn_acker•49m ago•0 comments

Show HN: Dap-mux – Connect your editor and REPL to the same debug session

1•YesJustWolf•50m ago•0 comments

DOGE plan would have marked 2.7M living people as dead: Whistleblower

https://thehill.com/homenews/nexstar_media_wire/5912841-doge-plan-would-have-marked-2-7m-living-p...
6•hn_acker•51m ago•0 comments

William Gass and John Hawkes (1971)

https://www.92ny.org/archives/william-gass-and-john-hawkes
1•ofalkaed•52m ago•0 comments

Useful Robots (1968) [video]

https://www.youtube.com/watch?v=cEbSaWNs9pY
2•megamike•54m ago•0 comments

Show HN: PriceHound.app – Price tracking for $1/mo instead of selling your data

3•Brian_Fitz•1h 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 :-)