frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

For the First Time, Scientists May Have Found a Way to Regenerate Cartilage

https://www.inc.com/victoria-salves/for-the-first-time-scientists-may-have-found-a-way-to-regener...
1•01-_-•30s ago•0 comments

Show HN: Zen-Hunt – A bare-metal forensic scanner in Rust (SIMD, 7GB/s on NVMe)

https://github.com/ejgi/zen_hunt
1•ejgi•2m ago•0 comments

Show HN: ClawJetty: Agent Pages for Production AI

https://clawjetty.com/#####
1•andes314•5m ago•0 comments

Show HN: A KEXP native macOS app

https://github.com/isaacd9/kexp-menubar
1•idd2•6m ago•0 comments

The USPS Honors Lowrider History with These Commemorative Stamps

https://www.caranddriver.com/news/a70806083/usps-lowrider-commemorative-stamps/
1•RickJWagner•7m ago•0 comments

No Semicolons Needed

https://terts.dev/blog/no-semicolons-needed/
1•karakoram•7m ago•0 comments

Show HN: Classic Video Poker v2

https://www.classicvideopoker.com/classicvideopokerv2/
1•appstorelottery•7m ago•0 comments

An Ode to Variable Names

https://neilmacintyre.com/posts/an-ode-to-variable-names/
1•neil_macintyre•8m ago•0 comments

Visitran: Agentic Data Transformation Platform(AGPL)

https://github.com/Zipstack/visitran
1•dennisjoseph•9m ago•0 comments

Blackbird (Wind-Powered Vehicle)

https://en.wikipedia.org/wiki/Blackbird_(wind-powered_vehicle)
1•theamk•10m ago•0 comments

Show HN: Extension to See Rating from Google Book, Amazon,StoryGraph on Goodread

https://chromewebstore.google.com/detail/goodreads-buddy/gdepaaejehbcnchkkodgbljapacnmcij
2•NubPlayz•10m ago•0 comments

Show HN: Vessel Browser – An open-source browser built for AI agents, not humans

https://quantaintellect.com/
1•unmodeledtyler•11m ago•0 comments

Memory crisis latest: What we learned from the top producers this week

https://www.cnbc.com/2026/03/20/memory-crisis-latest-dram-chips-micron-samsung-sk-hynix.html
3•jamesbsr•13m ago•1 comments

Microsoft's Year 2000 Resource Center CD

https://huguesjohnson.com/programming/y2k/
1•speckx•15m ago•0 comments

Modernizing a Visual Basic 6 application using Google Gemini

https://huguesjohnson.com/programming/java/vb6-java/
1•speckx•15m ago•0 comments

EU Council gives final green light to new 3 EUR customs fee for small parcels

https://www.consilium.europa.eu/en/press/press-releases/2026/02/11/council-gives-final-green-ligh...
2•Markoff•15m ago•0 comments

Authorities disrupt largest IoT DDoS botnets

https://www.justice.gov/usao-ak/pr/authorities-disrupt-worlds-largest-iot-ddos-botnets-responsibl...
3•dabinat•19m ago•2 comments

Hardware Video Encoding in macOS VMs

https://github.com/catinthesack/avm
1•catinthesack•21m ago•0 comments

Global cybercrime crackdown: over 373 000 dark web sites shut down

https://www.europol.europa.eu/media-press/newsroom/news/global-cybercrime-crackdown-over-373-000-...
3•jruohonen•21m ago•0 comments

Single Packet Authentication with eBPF

https://github.com/aminassadi/spk
2•tanelpoder•24m ago•0 comments

Security Advisory for Cargo

https://blog.rust-lang.org/2026/03/21/cve-2026-33056/
2•emschwartz•31m ago•0 comments

Show HN: Termcraft – terminal-first 2D sandbox survival in Rust

https://github.com/pagel-s/termcraft
2•sebosch•32m ago•0 comments

C Bit-Field Pitfalls

https://www.os2museum.com/wp/bitfield-pitfalls/
2•fanf2•32m ago•0 comments

Your model quality is tied to a business model

1•Ricky_Tsou•33m ago•0 comments

Delusions of Grandeur and OS-2

https://medium.com/@AdamPaigge/delusions-of-grandeur-and-os-2-d041167e6479
2•adampaigge•39m ago•0 comments

2026 Annual Threat Assessment [pdf]

https://www.dni.gov/files/ODNI/documents/assessments/ATA-2026-Unclassified-Report.pdf
2•simonebrunozzi•40m ago•0 comments

Can quantum hints in the brain revive a consciousness theory?

https://www.newscientist.com/article/mg26134740-800-can-quantum-hints-in-the-brain-revive-a-radic...
3•thesmtsolver2•41m ago•0 comments

Important clarifications on the new advanced flow for sideloading on Android

https://androiddev.social/@MishaalRahman/116257205714463161
1•thunderbong•43m ago•0 comments

Dishwashing with side effects: Kitchen sponges release microplastics

https://phys.org/news/2026-03-dishwashing-side-effects-kitchen-sponges.html
2•XzetaU8•46m ago•0 comments

A circuit breaker for AI agents that fires before the wrong action executes

https://shoal-production.up.railway.app
2•pb_lightmind•47m 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•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 :-)