frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude and ChatGPT Connectors Change Every 9 Minutes

https://www.promptarmor.com/resources/claude-and-gpt-connectors-change-every-9-minutes
1•yearnforcompute•2m ago•0 comments

The guys you call when AI breaks your brain

https://thehustle.co/originals/meet-the-guys-you-call-when-ai-breaks-your-brain
1•paulpauper•3m ago•0 comments

Occupational Licensing Around the World

https://marginalrevolution.com/marginalrevolution/2026/07/occupational-licensing-around-the-world...
1•paulpauper•3m ago•0 comments

Australian Wages Collapsing

https://twitter.com/Birdyword/status/2076760220500443586
1•paulpauper•4m ago•0 comments

Colorado could make natural gas a constitutional right

https://insideclimatenews.org/news/13072026/colorado-right-to-natural-gas-amendment/
2•logickkk1•5m ago•0 comments

StubHub's 'marketplace for fans' is run by a mass scalper, SEC filings reveal

https://www.cbc.ca/news/world/stubhub-ceo-class-action-scalping-9.7268987
1•b112•6m ago•0 comments

Vibe Pad: A 4-Button Bluetooth Macro Keyboard with a Mic for AI Coding

https://www.instructables.com/Vibe-Pad/
1•m_kos•7m ago•0 comments

How to Keep a TV Show Relevant for 70 Years

https://www.rollingstone.com/tv-movies/tv-movie-features/pbs-the-open-mind-70-years-alexander-hef...
1•throw0101d•8m ago•1 comments

I built a fast, ad-free metro route planner for India

https://trackmymetro.com
1•heyyyshiv•9m ago•0 comments

MenteDB, memory for AI agents (7x fewer tokens than mem0, reproducible)

https://mentedb.com/compare/mem0
1•mentedb•10m ago•0 comments

Telegram's t.me domain has been reinstated

https://twitter.com/domainME/status/2077018499734520110
2•sedatk•11m ago•1 comments

Duckman

https://en.wikipedia.org/wiki/Duckman
1•doener•12m ago•0 comments

Learning from experience instead of curated datasets

https://oaklab.ai/posts/learning-from-experience-instead-of-curated-datasets
1•ray__•13m ago•0 comments

Canada's electronic spy agency conducted cyberattacks on fentanyl brokers

https://www.theglobeandmail.com/politics/article-canadas-electronic-spy-agency-conducted-cyberatt...
1•gnabgib•13m ago•0 comments

The Memory Heist

https://www.ayush.digital/blog/the-memory-heist
1•eieio•13m ago•0 comments

Icons of Aviation History: The X-15 Rocket Plane

https://lflank.wordpress.com/2026/07/14/icons-of-aviation-history-the-x-15-rocket-plane/
2•dxs•13m ago•0 comments

Show HN: Alluvia – mine your Claude Code/Cursor/ChatGPT history, locally

https://github.com/dylanp12/alluvia
1•dp12•14m ago•0 comments

Show HN: An RSS reader with a configurable recommendation engine

https://sprinklz.io/feed/home
1•sammy0910•15m ago•0 comments

Scenic Route Option on Maps

https://www.halfbakery.com/idea/Scenic_20Route_20Option_20on_20Maps#1784051574
1•samizdis•15m ago•0 comments

RemotePower 6.2 – self-hosted fleet manager, agent now a real service on Windows

https://github.com/tyxak/remotepower/
1•tyxak•15m ago•0 comments

AI won't take your job. You may get fired anyway

https://radicalpolitics.org/2026/07/14/the-reason-why-ai-wont-be-taking-your-coding-job/
1•johanneswilm•16m ago•0 comments

Realistrator – Illustrator, but it enforces gravity and drying times

https://realistrator.art/
1•int_impractical•16m ago•0 comments

BlocWeave: Pay-as-you-go agentic coding for $0.15 a session

https://blocweave.com/
3•ggap•16m ago•0 comments

Revolut- Europe's $20B Neo-Banking Giant

https://attackcapital.substack.com/p/revolut-europes-20bn-neo-banking
1•janandonly•18m ago•0 comments

I asked all 4 frontier models to make Minecraft

https://jquave.substack.com/p/i-asked-the-top-4-models-to-write
1•jquave•18m ago•1 comments

Open Models are ready for agents. Their APIs are not

https://blog.mozilla.ai/open-models-are-ready-for-agents-their-apis-are-not/
2•lhoss•18m ago•0 comments

Telstra outage blamed on known bug in obsolete server

https://ia.acs.org.au/article/2026/telstra-outage-blamed-on-known-bug-in-obsolete-server.html
2•cube00•20m ago•0 comments

Show HN: I Built OpenClaw for Stocks

https://fn2.ai/
1•oceanplexian•20m ago•0 comments

Show HN: An Interactive Guide for Castlevania II: Simon's Quest

https://theultimatesimonsquestguide.com/
1•baclap•20m ago•0 comments

Video Packaging in Streaming Cuts Costs and Latencies

https://www.red5.net/blog/how-video-packaging-in-streaming-cuts-costs-and-latencies/
1•mondainx•21m 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 :-)