HackerTrans
TopNewTrendsCommentsPastAskShowJobs

wbnns

21 karmajoined 10 ปีที่แล้ว
Apps & aerospace • ran bitcoin.org, led teams at Coinbase • editor of Mastering Bitcoin & Mastering Ethereum • building money machines & forever systems

Submissions

Mru: A Fault-Tolerant Operating System for Thousand-Year Autonomous Operation

zenodo.org
3 points·by wbnns·เดือนที่แล้ว·0 comments

Time Travel: Temporal Mutability in the Absence of Hardware [pdf]

wbnns.com
1 points·by wbnns·4 เดือนที่ผ่านมา·0 comments

Show HN: Claude Extender – Autonomous Agent Management for Claude Code

github.com
2 points·by wbnns·5 เดือนที่ผ่านมา·1 comments

Show HN: Submit to Hacker News | Browser Extension

hn.wbnns.com
1 points·by wbnns·10 เดือนที่ผ่านมา·7 comments

comments

wbnns
·เมื่อวานซืน·discuss
Congrats Yahia, cool to see all the progress and momentum behind what you all are building.
wbnns
·เมื่อวานซืน·discuss
Great game, well done
wbnns
·เดือนที่แล้ว·discuss
[flagged]
wbnns
·5 เดือนที่ผ่านมา·discuss
Hey HN, I built Claude Extender because I wanted a way to run multiple instances of Claude Code (e.g. agents). The core idea: agents are markdown files. The YAML frontmatter defines schedule, tools, cost limits, and notifications. The markdown body is the instruction Claude follows. A daemon runs in the background, spawning claude -p when agents are due.

There are three execution modes:

* Scheduled, cron-based. For example, my daily email triage runs at 6 AM, processes ~50 emails, archives the noise, and sends me a Telegram summary before I wake up.

* Watcher, event-driven. A cheap check script (JS/Python) polls for changes. Only triggers Claude when something actually happened.

* Persistent, long-running sessions with heartbeats, checkpoints, and restart policies.

Tools use MCP (Model Context Protocol) servers that you write and control. No plugin marketplace, no third-party code touching your credentials. Cost tracking is first-class. Every run logs its cost in USD. Per-run limits, daily budgets, monthly caps. The daemon pauses everything if you hit your budget. This matters when agents run unsupervised.

Everything is plain text, agent definitions, run logs, memory, cost ledgers. git diff your agents, grep your run history. I'm currently running this on a $5/mo Hetzner VPS.

Requirements: Node.js 20+ and the Claude Code CLI.

Anyhow, hope it's helpful and happy to answer any questions.
wbnns
·7 เดือนที่ผ่านมา·discuss
The collected bounty on this should have been so much higher than $14K :/
wbnns
·10 เดือนที่ผ่านมา·discuss
Would you have said the same if I told you last year that the president and first lady would each have a memecoin?
wbnns
·10 เดือนที่ผ่านมา·discuss
Debatable but IMO Lightning is still nascent even to this day. There is no real large ecosystem of interactive web applications available in-browser that you can build 402 offerings on top of. The EVM is light years ahead.

I'm by no means against Lightning, it's just got a long road of ecosystem, development and better UX ahead of it before we see general mainstream adoption. At the moment, bitcoin's killer feature is holding bitcoin. Most people don't know what Sats are. There are few bitcoin-payable apps. Few stable assets that remove volatility for every day payments like you would need with 402. Stuff like that.
wbnns
·10 เดือนที่ผ่านมา·discuss
It's pretty trivial to set up, here's a link to the docs: https://x402.gitbook.io/x402

Transactions confirm every 2 seconds on Base, and preconfirm even faster (every 200ms); there's no lag from a peer to peer payments perspective since they settle so quickly.

Through account abstraction and spend permissions, you also don't have to wait and authorize every single payment. It's a customizable from a developer perspective depending on how they want to build out their application.
wbnns
·10 เดือนที่ผ่านมา·discuss
Yep! Here: https://www.x402.org/ecosystem
wbnns
·10 เดือนที่ผ่านมา·discuss
It's really difficult to build agentic applications on top of Bitcoin. It's generally possible throughout the EVM however, which is many networks, not just Base. Base won't be the only EVM-compatible network that x402 utilizes.
wbnns
·10 เดือนที่ผ่านมา·discuss
> The protocol boast "no fee" but that's deceptive: if it's based upon a blockchain, there will be transaction fees.

These days many transaction types onchain are completely free and subsidized because gas costs are subcent[1].

x402 functions predominantly on L2 networks like Base, where individual tx costs between agents are generally not a factor.

[1] https://www.gasfees.io/
wbnns
·10 เดือนที่ผ่านมา·discuss
You're absolutely right!
wbnns
·10 เดือนที่ผ่านมา·discuss
Cheers, yes, this is inspired by it.
wbnns
·10 เดือนที่ผ่านมา·discuss
> A blockchain is the world's slowest database.

It's dependent on how performant the underlying protocol is, not all blockchains are the same.
wbnns
·10 เดือนที่ผ่านมา·discuss
I think we'll see this soon, perhaps on Tempo, the new L1 backed by Stripe and Paradigm.
wbnns
·10 เดือนที่ผ่านมา·discuss
v1.4.0: https://github.com/wbnns/submit-to-hacker-news/releases/tag/...
wbnns
·10 เดือนที่ผ่านมา·discuss
Additional updates alongside the change: https://github.com/wbnns/submit-to-hacker-news/commit/d9e027...
wbnns
·10 เดือนที่ผ่านมา·discuss
Thanks so much, I've just refactored to do exactly this, based on your comment: https://github.com/wbnns/submit-to-hacker-news/commit/1afd66...
wbnns
·10 เดือนที่ผ่านมา·discuss
Hi all, I built this browser extension as someone who reads HN daily but doesn't post much. I want to be more active and thought this would be a fun weekend side project. Would appreciate any feedback. Particularly interested in hearing about HN pain points this could be improved to address.

This extension is inspired by the 'post to HN' bookmarklet and does three main things...

1. Smart title optimization: automatically removes site names, converts "10 Ways to Build X" to "How to Build X", and follows HN's title guidelines / recommendations for best practices

2. Duplicate detection: scans 1000+ recent HN stories to find existing submissions (links to the most upvoted, canonical version if found)

3. Built-in HN guidelines: helps people like me who want to contribute, be mindful of doing it the right way

It's pure vanilla JavaScript with no external dependencies, uses HN's official Firebase API for duplicate checking, and only requests activeTab permission. Works on Chrome, Firefox, Edge, and Brave.

It's open source (MIT license) and privacy-first and the only data it accesses is your current tab's URL and title when you explicitly use it: https://github.com/wbnns/submit-to-hacker-news

You can install it by downloading from GitHub and loading the appropriate folder into your browser's developer mode. No accounts or setup required.
wbnns
·10 เดือนที่ผ่านมา·discuss
> a blockchain is not a bank, it's decentralized

Not all blockchains are decentralized, it depends on the consensus mechanism