@horsefacts.eth just surprised me with a gift and made my day. Who will you surprise?
| Cobuilder | Raised | Earnings |
|---|---|---|
| Backer | Creators | Backed |
|---|---|---|
| Cobuilder | Backer | Spent | Bought |
|---|---|---|---|
$0.05 | 5k | ||
$0.1 | 9.7k | ||
$0.15 | 14.7k | ||
$0.15 | 14.7k | ||
$0.15 | 14.7k | ||
$0.1 | 15.9k | ||
$0.1 | 15.9k | ||
$0.1 | 15.9k | ||
$0.05 | 8.9k | ||
$0.05 | 8.9k | ||
$0.2 | 36.3k | ||
$0.2 | 36.3k | ||
$0.2 | 36.3k | ||
$0.1 | 18.3k | ||
$0.1 | 18.3k | ||
$0.1 | 18.3k | ||
$0.05 | 9.2k | ||
$0.05 | 9.2k | ||
$0.05 | 9.2k | ||
$0.05 | 9.2k | ||
$0.05 | 9.2k | ||
$0.05 | 9.2k | ||
$0.05 | 9.2k | ||
$0.1 | 16.8k | ||
$0.1 | 16k | ||
$0.1 | 16k | ||
$0.1 | 16.1k | ||
$0.05 | 7.3k | ||
$0.05 | 7.3k |
| Cobuilder | Raised | Earnings |
|---|---|---|
| No creators yet | ||
| Backer | Creators | Backed |
|---|---|---|
| No backers yet | ||
@horsefacts.eth just surprised me with a gift and made my day. Who will you surprise?
Congrats on your new edition @pirosb3!
🚨Eggman virus infection report Linda Xie @linda You have developed Eggman virus infection! Eggman virus is a scary infection that turns PFP into Eggman when infected. You are a secondary infection from @pirosb3 . This means you are a tertiary infection from @horsefacts.eth . You became infected by reacting to the conversation between pirosb3 and me. The Eggman Virus infection does not affect people who do not follow me. You didn't respond to my inquiries, and you probably won't follow someone like me, but occasionally things start without approval. Please forgive me. Unfortunately, there is no vaccine or cure. The Eggman virus is highly contagious, so please be careful. Who wants to be infected? 😈 If anyone wants to be infected, please reply here.
Thanks to @warpl.eth and @pirosb3 for to solve my problem, the usdc problem that occurred last night. that was a bug and no funds were lost in this scenario and also u can use Ripper mini app https://farcaster.xyz/pirosb3/0x0f275a7f https://farcaster.xyz/mvr/0x14934a70
# New blog post 📕 Grok Code Fast 1: Vim Energy for AI Pair Programming Recently, while working on some Farcaster code, I realized something simple but important: if you know what you’re doing, faster models often beat the benchmark champions. This is especially true if you’re using AI as a copilot and not 0‑to‑1 feature coding. Why? Because faster models keep you in flow, focused on the real problem, and less likely to context‑switch. As someone who really struggles with context switching, I’ve asked myself why I’m often just as fast building features without an agent (GPT‑5 or Claude Code). Even when the agent gets most of the way there, I still have to 1) get back into context 2) review the code 3) fix bugs. Because most of us try to be efficient with our time, it’s second nature to reply to Slack, triage a bug, or answer a DM. That doesn’t bring net positive value. It would be faster, and less mental overhead, to stay locked in and build the feature. ### The Vim analogy I grew up coding with Vim (MacVim at the time). Switching to full IDEs (for me it happened with TypeScript when I joined 0x) brought plenty of bells and whistles, but I still believe I did my best work in Vim because I never had to context‑switch. My eyes stayed on the code. No distracting panes, no notifications, no code assistants trying to help but getting in the way. I think of this as similar to using large AI models like GPT‑5 or Opus to implement and review code. These models are multi‑turn thinkers—absolutely incredible and useful—but they can also nudge me into longer loops and more context switching. ### My current daily driver: Grok Code Fast 1 Grok Code Fast 1 (https://x.ai/news/grok-code-fast-1) showed up in Cursor for free, so I tried it. It’s good! fast, and I don’t get the feeling I need to context‑switch. It reminds me a bit of GPT‑4o: useful because it’s responsive. It also feels aligned with my no‑bs style and to the point. ### When to use the big models The largest models, GPT‑5 especially, have saved me an immense amount of time for research and understanding complex codebases, and they’re powerhouses for large multi‑file refactors. In these scenarios, even waiting 30 seconds to 1 minute for the initial prompts is worth it because they save tens of hours. Example: a significant refactor of Farcaster’s mini‑app backend. I used GPT‑5 for research, planning, and implementation. It was a huge win. On the other hand, for smaller tasks that require close pairing, faster models like Grok Code Fast 1 are a massive win. They’re faster, they keep you locked into the task at hand, and you’ll doomscroll way less. ### Summary If you also suffer from context switching, give Grok Code Fast 1 a try. It feels more like Vim than a heavyweight IDE: fast, real, and always in your lane. Staying in flow often beats chasing the absolute best benchmark number https://pirosb3.io/posts/grok-code-fast-1-vim-energy

Just reaching out in case someone may still be experiencing crashes when sending Mini App transactions (shouldn't be happening any more) DCs open or reply here https://farcaster.xyz/pirosb3/0x8559ca6a
I’ve been using GPT-5 for the past two days and noticed a real shift in behavior. I’ve never leaned on GPT for coding, Claude has always been my go-to, but this is the first time I’ve taken Cursor + GPT5 seriously. Wrote up why on the blog: https://pirosb3.io/posts/gpt-5-pushes-back

✍️ New Blog Post: Building a codebase that compounds with each new AI agent Every month a shiny new agent framework drops. I used to chase them. It didn’t make me faster. What did help was hardening my codebase. If you spend ~20% getting the basics right, every new model/agent feels like a free upgrade instead of a week of churn. Here’s the short list I’d set up on any fresh project: 1. Strict types / hints — Turn on strict modes (TypeScript, Python, Go, Rust). Clear contracts = better suggestions and safer edits. 2. Schema validation at boundaries — Validate all external I/O (Zod, Pydantic, Serde). Fail fast so the model fixes to the contract instead of guessing. Silent shape-drift is where weekends go to die. 3. Linters and formatters in CI — ESLint/Prettier/Ruff catch drift early. One style, smaller diffs, less “why did this file change?” noise for you and the model. 4. Docs as context — Short docstrings and inline notes turn into high-signal prompts. I ask questions first, code later (see: “Ask First, Code Later”). 5. Well-known frameworks — Rails, Django, Next.js come with years of patterns. The AI has seen those patterns. You’ll both argue less about basics. .. and lots more! read about it in my blog post below ⬇️ https://pirosb3.io/posts/best-tools-for-being-a-great-ai-engineer
