RSSAmplifier

Blog

PaulBrower.Codes

Recent content on PaulBrower.Codes

paulbrower.codesRSS feed ↗11 posts

Latest posts

On The Crypto Podcast

I enjoyed sitting down with Roy Coughlan on The Crypto Podcast to talk about Casa, Bitcoin self-custody, multisig security, and the ways AI is changing the threat model for people protecting their wealth. You can listen or watch the episode through the player below, or open it directly on Apple Podcasts.

A ladder for coding agents

Most AI coding setups choose a model before the task produces any evidence. A router takes a prompt and selects a model. For a straightforward task, it can choose something cheap. For a difficult task, it can send the work to an expensive model. That is better than sending every task to the same expensive model. The choice still happens too soon. A task that looks routine can need a careful…

Agentic Engineering, Part 3: Team Adoption, Leverage, and the New Engineering Bar

This is Part 3 of a three-part series on building an AI development harness. Part 1 covered the harness as a concept. Part 2 covered feedback loops, hooks, and verification. Part 1 was about one engineer and one harness. Part 2 was about making that harness produce evidence instead of asking for trust. This post is about the team. The moment more than one person depends on the harness, it stops…

Agentic Engineering, Part 2: Feedback Loops, Hooks, and Verification

This is Part 2 of a three-part series on building an AI development harness. Part 1 covered the harness as a concept. Part 3 will cover team adoption and the new engineering bar. In Part 1, I argued that the system around the agent matters more than the agent itself. This post is about the part of that system that does the most work: the feedback loops. Without them, the agent is writing code in a…

Agentic Engineering, Part 1: Building your AI harness

This is Part 1 of a three-part series on building an AI development harness. Part 2 covers feedback loops, hooks, and verification. Part 3 covers team adoption and the new engineering bar. For the last year or so, most of the AI development conversation I’ve heard has been about models and coding assistants. Which model is smartest. Which IDE has the best autocomplete. Which prompt got the…

About

I’m Paul — an engineering leader and hands-on architect based in Boulder, CO, with 18+ years building secure mobile, backend, and crypto systems. Today I’m Director of Engineering at Casa, leading a 12-person team and driving AI-first development workflows across engineering and product. Before that I spent six years there as a Staff Engineer, architecting Android key-management…

Setting Bear Traps in the Dark Forest

Some background: Transactions to insecure contracts on the Ethereum blockchain can be front run by attentive parties via bots in order to steal funds. See https://www.paradigm.xyz/2020/08/ethereum-is-a-dark-forest for the canonical example. These bots are the monsters in the “Dark Forest”. This blog post details my attempt to subvert and co-opt these bots in attempt to get them to send…

Engineering Problems - Understanding Blockchain Technology

You needn’t look far to see the hate for blockchain technology. I run into it quite often in a place I used to love, Hacker News. I have had a hard time with this over the years. I often go there as a fellow skeptic to see smart people poke holes in the fluff of the goings-on of the world around us. It’s fun in the way a skeptic likes fun, at the expense of the hopeful.

Celo Hackathon Project - Hello Celo

Hello Celo is a POC permissionless, uncensorable micro-blogging platform. It was an entry in the 2021 Celo Blockchain Hackathon. Some features: Standard micro-blogging features create profile post updates with pictures follow people uncensorable ( the location of content is posted to the blockchain and actual content is posted to IPFS ) easy onboarding ( uses meta-transactions in order to allow…

Ethereum File Hub

Ethereum File Hub is a Proof-of-Concept implementation of a payment channel used to purchase digital files between two parties who do not trust each other and does not require a third party. It was an entry in the EthDenver 2018 hackathon. You can read this blog post or watch pretty much the same content via the video: Background Currently, if you want to buy or sell some digital content on the…

Permissionless Blockchain Programming

Leverage the blockchain so your app needs neither permission nor forgiveness. This is my quick adventure into using NodeJS and the Ethereum blockchain to write an unstoppable app. TLDR; I built an app that takes the Gitcoin Bounties and creates an RSS Feed using NodeJS, Web3JS, AWS S3, and AWS Lambda Anyone who has deployed an app to the Google Play Store or the Apple App Store or built something…