frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Rapidly Scaffold Agents, MCP Servers, APIs, Websites on AWS

https://awslabs.github.io/nx-plugin-for-aws/
2•cogwirrel•4m ago•0 comments

Show HN: I made an app to help me learn Middle Eastern drumming

https://labs.tiffzhang.com/drums/
1•shadowfiles•6m ago•0 comments

Happy Horse AI

https://www.happy-horse-ai.ai
1•erji2233•7m ago•0 comments

The Gang: A Cooperative Texas Hold'em Bank Heist Card Game

https://boardgamegeek.com/boardgame/411567/the-gang
1•Lwrless•10m ago•0 comments

Intel Xpress Resurrection: Reviving a Forgotten EISA Beast

https://x86.fr/intel-xpress-resurrection-reviving-a-forgotten-eisa-beast/
1•ankitg12•13m ago•0 comments

Intent Security Through the Lens of Claude Code Auto Mode

https://www.lasso.security/blog/claude-code-auto-mode-vs-intent-security
1•irememberu•15m ago•0 comments

Lawyer behind AI psychosis cases warns of mass casualty risks

https://techcrunch.com/2026/03/15/lawyer-behind-ai-psychosis-cases-warns-of-mass-casualty-risks/
2•mentalgear•16m ago•1 comments

The Federal Government Is Rushing Toward AI

https://www.propublica.org/article/federal-government-ai-cautionary-tales
1•jruohonen•20m ago•0 comments

Virtual Tour of the CFS Commercial Fusion Campus (April 2026) [video]

https://www.youtube.com/watch?v=Wp1rcZ-daBU
1•mpweiher•22m ago•0 comments

I gave my AI shell access and felt uneasy – so I sandboxed it

https://github.com/sliamh11/Deus
1•sliamh11•24m ago•0 comments

What We Learned Building a Rust Runtime for TypeScript

https://encore.dev/blog/rust-runtime
1•dohguy•26m ago•0 comments

AI Will Be Met with Violence, and Nothing Good Will Come of It

https://www.thealgorithmicbridge.com/p/ai-will-be-met-with-violence-and
24•gHeadphone•29m ago•7 comments

Universal Knowledge Store and Grounding Layer for AI Reasoning Engines

https://github.com/alash3al/loci
2•alash3al•30m ago•0 comments

Give your coding agent access to runtime logs

https://www.debugy.dev
3•amitay1599•30m ago•1 comments

A 'Self-Doxing' Rave Helps Trans People Stay Safe Online

https://www.404media.co/trans-rights-privacy-online-cybersecurity-workshop-deadname-not-found/
1•01-_-•30m ago•0 comments

Optimization of 32-bit Unsigned Division by Constants on 64-bit Targets

https://arxiv.org/abs/2604.07902
1•mpweiher•31m ago•0 comments

Israel Destroys Villages in Lebanon

https://www.theguardian.com/world/2026/apr/12/how-israeli-offensive-destroyed-entire-villages-in-...
52•pera•31m ago•8 comments

Eighteen Weeks and Still Can't Read a Secret

https://liminaldr.substack.com/p/eighteen-weeks-and-still-cant-read
1•BlendedPanda•33m ago•1 comments

Palantir CEO says AI 'will destroy' humanities jobs

https://fortune.com/article/palantir-ceo-alex-karp-ai-humanities-jobs-vocational-training/
2•01-_-•35m ago•1 comments

Modern Microprocessors – A 90-Minute Guide

https://www.lighterra.com/articles/
1•Flex247A•40m ago•0 comments

Is SVG the Final Frontier?

https://svg.new/blog/is-svg-the-final-frontier
4•swazzy•45m ago•0 comments

120k USD compute credits from various providers

1•chrisvee•47m ago•1 comments

A Deep Dive into Tinygrad AI Compiler

https://tinyblog-phi.vercel.app/tinygrad
2•ppadjin123•57m ago•0 comments

Strait of Hormuz Gameplay Demo [video]

https://www.youtube.com/watch?v=XVY7WAT4OdE
1•us321•58m ago•0 comments

Lawsuit over who owns top ranked coding bootcamp Codesmith

https://michaelnovati.substack.com/p/codesmith-in-court-the-hard-parts
2•michaelnovati•1h ago•0 comments

Apple Stops Accepting Orders for Some Mac Mini and Mac Studio Models

https://www.macrumors.com/2026/04/11/some-mac-mini-mac-studio-currently-unavailable/
1•Brajeshwar•1h ago•0 comments

Salesforce and ServiceNow are squaring off in the battle for the helpdesk

https://www.theregister.com/2026/04/11/salesforce_vs_servicenow_itsm_battle/
2•Brajeshwar•1h ago•1 comments

Show HN: Bullseye2D – A Dart library for cross-platform 2D games

https://github.com/bullseye2d/bullseye2d
3•joemanaco•1h ago•0 comments

Apple update looks like Czech mate for locked-out iPhone user

https://www.theregister.com/2026/04/12/ios_passcode_bug/
50•OuterVale•1h ago•16 comments

Phyphox – Physical Experiments Using a Smartphone

https://phyphox.org/
2•_Microft•1h 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 :-)