<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: coldstartops</title><link>https://news.ycombinator.com/user?id=coldstartops</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 04 Jul 2026 09:55:00 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=coldstartops" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by coldstartops in "Oak: Git for Agents"]]></title><description><![CDATA[
<p>I did not measure agents, but lets take the following example:<p>Assume you have a 10 GB blu ray movie that you want to watch without waiting for upload/ donwload time.<p>Maybe you host it on a server on another continent, where you got a 200ms RTT.<p>And your wire at home supports around 500Mbps - approx 62 MB/s.<p>Thus to Download it fully, would take around: 161 seconds if you use the full wire and on the happy case.<p>But to actually watch it and skim through it, you do not need to use the full wire, but around ~11 Mbps for a 2-hour 10 GB film, which is like 2% of the wire. The only hard part is random jumps, as each seek is a full RTT.<p>If you prefetch too aggresivelly you hide this RTT, but if the wire is saturated, and if you have a cache miss, then you will hang and wait until the request goes through. Might be upt to 1-2 seconds. The whole game is to pace yourself such that you stay ahead of the consumption rate, without saturating the wire.</p>
]]></description><pubDate>Fri, 03 Jul 2026 22:00:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=48780522</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48780522</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48780522</guid></item><item><title><![CDATA[New comment by coldstartops in "Oak: Git for Agents"]]></title><description><![CDATA[
<p>I just had a talk (power-rushed a bit) yesterday at Pass The SALT 2026 talking about (my version of) latency hiding filesystems in userspace over the network. My benchmarks, setups, and how to make the magic wawaweewa work.<p>Basically it went the "sshfs over iroh" approach, and instead of OP's post, it has eager metadata file sharing, and on demand file access. It is still a work on progress, but you can use git juse fine over the fuse mount points without introducing a new tool (edit: but do note that I did not encounter problems with large worktrees, as I do not use them in my flow, and still has some quirks). And still have similar "cold path" access times.<p>I touch on some insights of hiding the latency, the direct Alice to Bob connection, and has some recorded demos. Goes the generic approach.<p>You can watch it here if you are interested, but its around 25 minutes.<p>The first part is about the Post Quantum Crypto, and making direct IPv6 connections work.<p>The second part is about the filesystems in userspace that hide the latency.
(The second part is around minute 12:00, and I think it is the relevant part to this discussion/ thread).<p><a href="https://passthesalt.ubicast.tv/videos/2026-keibidrop-post-quantum-encrypted-peer-to-peer-file-transfer-without-the-cloud/" rel="nofollow">https://passthesalt.ubicast.tv/videos/2026-keibidrop-post-qu...</a></p>
]]></description><pubDate>Fri, 03 Jul 2026 21:47:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=48780398</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48780398</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48780398</guid></item><item><title><![CDATA[New comment by coldstartops in "Ask HN: Where is our profession (programmer) going?"]]></title><description><![CDATA[
<p>I see nothing wrong with something probabilistic. I think it is all about offsetting the risk and reducing the odds of bad outcomes. There is this concept of Defence in Depth, thus I assume some sort of binomial formula also applies here.</p>
]]></description><pubDate>Thu, 25 Jun 2026 05:08:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=48669167</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48669167</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48669167</guid></item><item><title><![CDATA[New comment by coldstartops in "Show HN: Oak – Git alternative designed for agents"]]></title><description><![CDATA[
<p>Couldn't run your benchmarks, as I did not create an account, and a bit of a different beast that I am comparing against (P2P distributed filesystem), but these are my numbers and setup, and the on-demand part lines up with what I have observed:<p>Setup: a Linux box on the other side of Romania (compared to where I am living) reading from a Windows box in Singapore (~200 ms RTT)<p>- reading 1 MiB of a 1 GB remote file pulls only 16 MiB (~98% avoided) - this is because of my fine tuning optimization choice
- first byte approx: 2.3s
- git-LFS repos also clone cold over the mount byte-perfect (separate Mac - Linux run on a ~20 ms RTT)<p>The thing that I do differently is that my metadata is eagerly pushed, as I optimized for content streaming.<p>And 100k-file tree mounts I did not test yet.<p>But my goal was to have instant file access for generic files between apps, and peer to peer, supports also Windows :D<p>here is the tool: <a href="https://github.com/KeibiSoft/KeibiDrop" rel="nofollow">https://github.com/KeibiSoft/KeibiDrop</a></p>
]]></description><pubDate>Mon, 22 Jun 2026 20:19:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=48635550</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48635550</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48635550</guid></item><item><title><![CDATA[New comment by coldstartops in "Show HN: Oak – Git replacement designed for agents"]]></title><description><![CDATA[
<p>I am curious, how do you handle latency issues for on demand access? I saw you use FUSE (and FSKit), and from my experience it is pain to make filesystems in userspace work on-demand over WAN because a) latency, and variable RTT; and b) you can't saturate the wire and aggressively read ahead things, otherwise native apps will freeze, lag, or just make the UX unpleasant, especially if there are too many placeholder files, or large files with random jumps in them.</p>
]]></description><pubDate>Mon, 22 Jun 2026 18:33:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=48634099</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48634099</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48634099</guid></item><item><title><![CDATA[New comment by coldstartops in "Google Hits 50% IPv6"]]></title><description><![CDATA[
<p>Google hits 50% IPv6, very good for accessing websites.<p>But my TP-Link router blocks by default inbound IPv6 connections, without any option to configure it, still bad for pure IPv6 bidirectional streaming, gaming or services on home networks.</p>
]]></description><pubDate>Sun, 21 Jun 2026 09:09:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48617057</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48617057</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48617057</guid></item><item><title><![CDATA[New comment by coldstartops in "Ask HN: What are you working on? (June 2026)"]]></title><description><![CDATA[
<p>KEIBIDROP: Peer to Peer Instant file sharing<p><a href="https://keibidrop.com" rel="nofollow">https://keibidrop.com</a><p><a href="https://github.com/KeibiSoft/KeibiDrop/" rel="nofollow">https://github.com/KeibiSoft/KeibiDrop/</a><p>It leverages virtual mount points to make file metadata available between Alice and Bob, and make the files appear as if locally.<p>So for example instead of waiting to upload then download a Blu Ray movie, or a large game, you can just add it into the virtual mountpoint and your recipient can instantly play it, or install it, and the download happens in the background with random offset jumps, and caches it locally.</p>
]]></description><pubDate>Mon, 15 Jun 2026 10:29:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48539251</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48539251</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48539251</guid></item><item><title><![CDATA[New comment by coldstartops in "Branchless Quicksort faster than std:sort and pdqsort with C and C++ API"]]></title><description><![CDATA[
<p>Highly recommend. The exampels are in c/c++ and the same concepts can be ported to other languages like golang.<p>My favorite part of it is Chapter 2 the bit manipulation tricks.</p>
]]></description><pubDate>Fri, 05 Jun 2026 08:25:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=48409609</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48409609</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48409609</guid></item><item><title><![CDATA[New comment by coldstartops in "Notes from Optimizing CPU-Bound Go Hot Paths"]]></title><description><![CDATA[
<p>Nice! Now the question is: How many classic Reynolds boids can you run on 1 CPU at 60FPS, without using any go routines?<p>I managed to get around 8192 using Serge Skoredin's approach from the blog post last year: <a href="https://skoredin.pro/blog/golang/cpu-cache-friendly-go" rel="nofollow">https://skoredin.pro/blog/golang/cpu-cache-friendly-go</a><p>Also tried some of the techniques in this blog post, and managed to squeeze a bit more with the insights from your post.</p>
]]></description><pubDate>Thu, 14 May 2026 07:25:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=48132155</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48132155</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48132155</guid></item><item><title><![CDATA[New comment by coldstartops in "Ask HN: What are you working on? (May 2026)"]]></title><description><![CDATA[
<p>Let me know how it goes, or frustrations. I admit that currently it is not the most friendly UX. And found out a bug that if no direct P2P possible, it fails to fallback to the STUN-ish data relay. However LAN mode and WAN via direct P2P works on latest releases.<p>As soon as I merge this one, will create another release that fixes the fallback; and hopefully also get the apps in ios and gplay stores.
<a href="https://github.com/KeibiSoft/KeibiDrop/pull/143" rel="nofollow">https://github.com/KeibiSoft/KeibiDrop/pull/143</a></p>
]]></description><pubDate>Mon, 11 May 2026 13:15:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=48094597</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48094597</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48094597</guid></item><item><title><![CDATA[New comment by coldstartops in "Ask HN: What are you working on? (May 2026)"]]></title><description><![CDATA[
<p>Stream on-demand files between your devices. WAN, LAN, Direct IPV6, cross platform, pqc.<p><a href="https://keibidrop.com/" rel="nofollow">https://keibidrop.com/</a>
repo: 
<a href="https://github.com/KeibiSoft/KeibiDrop" rel="nofollow">https://github.com/KeibiSoft/KeibiDrop</a></p>
]]></description><pubDate>Mon, 11 May 2026 08:30:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=48092472</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48092472</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48092472</guid></item><item><title><![CDATA[New comment by coldstartops in "Mythical Man Month"]]></title><description><![CDATA[
<p>It is possible. I tell to use cli app, and for the agent to ad timer and check the status once in a while. Especially if there is something with a long wait. Also if it can run some validators/ same tools locally, would be much faster.<p>Might tend to deviate and waste time, needs guiding once in a while, and to check what is it spewing out, point it in the correct direction.</p>
]]></description><pubDate>Sat, 09 May 2026 06:23:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=48072363</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48072363</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48072363</guid></item><item><title><![CDATA[New comment by coldstartops in "Mythical Man Month"]]></title><description><![CDATA[
<p>I treat the low level tasks as building blocks. You need a grasp and understanding of what is possible with them, but you do not need to remember the exact byte order and syntax. I think the idea is you should structure your workflow in a deterministic way, and just use Claude/ LLM as the interface. It is much easier and enjoyable to use high level language, where you give pointers to building blocks/ directions/ say hard no when you understand things deviate.<p>If I had to output the code myself, would take around 8 hours of constant writing to get around 1k LoC of code. For FUSE level tricky stuff, I might need to spend 3 weeks for 10 LoC. Very easy to burnout and build pain.</p>
]]></description><pubDate>Sat, 09 May 2026 06:18:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=48072341</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48072341</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48072341</guid></item><item><title><![CDATA[New comment by coldstartops in "Mythical Man Month"]]></title><description><![CDATA[
<p>Here is a public project.<p><a href="https://github.com/KeibiSoft/KeibiDrop" rel="nofollow">https://github.com/KeibiSoft/KeibiDrop</a><p>It took me 2 years ago around 2k hours to build a cross platform FUSE vault, without using AI assisted tools.<p>The pain was debugging through logs and system traces. And understanding how things work.<p>Now managed to ship this one much faster, as an after hours project. Started it in may 2025, and around end of November 2025 started using claude on it.<p>Just by dumping logs into claude, and explaining the attack vector for the problems, saved me the FML moments of grindings walls of syscalls on 3 platforms.<p>I would say much easier to progress, and ship with the same rigour, minimize my time, focus and brain power involvement such that I can put the energy somewhere else.</p>
]]></description><pubDate>Sat, 09 May 2026 05:59:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=48072226</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48072226</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48072226</guid></item><item><title><![CDATA[New comment by coldstartops in "Why are neural networks and cryptographic ciphers so similar? (2025)"]]></title><description><![CDATA[
<p>I've been through Introduction to Modern Cryptography by Katz and Lindell.
Can recommend, as it starts with Caesars cipher, one time pads, and builds towards modern cryptography.</p>
]]></description><pubDate>Mon, 04 May 2026 12:38:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48007938</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=48007938</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48007938</guid></item><item><title><![CDATA[New comment by coldstartops in "Localsend: An open-source cross-platform alternative to AirDrop"]]></title><description><![CDATA[
<p>I will add this on the roadmap. At the moment I am trying to add persistent identity, as by default it is ephemeral.<p>But I warn you, there are still some kinks. Only 75% pjdfstest (filesystem test suite) passes in terms of POSIX compliance. I do not support hardlinks/symlinks by design.<p>I was trying last to use postgresql on the virtual filesystem, then once the server is stoped, to remove the lock file, and open it on the peer. and some files got corrupted while running this test.</p>
]]></description><pubDate>Wed, 29 Apr 2026 20:04:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=47953796</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=47953796</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47953796</guid></item><item><title><![CDATA[New comment by coldstartops in "Localsend: An open-source cross-platform alternative to AirDrop"]]></title><description><![CDATA[
<p>I tried to explain here the differences, and where it fits in the gap of file transfer tools, also on the blog got some benchmarks and how they where setup.<p><a href="https://keibisoft.com/tools/keibidrop-vs-alternatives.html" rel="nofollow">https://keibisoft.com/tools/keibidrop-vs-alternatives.html</a><p>its more towards vibey marketing talk and at the same time tried to keep it as honest as possible.</p>
]]></description><pubDate>Wed, 29 Apr 2026 19:58:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=47953708</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=47953708</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47953708</guid></item><item><title><![CDATA[New comment by coldstartops in "Localsend: An open-source cross-platform alternative to AirDrop"]]></title><description><![CDATA[
<p>Yes-ish, adjacent. Syncthing usually you use it to sync to your server.<p>Here I skipped the server part. I just connect two devices.<p>If they both use the virtual mountpoint<p>MountAlice and MountBob<p>They get an underlying SaveAlice and SaveBob on disk.<p>so what gets dropped in MountAlice gets saved to SaveAlice, and appears in MountBob.<p>Once bob accesses it in MountBob it gets cached to SaveBob (like saved persistently to disk). But while the transfer happens a mmap is saved to disk to keep track of the segments that were transmited.<p>If changes happen on Alice for the file, GetAttr metadata is synced when the filehandler on Alice is released. and Bob knows to request the parts of the file that changed.<p>It did not go for the full-on folder sync. I went for a synced filesystem while the peers are connected.<p>And because ios and android do not have FUSE, i also added the option to add a file/ pull a file, that does the same thing.<p>So now, you can add folders/ files on android/ ios. and mount them as a filesystem on your desktop and do magic with them, and if they get changed you can export them back from the phone to the gallery or w/e files</p>
]]></description><pubDate>Wed, 29 Apr 2026 19:55:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=47953649</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=47953649</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47953649</guid></item><item><title><![CDATA[New comment by coldstartops in "Localsend: An open-source cross-platform alternative to AirDrop"]]></title><description><![CDATA[
<p>hah, I feel you for 3. I was constantly hitting the loopback network interface and I was like, why no discovery. in hindisght bad idea to always get the first entry in an array, now go through a list of network interfaces that i spam.<p>for 1. i send a mutlicast of max 512 bytes on 224.0.0.167:26999 every 3 seconds
2. not really caching, just have a map of people that get discovered.<p>and god bless, I just rolled with this. if people will use the tool and they will complain about it, then it will be a problem for later. for me between my home devices did not notice inconveniences.<p>in total around 200 lines of golang.</p>
]]></description><pubDate>Wed, 29 Apr 2026 19:48:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=47953531</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=47953531</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47953531</guid></item><item><title><![CDATA[New comment by coldstartops in "Localsend: An open-source cross-platform alternative to AirDrop"]]></title><description><![CDATA[
<p>No you didn't miss. I mixed the concept, UDP broadcast similar to mDNS, yes part of net library. actual mDNS like visible in Finder and actual RFC implementation not part of standard library. What I was trying to say was easy to make "mdns-ish" with just standard lib, rush typed it and ended up like that.</p>
]]></description><pubDate>Wed, 29 Apr 2026 10:54:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=47946571</link><dc:creator>coldstartops</dc:creator><comments>https://news.ycombinator.com/item?id=47946571</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47946571</guid></item></channel></rss>