frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

CIAM Weekly: An Interview with Brian Bell

https://ciamweekly.substack.com/p/an-interview-with-brian-bell
1•mooreds•51s ago•0 comments

Yukon Time Zone

https://en.wikipedia.org/wiki/Yukon_Time_Zone
1•The_Fox•58s ago•0 comments

The AWS SDK for .NET: A Code Quality Wake-Up Call

https://dotnettips.wordpress.com/2026/03/01/inside-the-aws-sdk-for-net-a-code-quality-wake-up-call/
1•SBArbeit•1m ago•1 comments

AI Won't Automatically Accelerate Clinical Trials

https://press.asimov.com/articles/ai-clinical-trials
1•gmays•2m ago•0 comments

Rembrandt's Vision of Zacharias in the Temple rediscovered after 65 years

https://www.bbc.com/news/articles/c1kgln0yg3po
1•1659447091•2m ago•0 comments

SerpApi Filed Motion to Dismiss Google's Lawsuit

https://daringfireball.net/linked/2026/03/02/serpapi-motion-to-dismiss
2•hartator•3m ago•0 comments

Show HN: I built an AI sound effects generator for game devs

https://www.audiomus.com/
3•rayediaz•3m ago•1 comments

Firefox 149 beta develops a split personality

https://www.theregister.com/2026/03/02/firefox_149_beta/
4•speckx•9m ago•0 comments

Show HN: IndieMe – AI for building music artist identity and release strategy

https://www.indie-me.ai/
2•JY058•11m ago•0 comments

Welcome (Back) to Macintosh

https://take.surf/2026/03/01/welcome-back-to-macintosh
2•Udo_Schmitz•11m ago•0 comments

Show HN: Ed – A modern take on ancient codebook technology

https://gitlab.com/here_forawhile/ed
1•smalltorch•13m ago•0 comments

SDK code mode shows SotA accuracy for operating APIs via MCP

https://www.stainless.com/blog/sdk-code-mode
2•kwhinnery•16m ago•0 comments

Ask HN: Would engineers be interested in a technical prep consultant?

1•TechPrepper•16m ago•1 comments

Show HN: Flowly – a macOS app that brings smooth, fluid scrolling to any mouse

https://flowlyapp.dev
2•simonij•17m ago•1 comments

18,000 lines to replace a screenshot

https://www.meetblueberry.com/blog/18000-lines-to-replace-a-screenshot
3•andrewmichael27•18m ago•3 comments

Evlog

https://www.evlog.dev/
1•handfuloflight•18m ago•0 comments

Show HN: Logcat.ai – Observability for Android, Telecom, Automotive System Logs

https://logcat.ai
1•vcodes•21m ago•0 comments

The Chinese Room Argument

https://plato.stanford.edu/entries/chinese-room/
2•1659447091•21m ago•0 comments

Dota 2 guide on net worth [video]

https://www.youtube.com/watch?v=VOX8TNDoA78
1•marysminefnuf•21m ago•0 comments

Show HN: BoardMint – upload a PCB, get a standards-backed issue report in ~30s

https://boardmint.io/how-it-works
1•pranavchahal•27m ago•0 comments

Show HN: Argus – A reproducible validation protocol for ML workloads (Free)

https://github.com/tongro2025/Argus
1•Convia•28m ago•0 comments

Show HN: Pianoterm – Run shell commands from your Piano. A Linux CLI tool

https://github.com/vustagc/pianoterm
5•vustagc•31m ago•0 comments

Why are Agents better at searching with grep than embeddings?

1•CShorten•33m ago•1 comments

Agents will pay like locals, not tourists

https://a16zcrypto.substack.com/p/agents-arent-tourists
1•gmays•35m ago•0 comments

Show HN: DevToolKit – Free, Client-Side Dev Tools (Chmod, Cron, Docker Compose)

https://dev-tools.devtoolsite.workers.dev/
1•THatch26•36m ago•0 comments

Show HN: Llmdoc – annotate codebase with LLM summaries only re-scan what changed

https://github.com/tristanMatthias/llmdoc
1•tristanMatthias•36m ago•0 comments

No Code by Hand

https://ashwch.com/no-code-by-hand-agentic-platform-acceleration.html
1•ashwch•36m ago•1 comments

Learning What Will Happen Next: Predictive Coding in Hyperspace

https://blog.brojo.ai/learning-what-will-happen-next-predictive-coding-in-hyperspace/
1•bojo•36m ago•0 comments

Autogenerate Docs from GitHub

https://www.mintlify.com/blog/auto-generate-docs-from-repos
1•denssumesh•37m ago•0 comments

Teaching Al to Understand What Words Mean

https://sublius.substack.com/p/teaching-ai-to-understand-what-words-d58
1•spacebacon•37m ago•0 comments
Open in hackernews

How to stop burning money on OpenClaw

https://clawsnewsletter.substack.com/p/how-to-stop-burning-money-on-openclaw
1•stosssik•2h ago

Comments

stosssik•2h ago
I've talked to over a hundred OpenClaw users over the past two months. Cost comes up in almost every conversation. People set up their agent, use it normally, and end up with bills they didn't expect. $141 overnight from a misconfigured heartbeat. $800 in a month on a multi-agent setup. $30 burned doing barely anything.

The article digs into why this happens and what you can do about it. The core problem is that without optimization, every request hits your most expensive model, your system context loads on every call, and your conversation history grows with each exchange. It adds up fast.

The fixes range from simple config changes to architectural decisions. Routing tasks to the right model instead of sending everything to Opus. Using skills instead of spinning up multiple agents. Leveraging prompt caching on the provider side. Keeping your context lean. Running local models for lightweight tasks. And tracking costs daily instead of discovering a surprise bill at the end of the month.

Two deployments documented 77% and 80% cost reductions through these approaches. All sources and community reports are linked at the bottom. Happy to answer questions.