frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Did Google's AI agents build an operating system for $916?

https://www.normaltech.ai/p/did-googles-ai-agents-really-build
1•randomwalker•1m ago•0 comments

T

2•j_zhan•2m ago•0 comments

AI and doctrinal collapse

https://www.stanfordlawreview.org/print/article/ai-and-doctrinal-collapse/
1•hhs•4m ago•0 comments

Jailbroken Gemini helped Russian-speaking fraudster target MAGA crypto users

https://www.theregister.com/cyber-crime/2026/05/22/jailbroken-gemini-helped-russian-speaking-frau...
1•lschueller•6m ago•0 comments

Who's to Blame When an Ivy League President Drives into His Students?

https://www.theringer.com/2026/05/22/national-affairs/cornell-car-scandal-president-michael-kotli...
2•hn_acker•6m ago•2 comments

Show HN: BonzAI – self-sovereign, local LLM inference in the browser

https://www.bonzai.sh/
1•wilhempujar•7m ago•0 comments

Show HN: Logatory – local-first log analysis and threat detection, no SIEM

https://github.com/T0nd3/logatory
1•T0nd3•7m ago•0 comments

Bug 1950764: Work Around Crash on Intel Raptor Lake CPU

https://phabricator.services.mozilla.com/D301917
1•luu•8m ago•0 comments

MCP-safeguard: Automated security scanner for MCP servers (52 detection rules)

https://github.com/SyedAnas01/mcp-safeguard
1•Anas1371•9m ago•0 comments

Ford Enters Battery Storage Business

https://www.fromtheroad.ford.com/us/en/articles/2026/introducing-ford-energy
1•foxfired•9m ago•0 comments

Dehydration's role in learning and memory

https://www.cshl.edu/dehydrations-role-in-learning-and-memory/
1•hhs•13m ago•0 comments

High-Volume VRP Optimization at Amazon Scale on a Raspberry Pi 400

https://medium.com/@martinvizzolini/i-ran-the-amazon-last-mile-routing-challenge-on-a-raspberry-p...
1•pantherolive•14m ago•0 comments

Uber, Meta hinder users’ ability to control data, study says

https://news.bloomberglaw.com/privacy-and-data-security/uber-meta-make-it-hard-for-users-to-stop-...
1•hhs•16m ago•0 comments

Reverse Engineering: Dagda and Wolf's Lair bugs fixed after 21 years (2022)

https://i-war2.com/news/181-dagda-and-wolf%E2%80%99s-lair-bugs-fixed-after-21-years
1•sigma5•16m ago•0 comments

Two Loops: How China's Open AI Strategy Reinforces Its Industrial Dominance [pdf]

https://www.uscc.gov/sites/default/files/2026-03/Two_Loops--How_Chinas_Open_AI_Strategy_Reinforce...
1•robocat•18m ago•0 comments

The First Hit Is Free

https://whattotelltherobot.com/p/the-first-hit-is-free
1•stefie10•23m ago•0 comments

Jira IS Turing-Complete

https://seriot.ch/computation/jira.html
1•beefburger•26m ago•0 comments

Show HN: Synchole is a native P2P data transfer protocol library in Rust

https://github.com/doshareme/synchole
2•vednig•28m ago•0 comments

Starship Launch – Everyday Astronaut [video]

https://www.youtube.com/watch?v=odWYDx3u8A4
5•cwillu•30m ago•0 comments

Ontology vs. Semantic Layer

https://lowhangingdata.com/article/ontology-vs-semantic-layer/
1•mryagerr•33m ago•0 comments

I'm Tired of Listening to Nerds and Dweebs (2025) [video]

https://www.youtube.com/watch?v=3S9OZTQa0eY
2•TMWNN•35m ago•0 comments

Triumph of the Nerds

https://en.wikipedia.org/wiki/Triumph_of_the_Nerds
1•evo_9•39m ago•0 comments

Only 17% of all 64-bit Integers are products of two 32-bit integers

https://lemire.me/blog/2026/05/22/only-17-of-all-64-bit-integers-are-products-of-two-32-bit-integ...
2•yacin•39m ago•0 comments

DeadBro – Lightweight APM for Rails apps (N+1 detection, error tracking, alerts)

https://www.deadbro.com/
1•deadbro•40m ago•0 comments

LT2: Linear-Time Looped Transformers

https://charlesdddd.github.io/lt2/
2•matt_d•43m ago•0 comments

Anthropic's coordinated vulnerability disclosure dashboard

https://red.anthropic.com/2026/cvd/
1•darkamaul•43m ago•0 comments

Sleep research led to a new sleep apnea drug

https://temertymedicine.utoronto.ca/news/how-decades-sleep-research-led-new-sleep-apnea-drug
1•colinprince•45m ago•0 comments

Human cognitive labor will survive

https://interestingstuff.xyz/predictions/human-cognitive-labor-will-survive/
1•interestingstuf•48m ago•0 comments

Event Tensor: A Unified Abstraction for Compiling Dynamic Megakernel

https://arxiv.org/abs/2604.13327
2•matt_d•48m ago•0 comments

The seed oil panic is hurting my cardiac patients

https://www.statnews.com/2026/05/22/seed-oils-healthy-fats-tallow-fact-check-cardiac-health/
4•EA-3167•49m 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 :-)