frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Happiness Feels

https://passiveaggressionoftheworlds.substack.com/p/how-happiness-feels
1•bunson_burner•2m ago•0 comments

Microsoft's GitHub grounds Copilot account sign-ups amid capacity crunch

https://www.theregister.com/2026/04/20/microsofts_github_grounds_copilot_account/
1•gpi•3m ago•0 comments

Ask HN: What Would Make Stack Overflow Great Again?

2•nnurmanov•8m ago•0 comments

Claude 4.7 blocks cyber prompts: before the fact vs. after the fact

https://raxitlabs.com/blogs/claude-47-five-layers-cyber-blocking
1•agairola•10m ago•0 comments

Show HN: XTTV, the App to watch long video from Twitter/X on Apple TV

https://apps.apple.com/us/app/xttv/id6757870255
1•ShawFei•10m ago•0 comments

Cognition without brains? Learning and memory in microorganisms

https://www.sciencedirect.com/science/article/pii/S0966842X26000909
1•the-mitr•10m ago•0 comments

Agent Harness Engineering

https://addyosmani.com/blog/agent-harness-engineering/
2•tanelpoder•15m ago•0 comments

Benchmarking Cloud vs. Local LLMs Why back end choice matters more than quant

https://arxiv.org/abs/2604.18566
1•tleitch•16m ago•0 comments

Ask HN: Is the internet getting more jank?

1•taurath•16m ago•0 comments

Everyone should have the opportunity to build their own house

https://reveriesofahuman.com/everyone-should-have-the-opportunity-to-build-their-own-house/
1•dartharva•18m ago•0 comments

Deeply Rooted

https://oxfordamerican.org/oa-now/deeply-rooted
1•gmays•20m ago•0 comments

HackerFork – Surfaces HN posts that never make the front page

https://hackerfork.com
1•saadn92•21m ago•1 comments

Sys. Review: The Impact of Covid-19 Vaccination on Myocarditis Risk and Recovery

https://www.mdpi.com/2039-7283/16/4/77
1•cratermoon•22m ago•0 comments

Netflix's AI deal puts the global VFX workforce at risk

https://restofworld.org/2026/netflix-interpositive-vfx-ai-automation/
2•jackyli02•23m ago•1 comments

FPGA-based tiled matrix multiplication accelerator for self-attention

https://arxiv.org/abs/2503.16731
3•sha_rad•24m ago•0 comments

Show HN: Proton VPN expands to 145 countries: A technical look at infrastructure

1•anju-kushwaha•27m ago•0 comments

Show HN: Aide – A customizable Android assistant (voice, choose your provider)

https://aideassistant.com/
1•yincrash•28m ago•0 comments

Omacon keynote talk with DHH [video]

https://www.youtube.com/watch?v=sMxskir7Rug
2•nodesocket•30m ago•1 comments

Ask HN: Why aren't companies with unlimited AI tokens not crushing it?

1•taariqlewis•33m ago•0 comments

Found in Peat

https://old.reddit.com/r/fossilid/comments/1sruf2q/found_in_peat/
2•gehwartzen•34m ago•0 comments

Show HN: Open Chronicle – Local Screen Memory for Claude Code and Codex CLI

https://github.com/Screenata/open-chronicle
1•taoh•35m ago•1 comments

Show HN: GBrain, an AI tool for diagnosis and therapy for neurodivergents

https://www.neuroplusgbrain.net/
1•FDX2018•37m ago•0 comments

Wired: They Built a Legendary Privacy Tool. Now They're Sworn Enemies

https://www.wired.com/story/they-built-privacy-tool-grapheneos-now-sworn-enemies/
1•joemazerino•38m ago•0 comments

Show HN: Agent harness that turns errors into shared genes

https://github.com/Prismer-AI/PrismerCloud
1•PrismerAI•38m ago•0 comments

The AI engineering stack we built internally – on the platform we ship

https://blog.cloudflare.com/internal-ai-engineering-stack/
1•geoffbp•45m ago•0 comments

Humpback whales are forming super-groups

https://www.bbc.com/future/article/20260416-the-humpback-super-groups-swarming-the-seas
2•andsoitis•45m ago•0 comments

Silicon Theogeny

https://garden.theory-a.com/philosophy/silicon-theogony
1•notShabu•47m ago•0 comments

Is Claude Code going to cost $100/month? Probably not—it’s all very confusing

https://simonwillison.net/2026/Apr/22/claude-code-confusion/
1•jbegley•48m ago•1 comments

FBI looks into dead or missing scientists tied to NASA, Blue Origin, SpaceX

https://fortune.com/2026/04/21/scientists-disappear-die-nasa-space-blue-origin-spacex/
28•ineedasername•51m ago•4 comments

Angine de Poitrine – Interesting microtonal rock band [video]

https://www.youtube.com/watch?v=0Ssi-9wS1so
5•Uptrenda•58m 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•11mo 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 :-)