frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

It Is Trivially Easy to Use Reddit to Manipulate AI Search

https://www.404media.co/it-is-trivially-easy-to-use-reddit-to-manipulate-ai-search-research-sugge...
2•cui•6m ago•0 comments

Don't Get Hacked!

https://www.cs.columbia.edu/~smb/homesec/
2•sohkamyung•10m ago•0 comments

Show HN: Validate your idea from Reddit and TikTok

https://draper.chat
2•tomchill•11m ago•0 comments

CVE Daily, RSS Feed Generation Back End

https://github.com/PredestinedPrivacy/cvedaily-rss
2•PredestinedPriv•12m ago•0 comments

"I scratched my own itch" isn't good enough (2025)

https://longform.asmartbear.com/scratched-my-own-itch/
2•ogundipeore•14m ago•0 comments

AI helped diagnose 18 children whose rare diseases had stumped doctors

https://www.nbcnews.com/tech/innovation/ai-boston-childrens-hospital-diagnose-rare-diseases-kids-...
2•mgh2•20m ago•0 comments

Phone Batteries Keep Getting Better. So Why Are We Always Charging?

https://www.cnet.com/tech/mobile/features/phone-battery-life-silicon-carbon-what-next/
2•giuliomagnifico•21m ago•0 comments

Vim Creator Bram Moolenaar's Forgotten Programming Language, Zimbu (2023)

https://thenewstack.io/vim-creator-bram-moolenaars-forgotten-programming-language-zimbu/
3•azhenley•25m ago•0 comments

The Chinese Room

https://plato.stanford.edu/entries/chinese-room/
2•goloco•29m ago•1 comments

DARPA Heavy Life Challenge

https://www.darpa.mil/research/challenges/lift
3•mhb•31m ago•0 comments

Amazon S3 annotations: attach rich, queryable context directly to objects

https://aws.amazon.com/blogs/aws/amazon-s3-annotations-attach-rich-queryable-context-directly-to-...
4•firasd•36m ago•0 comments

White House talks with Anthropic shift to setting AI security rules

https://www.politico.com/news/2026/06/18/white-house-talks-with-anthropic-shift-to-setting-ai-sec...
4•daniban•38m ago•1 comments

Why Global Chaos Can't Stop the World Cup [video]

https://www.youtube.com/watch?v=vn8w80Ms7-w
2•mgh2•39m ago•0 comments

Amazon employees say they're facing termination for backing data center limits

https://www.theverge.com/ai-artificial-intelligence/952180/amazon-seattle-data-center-moratorium-...
3•1vuio0pswjnm7•39m ago•0 comments

AI DevKit – The control plane for AI coding agents

https://ai-devkit.com/
2•hoangnnguyen•39m ago•0 comments

Meetup.com login appears to be exceeding its reCAPTCHA Enterprise quota

2•infl8ed•46m ago•0 comments

Why do politicians want AI to go faster?

https://www.irishtimes.com/technology/big-tech/2026/04/02/why-do-politicians-want-ai-to-go-faster/
2•1vuio0pswjnm7•50m ago•1 comments

Inside the Rage Machine [video]

https://www.bbc.com/video/docs/series/10294077
3•1vuio0pswjnm7•57m ago•1 comments

Show HN: A/B testing LLM silence with one system-prompt toggle

https://twitter.com/RayanPal_/status/2067816563995189631
9•rayanpal_•59m ago•0 comments

Show HN: Sakha – An AI employee – onboarding tool for businesses

https://www.sakha.one
2•ankleshh•1h ago•0 comments

Profile(v2.1.4) physics-aware optimizer for vLLM (31→470 tok/s on A100)

https://github.com/jungledesh/profile
2•jungledesh•1h ago•0 comments

Staarfruit.com

https://staarfruit.com/
4•BishrKhan•1h ago•0 comments

Slay The Spire 2 – Major Update #2 – v0.107.1

https://store.steampowered.com/news/app/2868840/view/710026912607505280
2•j-scott•1h ago•1 comments

Fable Converted Pylint to Rust

https://pypi.org/project/prylint/
3•adamraudonis•1h ago•0 comments

AI Agents for Product Managers

https://ferrix.ai/blog/ai-agents-for-product-managers
2•B_Nemade•1h ago•0 comments

ElevenLabs Routes Image and Video to Outside Models, and Disclaims What They Do

https://ledger.somantix.ai/posts/eleven-labs-routes-image-and-video-to-outside-models-and-disclai...
3•bdroopy•1h ago•0 comments

Let's Encrypt has been down most of today

https://letsencrypt.status.io/#2026
99•widdakay•1h ago•36 comments

The Plan? To Resurrect Every Person Who Ever Lived

https://jonasanksher.substack.com/p/the-plan-to-resurrect-every-person
3•paulpauper•1h ago•0 comments

Universal Blue

https://universal-blue.org/
3•Tomte•1h ago•0 comments

How Poor People Manifested Billionaire Escape Resorts

https://katherineruss.substack.com/p/how-poor-people-manifested-bunker
2•Nakedemperor•1h 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 :-)