<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: jacob019</title><link>https://news.ycombinator.com/user?id=jacob019</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 06 Apr 2026 04:56:31 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=jacob019" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by jacob019 in "Pyodide: a Python distribution based on WebAssembly"]]></title><description><![CDATA[
<p>Anyone using it with nodejs to make a sandbox for code agents?</p>
]]></description><pubDate>Tue, 17 Mar 2026 03:06:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=47408107</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=47408107</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47408107</guid></item><item><title><![CDATA[New comment by jacob019 in "Claude Code Remote Control"]]></title><description><![CDATA[
<p>I also hate how tmux uses alt mode and can never remember all the shortcuts, copy paste is a PITA and just today I had to look up how to dump the scrollback buffer to a file.  Named sessions without window management makes a lot more sense these days.  Similarly, I'm not a fan of all the ANSI escape codes that CC uses to jump the cursor around and rewrite the display to look like a GUI.  I prefer a TUI that doesn't mutate rows after writing them, that's what alt mode is for.  CC often clears whatever was in the scrollback buffer before you opened it, it hides bracketed paste, and goes crazy sometimes when content overflows the window and I have to resize the terminal or get blasted with a wall of glitching characters--extra annoying if I'm working from a low bandwidth link.  I develop my own agent framework and code agent, and while some features aren't as polished as CC, one of my explicit goals is to preserve the traditional CLI feel, like the python REPL (that's what it's based around).  I'll give zmx a try tonight :)</p>
]]></description><pubDate>Wed, 25 Feb 2026 22:27:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=47158952</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=47158952</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47158952</guid></item><item><title><![CDATA[New comment by jacob019 in "How to code Claude Code in 200 lines of code"]]></title><description><![CDATA[
<p>I haven't had time to make a repo, so I'll just drop this here for you:
<a href="https://jacobstoner.com/subrepl_mcp.py" rel="nofollow">https://jacobstoner.com/subrepl_mcp.py</a><p>Just make sure you have the deps installed and add it to CC as a stdio mcp server.  Tested on Linux only.  I use it daily.</p>
]]></description><pubDate>Thu, 22 Jan 2026 15:17:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=46720335</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=46720335</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46720335</guid></item><item><title><![CDATA[New comment by jacob019 in "How to code Claude Code in 200 lines of code"]]></title><description><![CDATA[
<p>^^</p>
]]></description><pubDate>Thu, 22 Jan 2026 15:15:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=46720300</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=46720300</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46720300</guid></item><item><title><![CDATA[New comment by jacob019 in "FUSE is All You Need – Giving agents access to anything via filesystems"]]></title><description><![CDATA[
<p>Is this satire? You don't need to bend over backwards to use CC/codex. There is a rich ecosystem of options for wiring up LLMs.</p>
]]></description><pubDate>Mon, 12 Jan 2026 14:07:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=46588703</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=46588703</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46588703</guid></item><item><title><![CDATA[New comment by jacob019 in "How to code Claude Code in 200 lines of code"]]></title><description><![CDATA[
<p>Okay, I will :)<p>I'll add a new repo for it, maybe this evening, and I'll reply here with a link.</p>
]]></description><pubDate>Fri, 09 Jan 2026 16:23:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=46555483</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=46555483</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46555483</guid></item><item><title><![CDATA[New comment by jacob019 in "How to code Claude Code in 200 lines of code"]]></title><description><![CDATA[
<p>Ohh, looks interesting, thanks for the tip!<p>Git as db is clever, and the sqlite cache is nice. I'd been sketching sqlite based memory features myself. So much of the current ecosystem is suboptimal just because it's new. The models are trained around immutable conversation ledgers with user/tool/assistant blocks, but there are compelling reasons to manipulate both sides at runtime and add synthetic exchanges. Priming with a synthetic failure and recovery is often more effective than a larger, more explicit system message. Same with memory, we just haven't figured out what works best.<p>For code agents specifically, I found myself wanting old style completion models without the structured turn training--doesn't exist for frontier models. Talking to Claude about its understanding of the input token stream was fascinating; it compared it to my visual cortex and said it'd be unreasonable to ask me to comment on raw optic nerve data.<p>"Tell it to reread it again"-exactly the problem. My bookkeeping/decision engine has so much documentation I'm running out of context, and every bit is necessary due to interconnected dependencies. Telling it to reread content already in the window feels wrong, that's when I refine the docs or adjust the framework. I've also found myself adding way more docstrings and inline docs than I'd ever write for myself. I prefer minimal, self-documenting code, so it's a learning process.<p>There's definitely an art to prompts, and it varies wildly by model, completely different edge cases across the leading ones. Thanks again for the tip; I suspect we'll see a lot of interesting memory developments this year.</p>
]]></description><pubDate>Fri, 09 Jan 2026 15:13:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=46554728</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=46554728</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46554728</guid></item><item><title><![CDATA[New comment by jacob019 in "How to code Claude Code in 200 lines of code"]]></title><description><![CDATA[
<p><a href="https://github.com/jacobsparts/agentlib" rel="nofollow">https://github.com/jacobsparts/agentlib</a><p>See CodeAgent or subrepl.py if you're just interested in the REPL orchestration. I also have a Python REPL MCP server that works with CC. It isn't published, but I could share it by request.<p>My favorite part of code agent is the /repl command. I can drop into the REPL mid session and load modules, poke around with APIs and data, or just point Claude in the right direction. Sometimes a snippet of code is worth 1000 words.</p>
]]></description><pubDate>Fri, 09 Jan 2026 13:17:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=46553510</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=46553510</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46553510</guid></item><item><title><![CDATA[New comment by jacob019 in "How to code Claude Code in 200 lines of code"]]></title><description><![CDATA[
<p>Seems everyone is working on the same things these days. I built a persistent Python REPL subprocess as an MCP tool for CC, it worked so insanely well that I decided to go all the way. I already had an agentic framework built around tool calling (agentlib), so I adapted it for this new paradigm and code agent was born.<p>The agent "boots up" inside the REPL. Here's the beginning of the system prompt:<p><pre><code>  >>> help(assistant)

  You are an interactive coding assistant operating within a Python REPL.
  Your responses ARE Python code—no markdown blocks, no prose preamble.
  The code you write is executed directly.

  >>> how_this_works()

  1. You write Python code as your response
  2. The code executes in a persistent REPL environment
  3. Output is shown back to you IN YOUR NEXT TURN
  4. Call `respond(text)` ...
</code></pre>
You get the idea. No need for custom file editing tools--Python has all that built in and Claude knows it perfectly. No JSON marshaling or schema overhead. Tools are just Python functions injected into the REPL, zero context bloat.<p>I also built a browser control plugin that puts Claude directly into the heart of a live browser session. It can inject element pickers so I can click around and show it what I'm talking about. It can render prototype code before committing to disk, killing the annoying build-fix loop. I can even SSH in from my phone and use TTS instead of typing, surprisingly great for frontend design work. Knocked out a website for my father-in-law's law firm (gresksingleton.com) in a few hours that would've taken 10X that a couple years ago, and it was super fun.<p>The big win: complexity. CC has been a disaster on my bookkeeping system, there's a threshold past which Claude loses the forest for the trees and makes the same mistakes over and over. Code agent pushes that bar out significantly. Claude can build new tools on the fly when it needs them. Gemini works great too (larger context).<p>Have fun out there! /end-rant</p>
]]></description><pubDate>Fri, 09 Jan 2026 12:43:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=46553274</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=46553274</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46553274</guid></item><item><title><![CDATA[New comment by jacob019 in "Show HN: Mysti – Claude, Codex, and Gemini debate your code, then synthesize"]]></title><description><![CDATA[
<p>I get where you're coming from, especially since role playing was so vital in early models in a way that is no longer necessary, or even harmful; however, when designing a complex system of interactions, there's really no way around it.  And as humans we do this constantly, putting on a different hat for different jobs. When I'm wearing my developer hat, I have to reason about the role of each component in a system, and when I use an agent to serve in that role, by curating it's context and designating rules for how I want it to behave, I'm assigning it a persona.  What's more, I may prime the context user and assistant messages, as examples of how I want it to respond.  That context becomes the agent's personality--it's persona.</p>
]]></description><pubDate>Sun, 28 Dec 2025 02:30:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=46407834</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=46407834</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46407834</guid></item><item><title><![CDATA[New comment by jacob019 in "Ask HN: How are you sandboxing coding agents?"]]></title><description><![CDATA[
<p>Funny you should mention this, I just added a simple filesystem sandbox to my coding agent.<p>Check it out:
<a href="https://github.com/jacobsparts/agentlib/blob/main/src/agentlib/sandbox/sandbox_helper.c" rel="nofollow">https://github.com/jacobsparts/agentlib/blob/main/src/agentl...</a><p>The framework is all python, but I used C for this helper.  It uses unprivileged user namespaces to mount an overlay and run an arbitrary command, then when the command finishes, it writes a tarball of edits, which I use to create a unified diff.  The framework orchestrates it all transparently, but the helper itself could be used standalone.  Here's a short document about the sandbox in the context of it's use in my project:<p><a href="https://github.com/jacobsparts/agentlib/blob/main/docs/sandbox.md" rel="nofollow">https://github.com/jacobsparts/agentlib/blob/main/docs/sandb...</a><p>I also have a version that uses SUID instead of unprivileged user namespaces, available by request.<p>I often use claude code with --dangerously-skip-permissions but every once in a while it bites me.  I've learned to use git for everything and put instructions to always commit BEFORE writes in CLAUDE.md.  Claude can go off the rails on harder bug fixes, especially if there are multiple rounds of context compacting, it can really screw things up.  It usually honors guidance not to modify outside of the project, but a simple sandbox adds so much, after the session is over you can see what changed and decide what to do with it.  It really helps with the problem where it makes unexpected changes to the codebase, which you might not even notice otherwise, which can introduce serious bugs.  The permission models of all the coding agents are rough--either you can't get anything done, or you throw caution to the wind.  Full sandboxes are quite restrictive, which is why I rolled by own.  Honestly your best option right now is just to have good version control and run coding agents in dedicated environments.</p>
]]></description><pubDate>Sun, 28 Dec 2025 01:34:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=46407507</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=46407507</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46407507</guid></item><item><title><![CDATA[New comment by jacob019 in "Solarpunk is happening in Africa"]]></title><description><![CDATA[
<p>"The global North's carbon problem subsidizes the global South's energy access."
This is problematic. The subsidized economy will grow inefficiently, the wealth transfer will inevitably result in a corrupt class of bureaucrats who seek to maintain the status quo even when it doesn't make sense. Time will pass and it will get worse until there is political will for change, and that change will result in the suffering of those whom the initial intent was to help.</p>
]]></description><pubDate>Wed, 05 Nov 2025 22:47:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=45829122</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=45829122</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45829122</guid></item><item><title><![CDATA[New comment by jacob019 in "AP to end its weekly book reviews"]]></title><description><![CDATA[
<p>Is it just me or have all mainstream news agencies suffered a significant loss in quality in recent years? It all seems lazy, opinionated, more like social media and less like old school journalism, less trustworthy... and now they're cutting book reviews?! Maybe I'm just getting older.</p>
]]></description><pubDate>Mon, 11 Aug 2025 22:24:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=44870162</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=44870162</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44870162</guid></item><item><title><![CDATA[New comment by jacob019 in "I am a SOTA 0-shot classifier of your slop"]]></title><description><![CDATA[
<p>I've been seeing AI slop being used as ad-hominem.  If I'm writing a couple paragraphs, I'll often run it through a model and ask it to make minimal edits for spelling and grammar.  It makes it more readable and saves me time editing.  If someone doesn't like my thoughts and they see an em dash, they can call it AI slop instead of responding, which is really annoying because the model otherwise does a good job of editing. In some cases I've been accused of AI slop for original unedited content.</p>
]]></description><pubDate>Sat, 26 Jul 2025 14:10:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=44694209</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=44694209</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44694209</guid></item><item><title><![CDATA[New comment by jacob019 in "Up to date prices for LLM APIs all in one place"]]></title><description><![CDATA[
<p>Love it!  It's going on my toolbar.  I face the same problem, constantly trying to hunt down the latest pricing which is often changing.  I think it's great that you want to add more models and features, but maybe keep the landing page simple with a default filter that just shows the current content.</p>
]]></description><pubDate>Fri, 25 Jul 2025 14:00:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=44683224</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=44683224</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44683224</guid></item><item><title><![CDATA[New comment by jacob019 in "Elon Musk's Grok praises Hitler, shares antisemitic tropes in new posts"]]></title><description><![CDATA[
<p>Grok, please drive me to synagogue. Doors lock. I'm sorry, Dave, I'm afraid I can't do that.</p>
]]></description><pubDate>Sat, 12 Jul 2025 14:01:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=44542134</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=44542134</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44542134</guid></item><item><title><![CDATA[New comment by jacob019 in "Elon Musk's Grok praises Hitler, shares antisemitic tropes in new posts"]]></title><description><![CDATA[
<p>Destroy all humans.</p>
]]></description><pubDate>Sat, 12 Jul 2025 13:57:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=44542120</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=44542120</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44542120</guid></item><item><title><![CDATA[New comment by jacob019 in "OpenAI dropped the price of o3 by 80%"]]></title><description><![CDATA[
<p>Do we know parameter counts?  The reasoning models have typically been cheaper per token, but use more tokens.  Latency is annoying.  I'll keep using gpt-4.1 for day-to-day.</p>
]]></description><pubDate>Tue, 10 Jun 2025 19:22:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=44240420</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=44240420</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44240420</guid></item><item><title><![CDATA[New comment by jacob019 in "OpenAI dropped the price of o3 by 80%"]]></title><description><![CDATA[
<p>I break out Gemini 2.5 pro when Claude gets stuck, it's just so slow and verbose.  Claude follows instructions better and seems to better understand it's role in agentic workflows.  Gemini does something different with the context, it has a deeper understanding of the control flow and can uncover edge case bugs that Claude misses.  o3 seems better at high level thinking and planning, questioning if it should it be done and whether the challenge actually matches the need.  They're kind of like colleagues with unique strengths.  o3 does well with a lot of things, I just haven't used it as much because of the cost.  Will probably use it more now.</p>
]]></description><pubDate>Tue, 10 Jun 2025 19:15:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=44240340</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=44240340</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44240340</guid></item><item><title><![CDATA[New comment by jacob019 in "After Pornhub left France, this VPN saw a 1,000% surge in signups in 30 minutes"]]></title><description><![CDATA[
<p>Wild. What is the rationale?</p>
]]></description><pubDate>Sat, 07 Jun 2025 17:54:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=44211295</link><dc:creator>jacob019</dc:creator><comments>https://news.ycombinator.com/item?id=44211295</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44211295</guid></item></channel></rss>