frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Evolution of Agents: From Context Engineering to Long-Running Harnesses

https://jinyansu1.github.io/blog/2026/07/agent-context-engineering-long-running-harness/
1•vinhnx•1m ago•0 comments

Tea App Checker

https://teaappchecker.com
1•thefirstname322•5m ago•0 comments

Cisco Killed Smartlook – Good Riddance for Expensive Pricing

https://www.cisco.com/c/en/us/products/collateral/software/smartlook-com-eol.html
1•mrr7337•8m ago•0 comments

ChorusGraph – Agent graph runtime (not a LangGraph wrapper) with built-in cache

https://github.com/insightitsGit/ChorusGraph
1•insightits•9m ago•0 comments

Cargo-nextest: 3x faster than cargo test, per-test isolation, first-class CI

https://nexte.st/
1•nateb2022•21m ago•0 comments

Adam is the top OpenCode contributor by line count visualized

https://app.principal-ade.com/anomalyco/opencode
1•fernando-ram•23m ago•0 comments

The Oldest Problem That Was Never Solved

https://www.nirajgohil.com/essay/the-oldest-problem/
1•Niraj1513•30m ago•0 comments

What Is AI Native Development?

https://brunelly.com/articles/what-is-ai-native-development
2•rihabzt•34m ago•0 comments

No Cost EMI: Full Guide, Eligibility, Benefits and Details – SMFG India Credit

https://www.smfgindiacredit.com/knowledge-center/what-is-no-cost-emi.aspx
1•saumyaraut11•35m ago•0 comments

Underspecification Does Not Imply Incoherence in LLM Code Generation

https://arxiv.org/abs/2607.01953
1•ilreb•36m ago•0 comments

Who runs this propaganda machine?

https://clocktowerx.com/
1•smalltorch•38m ago•1 comments

How to Follow a Drummer

https://drummate.app/blog/how-to-follow-a-drummer
1•sashyo•39m ago•0 comments

FIFA lifts Balogun's World Cup suspension after Trump calls Infantino

https://www.france24.com/en/sport/20260705-fifa-lifts-balogun-world-cup-suspension-trump-call
3•Tomte•56m ago•0 comments

Learn Faster with Your Personal AI Teacher

https://aischoolbuilder.com/school/school-1786
1•bokeke1•59m ago•0 comments

The final voyage of USS Nimitz

https://news.usni.org/2026/07/03/uss-nimitz-an-aircraft-carriers-final-journey
5•Gaishan•1h ago•1 comments

4D-printing method creates lighter, faster-spinning wind turbine blades

https://www.concordia.ca/cunews/encs/2026/07/02/research-new-4d-printing-method-creates-lighter-f...
1•geox•1h ago•0 comments

How AI Poisons Creativity [video]

https://www.youtube.com/watch?v=WeCSzEtZcUw
3•g-andrade•1h ago•0 comments

Cewsco – a multimodal AI assistant powered by Dravik

https://cewsco.com/
1•kalkalka•1h ago•0 comments

Stop Patching the Dammed IoT Kernel – Native Immunity Is the Only Way Out

https://twitter.com/i/status/2073850360771612865
1•xxBoson•1h ago•0 comments

Fable 5 Used to Port Command and Conquer: Generals Zero Hour to iOS

https://twitter.com/ammaar/status/2073501877753323772
1•beatthatflight•1h ago•0 comments

Oatmeal Spice: Interesting Procedurally Generated Output

https://www.boristhebrave.com/2026/07/05/oatmeal-spice/
1•lispybanana•1h ago•0 comments

Hideo Kojima on PlayStation killing discs, 'frightened' for future of ownership

https://www.videogameschronicle.com/news/hideo-kojima-really-sad-about-playstation-killing-discs-...
2•thunderbong•1h ago•0 comments

Bad to worse at NSF? (June 2026 edition)

http://nanoscale.blogspot.com/2026/06/bad-to-worse-at-nsf-june-2026-edition.html
1•osnium123•1h ago•0 comments

Apple sells me a MacBook to deliver $1700; cancels 5 days later quoting $2000?

7•aerodog•1h ago•2 comments

US Car Payments Hit a Record $777 a Month as Down Payments Drop

https://www.bloomberg.com/news/articles/2026-07-01/us-car-payments-hit-a-record-777-a-month-as-do...
3•mattas•1h ago•2 comments

Mondegreen

https://en.wikipedia.org/wiki/Mondegreen
3•JKCalhoun•1h ago•0 comments

YouTube urges creators to fight proposed UK algorithm changes

https://www.dexerto.com/entertainment/youtube-urges-creators-to-fight-proposed-uk-algorithm-chang...
1•thesmtsolver2•1h ago•0 comments

What should a personal website be?

https://ratfactor.com/cards/personal-website
2•vinhnx•1h ago•1 comments

A Novel Look at Error Handling in Rust

https://jtjlehi.github.io/2026/06/25/novel-rust-error-handling.html
2•vinhnx•1h ago•0 comments

Whyline – company memory engine (SQLite, BM25, MCP for Cursor)

https://github.com/Sunradiance/whyline
1•sunradiance•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 :-)