<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: brendoncarroll</title><link>https://news.ycombinator.com/user?id=brendoncarroll</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 18 Aug 2026 17:58:30 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=brendoncarroll" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by brendoncarroll in "Ask HN: What are tools you have made for yourself since the advent of AI?"]]></title><description><![CDATA[
<p>No Nonsense Containers: a simple Linux containerization tool, secure by default, with support for presets.<p><a href="https://github.com/brendoncarroll/nnc" rel="nofollow">https://github.com/brendoncarroll/nnc</a><p>I use it for running agents locally.<p><pre><code>  nnc run /usr/bin/opencode --preset agent
</code></pre>
You can make your own presets (which nnc looks for in ~/.config/nnc/presets) or use one from the standard library<p><a href="https://github.com/brendoncarroll/nnc/tree/master/presets" rel="nofollow">https://github.com/brendoncarroll/nnc/tree/master/presets</a><p>Presets are written in Jsonnet, and resolve to a list of things to pass through from the parent process into the container.
Presets can reference other presets, so you can build up arbitrary rules for passing files and devices into containers, give those rules a name, and reference them later.</p>
]]></description><pubDate>Tue, 09 Jun 2026 14:03:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=48461291</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=48461291</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48461291</guid></item><item><title><![CDATA[New comment by brendoncarroll in "jj – the CLI for Jujutsu"]]></title><description><![CDATA[
<p>Thanks for the link.<p>It looks like this treats files as blobs just like Git, and trees as single objects which fit in memory.  Assuming that is a correct understanding, this core abstraction would need to change to handle large files and directories well.<p>All the well known version control systems do this though, and it simplifies the system significantly.  It's the right model for source code, but it doesn't translate well to arbitrary data.</p>
]]></description><pubDate>Tue, 14 Apr 2026 16:03:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=47767442</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=47767442</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47767442</guid></item><item><title><![CDATA[New comment by brendoncarroll in "jj – the CLI for Jujutsu"]]></title><description><![CDATA[
<p>I've heard that jj has support for non-git backends?
Can anyone comment on how difficult it would be to add support for another backend, any docs or examples?<p>I have a project[0] that does the large file thing well, but is missing most of the version control porcelain.
I've been looking for the path of least resistance to integrate it into something with a larger user base.<p>[0] <a href="https://github.com/gotvc/got" rel="nofollow">https://github.com/gotvc/got</a></p>
]]></description><pubDate>Tue, 14 Apr 2026 15:38:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=47767089</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=47767089</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47767089</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Ask HN: What are you working on? (February 2026)"]]></title><description><![CDATA[
<p>I'm working on Got, version control like Git, but for files and directories of any size and E2E encrypted.<p><a href="https://github.com/gotvc/got" rel="nofollow">https://github.com/gotvc/got</a><p>Got is built on Blobcache, which is a general-purpose transactional storage layer and E2E encrypted backend.<p><a href="https://blobcache.io" rel="nofollow">https://blobcache.io</a><p><a href="https://github.com/blobcache/blobcache" rel="nofollow">https://github.com/blobcache/blobcache</a></p>
]]></description><pubDate>Mon, 09 Feb 2026 14:00:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=46945278</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46945278</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46945278</guid></item><item><title><![CDATA[New comment by brendoncarroll in "I made my own Git"]]></title><description><![CDATA[
<p>Yes the author reached out.  There has not yet been a confusion among real users that I am aware of.<p><a href="https://github.com/gotvc/got/issues/20" rel="nofollow">https://github.com/gotvc/got/issues/20</a></p>
]]></description><pubDate>Tue, 27 Jan 2026 20:25:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=46786011</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46786011</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46786011</guid></item><item><title><![CDATA[New comment by brendoncarroll in "I made my own Git"]]></title><description><![CDATA[
<p>> The problem is when you move beyond text files it gets hard to tell what changes between two versions without opening both versions in whatever program they come from and comparing.<p>Yeah, totally agree. Got has not solved conflict resolution for arbitrary files.  However, we can tell the user where the files differ, and that the file has changed.<p>There is still value in being able to import files and directories of arbitrary sizes, and having the data encrypted.
This is the necessary infrastructure to be able to do distributed version control on large amounts of private data. You can't do that easily with Git.  It's very clunky even with remote helpers and LFS.<p>I talk about that in the Why Got? section of the docs.<p><a href="https://github.com/gotvc/got/blob/master/doc/1.1_Why_Got.md" rel="nofollow">https://github.com/gotvc/got/blob/master/doc/1.1_Why_Got.md</a></p>
]]></description><pubDate>Tue, 27 Jan 2026 19:01:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=46784640</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46784640</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46784640</guid></item><item><title><![CDATA[New comment by brendoncarroll in "I made my own Git"]]></title><description><![CDATA[
<p>Me too.  Version control is great, it should get more use outside of software.<p><a href="https://github.com/gotvc/got" rel="nofollow">https://github.com/gotvc/got</a><p>Notable differences: E2E encryption, parallel imports (Got will light up all your cores), and a data structure that supports large files and directories.</p>
]]></description><pubDate>Tue, 27 Jan 2026 16:42:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=46782416</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46782416</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46782416</guid></item><item><title><![CDATA[Show HN: Blobcache]]></title><description><![CDATA[
<p>Article URL: <a href="https://blobcache.io/">https://blobcache.io/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46681029">https://news.ycombinator.com/item?id=46681029</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 19 Jan 2026 16:39:32 +0000</pubDate><link>https://blobcache.io/</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46681029</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46681029</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Bubblewrap: A nimble way to prevent agents from accessing your .env files"]]></title><description><![CDATA[
<p>I also wrote a tool for doing this[0], after one of these agents edited a config file outside of the repo it was supposed to work within.
I only realized the edit because I have my dotfiles symlinked to a git repository, and git status showed it when I was committing another change.
It's likely that the agents are making changes that I (and others) are not aware of because there is no easy way to detect them.<p>The approach I started taking is mounting the directory, that I want the agent to work on, into a container.
I use `/_` as the working directory, and have built up some practices around that convention; that's the only directory that I want it to make changes to.
I also mount any config it might need as read-only.<p>The standard tools like claude code, goose, charm, whatever else, should really spawn the agent (or MCP server?) in another process in a container, and pipe context in and out over stdin/stdout.
I want a tool for managing agents, and I want each agent to be its own process, in its own container.
But just locking up the whole mess seems to work for now.<p>I see some people in the other comments iterating on what the precise arguments to bubblewrap should be. nnc lets you write presets in Jsonnet, and then refer them by name on the command line, so you can version and share the set of resources that you give to an agent or subprocess.<p>[0] <a href="https://github.com/brendoncarroll/nnc" rel="nofollow">https://github.com/brendoncarroll/nnc</a></p>
]]></description><pubDate>Thu, 15 Jan 2026 15:26:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=46633822</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46633822</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46633822</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Ask HN: Share your personal website"]]></title><description><![CDATA[
<p><a href="https://brendoncarroll.net" rel="nofollow">https://brendoncarroll.net</a></p>
]]></description><pubDate>Wed, 14 Jan 2026 19:14:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=46621160</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46621160</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46621160</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Package managers keep using Git as a database, it never works out"]]></title><description><![CDATA[
<p>I personally think that this is the future, especially since such an architecture allows for E2E encryption of the entire database.
The protocol should just be a transaction layer for coordinating changes of opaque blobs.<p>All of the complexity lives on the client.
That makes a lot of sense for a package manager because it's something lots of people want to run, but no one really wants to host.</p>
]]></description><pubDate>Fri, 26 Dec 2025 15:55:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=46393267</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46393267</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46393267</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Ask HN: What Are You Working On? (December 2025)"]]></title><description><![CDATA[
<p>I recently released Blobcache v0.0.2.
<a href="https://github.com/blobcache/blobcache" rel="nofollow">https://github.com/blobcache/blobcache</a><p>Blobcache is a content-addressed data store for holding application state, and buiding E2EE applications.
This most recent release includes a git remote so you can push and fetch Git data into and out of Blobcache.</p>
]]></description><pubDate>Mon, 15 Dec 2025 22:24:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=46281644</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46281644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46281644</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Interview with Kent Overstreet (Bcachefs) [audio]"]]></title><description><![CDATA[
<p>I'm a happy bcachefs user.  Haven't had any issues on a simple mirrored array, which I've been running since before it was in (and out) of the kernel.  It's the best filesystem in 2025.  Thank you for all your work.<p>What is the status of scrub?
Are there any technical barriers to implementing it, or is it just prioritization at this point?
FWIW I think there are probably a lot of sysadmin types who would move over to bcachefs if scrub was implemented.  I know there are other cooler features like RS and send/receive, but those probably aren't blocking many from switching over.</p>
]]></description><pubDate>Sun, 14 Dec 2025 23:45:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=46268429</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46268429</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46268429</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Mount Proton Drive on Linux using rclone and systemd"]]></title><description><![CDATA[
<p>I work on a project Blobcache, a content addressed store for  exposing and consuming storage over the network.
It supports full end to end encryption, and offers a minimal API to prevent applications from leaking data.<p><a href="https://github.com/blobcache/blobcache/blob/master/doc/0.2_Why_Blobcache.md" rel="nofollow">https://github.com/blobcache/blobcache/blob/master/doc/0.2_W...</a><p>You can persist arbitrary hash-linked data structures in Blobcache volumes.
One such data structure is the Git-Like Filesystem, which supports the usual files and trees.<p><a href="https://github.com/blobcache/blobcache/blob/master/doc/8.5_GLFS.md" rel="nofollow">https://github.com/blobcache/blobcache/blob/master/doc/8.5_G...</a></p>
]]></description><pubDate>Sun, 23 Nov 2025 20:19:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=46026973</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=46026973</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46026973</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Personal data storage is an idea whose time has come"]]></title><description><![CDATA[
<p>The same API part isn't surprising, content addressed stores are the most natural way to accept encrypted data.<p>The public storage networks are targeting a different use case than Blobcache though, which I think of as a private or web-of-trust storage network.  To use a cryptocurrency backed storage solution, one must manage accounts, or a wallet of transaction outputs, connect to unknown parties on the internet, and pay for the increased redundancy.
There's also legal risk, depending on the jurisdiction, when allowing untrusted parties to store arbitrary information on one's devices.<p>I don't want to consult the global economy in order to make use of my extra hard drives, which would otherwise be idle.</p>
]]></description><pubDate>Tue, 07 Oct 2025 14:25:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=45503455</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=45503455</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45503455</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Personal data storage is an idea whose time has come"]]></title><description><![CDATA[
<p>I couldn't find an email in your bio.  You can reach me via the email at the bottom of my website (in my HN bio).<p>Looking through the docs on Peergos, it looks like it's built on top of IPFS.
I've been meaning to write some documentation for Blobcache comparing it to IPFS. I can give a quick gist here.<p>Blobcache Volumes are similar to an IPNS name, and the set of IPFS blocks that can be transitively reached from it.
A significant difference is that Blobcache Volumes expose a transaction API with serializable isolation semantics.
IPFS provides distributed, available-but-inconsistent, cryptographically signed cells.
IPFS chooses availability, and Blobcache chooses consistency.
A Blobcache Volume corresponds to a specific entity maintained and controlled by a specific Node.
An IPFS name exists as a distributed entity on the network.<p>Most applications need some sort of consistent transactional cell (even if they don't realize it), but in order to be useful, inconsistent-but-available cells have to be used carefully in an application specific way.
I blame this required application-specific care for the lack of adoption of CRDTs.<p>There's a long tail of other differences too.
IPFS was pretty badly behaved the last time I used it, trying to configure my router, and creating lots of connections to other nodes.
Blobcache is more like a web browser; it creates transient connections in immediate response to user actions.<p>That whole ecosystem is filled with complicated abstractions.  Just as an example, the Multihash format is pervasive.
It amounts to a tag for the algorithm used to create a hash, and then the hash output.
I'd rather not have that indirection.
All the hashes in Blobcache are 256 bits, and you set the algorithm per Volume.
In Go that means the hashes can just be `[32]byte` instead of a slice and a tag and a table of algorithms.<p>I haven't used IPFS in a while, but I became pretty familiar with it awhile ago.  Had I been able to build any of the stuff I was interested in on top of it, I probably wouldn't have written Blobcache.</p>
]]></description><pubDate>Sun, 05 Oct 2025 18:31:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=45483967</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=45483967</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45483967</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Personal data storage is an idea whose time has come"]]></title><description><![CDATA[
<p>I work on a FOSS project in this space, Blobcache.<p><a href="https://github.com/blobcache/blobcache" rel="nofollow">https://github.com/blobcache/blobcache</a><p>Trusting a server to store an application's state is a different thing from trusting it to author changes or to read the data.
Servers should become dumber, and clients should become smarter.
When I use an app, I want the app to load E2E encrypted state from storage (possibly on another machine, possibly not owned by me) make whatever changes and produce new encrypted data to send back to the server.
The server should just be trusted for durability, and to prevent unauthorized access, but not to tell the truth about doing either of those things.
Blobcache provides an API to facilitate transactions on E2EE state between a dumb storage server and any smart client.<p>Blobcache can be installed on old hardware along with a VPN like Tailscale and then loaded up with data from other devices.
Configuration is like SSH, drop a key in a configuration file to grant access.
It removes most of the friction associated with consuming and producing storage as a resource.<p>I'm using it to build E2EE version control like Git, but for your whole home directory.<p><a href="https://github.com/gotvc/got" rel="nofollow">https://github.com/gotvc/got</a></p>
]]></description><pubDate>Sun, 05 Oct 2025 14:06:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=45481575</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=45481575</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45481575</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Ask HN: What are you working on? (September 2025)"]]></title><description><![CDATA[
<p>I'm working on Blobcache.  <a href="https://github.com/blobcache/blobcache" rel="nofollow">https://github.com/blobcache/blobcache</a><p>Blobcache is content addressed storage, available over the network.
Blobcache allow nodes to securely produce and consume storage.
Configuration in similar to SSH, drop a public key in the configuration, and you're done.
Blobcache is a universal backend for E2E encrypted applications.<p>Docs - <a href="https://github.com/blobcache/blobcache/blob/master/doc/0.0_Blobcache.md" rel="nofollow">https://github.com/blobcache/blobcache/blob/master/doc/0.0_B...</a><p>I'm also working on Got Version Control <a href="https://github.com/gotvc/got" rel="nofollow">https://github.com/gotvc/got</a><p>Got uses Blobcache for storing file data.<p>Got is like Git, if you fixed all the problems with storing large files and directories in Git.
There's no "large files provider" to configure separately.
All the data for a commit goes to the same place.
Got also encrypts all the data you put in it, E2E.
If you've run into problems putting your whole home directory in Git, you might have more luck with Got.<p>Both projects are GPL licensed, FOSS.  Contributions welcome.</p>
]]></description><pubDate>Tue, 30 Sep 2025 13:52:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=45425439</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=45425439</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45425439</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Poltergeist: File watcher with auto-rebuild for any language or build system"]]></title><description><![CDATA[
<p>All of those issues can be solved by doing an import of the changed file into the build system's content addressed store, and creating a new version of the entire input tree.  You also don't need to choose between cancelling, waiting, or dropping.  You can do 2 builds simultaneously, and anything consuming results can show the user the first one until a more recent one is available.  If the builds are at all similar, then the similar components can be deduplicated at runtime.<p>These techniques are used in a build system that I work on[0].  Although it does not do automatic rebuilds like Poltergeist.<p>[0] <a href="https://github.com/wantbuild/want" rel="nofollow">https://github.com/wantbuild/want</a></p>
]]></description><pubDate>Fri, 08 Aug 2025 21:49:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=44842030</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=44842030</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44842030</guid></item><item><title><![CDATA[New comment by brendoncarroll in "Show HN: Mycelium"]]></title><description><![CDATA[
<p>I'm not sure which paradoxes you are referring to.  Type systems are used for a lot of things, in Mycelium a Type is an encoding strategy for it's Values.  And just like I could explain the encoding strategy to you in text, the Type can be stored as bits representing that strategy, so a machine can read the Type and know how to decode Values using the strategy.  Eventually this ends with predefined constants at the Type of a Type of a Value level, so there's a fixed point instead of an infinity.</p>
]]></description><pubDate>Thu, 15 May 2025 12:54:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=43994513</link><dc:creator>brendoncarroll</dc:creator><comments>https://news.ycombinator.com/item?id=43994513</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43994513</guid></item></channel></rss>