frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A Schools Chief So Charming That Los Angeles Overlooked His Red Flags

https://www.nytimes.com/2026/03/07/us/alberto-carvalho-lausd-scandals.html
1•bbertucc•36s ago•1 comments

Does Apple's M5 Max really "Destroy" a 96-Core Threadripper?

https://slashdot.org/submission/17345398/does-apples-m5-max-really-destroy-a-96-core-threadripper
1•dkechag•1m ago•0 comments

Bone (B-1 bomber) deployed to the UK

https://www.theguardian.com/world/2026/mar/07/us-bomber-lands-in-uk-after-warning-of-surge-in-str...
1•zabzonk•1m ago•0 comments

Security vulnerabilities I found in high school

https://blog.raed.dev/posts/hacking-stories-from-high-school-days/
1•Raed667•5m ago•0 comments

Microscopes Can See Video on a LaserDisc

https://www.youtube.com/watch?v=qZuR-772cks
1•zdw•6m ago•0 comments

Debunking of inaccurate and misinformed claims being made about GrapheneOS

https://twitter.com/GrapheneOS/status/2030402535463506069
1•hnburnsy•7m ago•0 comments

Show HN: Agentpng – turn agent sessions into shareable images

https://www.agentpng.dev/
2•siegers•7m ago•0 comments

Show HN: Open-source tool turns a site into an MCP by recording the browser

https://github.com/danielthedm/browse2mcp
1•ethantheswe•8m ago•0 comments

Modular Video Transmission Platform

https://mvtp.cesnet.cz/#demovideo
1•clan•12m ago•0 comments

Show HN: Herd – Session-affine process pool for Go

https://github.com/HackStrix/herd
1•sankalpnarula•12m ago•0 comments

Show HN: Brw – Browser automation for Claude Code agent teams

https://github.com/sshh12/claude-plugins/blob/main/plugins/brw/README.md
1•sshh12•12m ago•0 comments

$3T Blind Spot: US nonprofits

https://charitysense.com/insights/the-3-trillion-blind-spot
2•mtweak•13m ago•0 comments

Show HN: Ash – OSS Infra for Running Claude Agent SDK

https://github.com/ash-ai-org/ash-ai
1•nicklo•18m ago•1 comments

Show HN: Send Secret Message in a Maze

https://wordsastray.com/home.html
1•bilkoo•18m ago•0 comments

PhD interrupted by personal safety issues, now publication record is thin

2•qthrwaway•19m ago•0 comments

Git diffs are 40 years old, introducing Semantic diffs

https://twitter.com/i/status/2029992315532759435
1•Palanikannan•20m ago•1 comments

How do you capture decisions made in Slack so they don't get lost?"

1•frankiefrazer•21m ago•1 comments

Roguelike music algorithm showcase by Nifflas

https://www.youtube.com/watch?v=WbgdXalXPus
1•todsacerdoti•22m ago•0 comments

Because Algospeak

https://www.tbray.org/ongoing/When/202x/2026/03/05/Because-Algospeak
1•zdw•22m ago•0 comments

Why do papers get desk rejected?

https://purl.stanford.edu/yb785sx5019
2•paulpauper•22m ago•0 comments

Show HN: DBWarden – A database migration tool for Python/SQLAlchemy projects

https://github.com/emiliano-gandini-outeda/DBWarden
1•emi_gandini•26m ago•0 comments

QRPC: Low Latency RPC over Link Layer

https://github.com/malandrakisgeo/qRPC
1•plethon•27m ago•0 comments

For These Millennials, College Was a Party. Then Came Real Life

https://www.nytimes.com/2026/02/17/books/review/so-old-so-young-grant-ginder.html
1•paulpauper•29m ago•0 comments

Almost a third of Gen Z men agree a wife should obey her husband

https://www.kcl.ac.uk/news/almost-a-third-of-gen-z-men-agree-a-wife-should-obey-her-husband
3•johntfella•30m ago•1 comments

Ask HN: Would you use a job board where every listing is verified?

2•BelVisgarra•32m ago•0 comments

I glimpsed heaven and it showed me the door (Jhourney retreat report)

https://lalachimera.com/p/i-glimpsed-heaven-and-it-showed-me
1•paulpauper•32m ago•0 comments

From a £1B dream to a brutal collapse: How Brewdog hit the rocks

https://www.bbc.com/news/articles/cn4ggqgyk51o
1•ZeljkoS•36m ago•0 comments

A16Z: The Power Brokers

https://www.notboring.co/p/a16z-the-power-brokers
1•sershe•38m ago•0 comments

Autonomous AI Agents Have an Ethics Problem

https://undark.org/2026/03/05/opinion-ai-agents-ethics/
1•EA-3167•41m ago•1 comments

Typst Meetup 2026: Keynote

https://www.youtube.com/watch?v=WOQXL6vRrJs
1•todsacerdoti•42m 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•10mo 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 :-)