<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: pbrumm</title><link>https://news.ycombinator.com/user?id=pbrumm</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 18 Apr 2026 05:34:37 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=pbrumm" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by pbrumm in "Litestream Writable VFS"]]></title><description><![CDATA[
<p>There is wal-g that moves the wal files to s3 and you can spin up any number of instances off of that.   Works great for catching up secondary servers</p>
]]></description><pubDate>Sat, 31 Jan 2026 17:49:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=46838847</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=46838847</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46838847</guid></item><item><title><![CDATA[New comment by pbrumm in "Client-side GPU load balancing with Redis and Lua"]]></title><description><![CDATA[
<p>Have you tried switching it to a job queue where the GPU instances try to keep themselves busy.  That way you can auto scale the gpus based on utilization.   I find it easier to tune and you can monitor latency and backlogs easier.   It does require some async mechanisms to the client but I have found it easier to maintain</p>
]]></description><pubDate>Sat, 06 Dec 2025 15:28:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=46174052</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=46174052</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46174052</guid></item><item><title><![CDATA[New comment by pbrumm in "Meta CTO explains why the smart glasses demos failed at Meta Connect"]]></title><description><![CDATA[
<p>I wonder how many audio conversations were overheard and uploaded during that moment.<p>Seems like an attack vector for forcing your devices to start recording the mic and transmitting it.<p>Even if it just takes down the wifi through maxing out internet connection or cellular network.  Play a couple seconds of audio and gigabytes get uploaded.</p>
]]></description><pubDate>Sat, 20 Sep 2025 17:26:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=45315317</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=45315317</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45315317</guid></item><item><title><![CDATA[New comment by pbrumm in "How to Think About GPUs"]]></title><description><![CDATA[
<p>If you have optimized your math heavy code and it is already in a typed language and you need it to be faster, then you think about the GPU options<p>In my experience you can roughly get 8x speed improvement.<p>Turning a 4 second web response into half a second can be game changing.   But it is a lot easier to use a web socket and put a spinner or cache result in background.<p>Running a GPU in the cloud is expensive</p>
]]></description><pubDate>Wed, 20 Aug 2025 15:09:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=44962644</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=44962644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44962644</guid></item><item><title><![CDATA[New comment by pbrumm in "A love letter to the CSV format"]]></title><description><![CDATA[
<p>Here is a quick test<p>The table of contents points to a single Json object that is 20ish gb compressed<p><a href="https://www.anthem.com/machine-readable-file/search/" rel="nofollow">https://www.anthem.com/machine-readable-file/search/</a><p>All stock libs will fail</p>
]]></description><pubDate>Thu, 27 Mar 2025 02:42:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=43489890</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=43489890</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43489890</guid></item><item><title><![CDATA[New comment by pbrumm in "ArcticDB: Why a Hedge Fund Built Its Own Database"]]></title><description><![CDATA[
<p>I think it is somewhat like git's creation story.  Sometimes a senior dev sees a tool that is close to ideal but needs to work a little differently than what the industry has built.<p>Databases are up there with encryption.  Don't roll your own... mentality.<p>But sometimes they don't fit the problem your solving.    Sometimes the data never changes so why have infrastructure for updates.<p>Having a big DB running all the time could be too expensive for your business model<p>Also it is good to be curious about "what is an index" and how does a parquet file look in hex editor.  Why can't I write the underlying db table outside of postgres.  Why are joins hard..<p>And then you discover your tools give you a competitive edge<p>Most of the time there are existing tools, but sometimes they don't.</p>
]]></description><pubDate>Sun, 25 Aug 2024 14:42:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=41347636</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=41347636</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41347636</guid></item><item><title><![CDATA[New comment by pbrumm in "Building a high performance JSON parser"]]></title><description><![CDATA[
<p>Insurance price transparency can have 16gb of compressed JSON that represents a single object.<p>Here is the anthem page.  The toc link is 16gb<p><a href="https://www.anthem.com/machine-readable-file/search/" rel="nofollow noreferrer">https://www.anthem.com/machine-readable-file/search/</a><p>They are complying with the mandate. But not optimizing for the parsers</p>
]]></description><pubDate>Thu, 09 Nov 2023 13:44:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=38204871</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=38204871</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38204871</guid></item><item><title><![CDATA[New comment by pbrumm in "Help Heroku's free tier is ending"]]></title><description><![CDATA[
<p>There are some exciting ways to continue using the heroku build packs and Google cloudbuild to host on gcp.  You can maintain git push deploys costs can be pretty inexpensive.  The primary cost is around managed postgres.<p><a href="https://cloud.google.com/products/calculator#id=46eb44ca-9ac5-415a-89cf-b62a76f3781c" rel="nofollow">https://cloud.google.com/products/calculator#id=46eb44ca-9ac...</a><p>It isn't the same as a free plan but can provide a very similar ease of use.  My profile has contact info if you want more detail.</p>
]]></description><pubDate>Sun, 02 Oct 2022 15:45:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=33056929</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=33056929</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33056929</guid></item><item><title><![CDATA[New comment by pbrumm in "Ask HN: Do you like being left handed?"]]></title><description><![CDATA[
<p>I enjoy being lefty.    My grandfather was trained into being righty except for golf, so I noticed early on how things were not made for me and I had to do extra work.  My father uses a lot of power tools and the extra dangers were apparent there as well.<p>Overall it has probably helped my programming as I had been thinking outside the box for longer than the righties.</p>
]]></description><pubDate>Sun, 12 Dec 2021 15:11:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=29530209</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=29530209</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29530209</guid></item><item><title><![CDATA[New comment by pbrumm in "Tailscale Now Runs in the Browser"]]></title><description><![CDATA[
<p>sounds like we could use this for user attestation.<p>And be protected from DNS or BGP hijacking</p>
]]></description><pubDate>Mon, 25 Oct 2021 15:44:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=28989116</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=28989116</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28989116</guid></item><item><title><![CDATA[New comment by pbrumm in "Ask HN: Real-world Tailscale business use case"]]></title><description><![CDATA[
<p>The tailscale client can be queried to convert from tailscale ip to email.   This could be used to track who is using the VPN service and to sign them into the protected web app.  Grafana allows header auth params for example</p>
]]></description><pubDate>Mon, 20 Sep 2021 14:13:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=28593971</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=28593971</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28593971</guid></item><item><title><![CDATA[New comment by pbrumm in "Ask HN: Do you use a Linux-first laptop? (System76, Librem, Dell XPS Dev Ed)"]]></title><description><![CDATA[
<p>Dell precision 54xx laptops with linux are pretty nice but my more recent one had thunderbolt issues and the support didn't live up to the "linux first" support I was expecting.  I have switched to the system76 and really like the Lemur Pro 14.</p>
]]></description><pubDate>Wed, 18 Aug 2021 02:32:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=28217194</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=28217194</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=28217194</guid></item><item><title><![CDATA[New comment by pbrumm in "Ask HN: I'm burnout but I cannot afford to stop working. What next?"]]></title><description><![CDATA[
<p>Fast walking with some hills is great.  It also reduced my stress quite a bit as after 20 minutes I would stop contemplating/planning and just walk.  Doesn't matter the weather and much easier to do</p>
]]></description><pubDate>Wed, 28 Jul 2021 12:39:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=27983028</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=27983028</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27983028</guid></item><item><title><![CDATA[New comment by pbrumm in "Ask HN: What's the cheapest ACH payment processor for marketplaces?"]]></title><description><![CDATA[
<p>It may take volume first.  But you can negotiate with stripe to get better rates.  You take on more of the risk though.</p>
]]></description><pubDate>Sat, 23 May 2020 15:54:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=23283940</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=23283940</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23283940</guid></item><item><title><![CDATA[New comment by pbrumm in "Apple’s most expensive Mac Pro costs over $52k"]]></title><description><![CDATA[
<p>$400 for the wheels</p>
]]></description><pubDate>Wed, 11 Dec 2019 03:20:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=21759253</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=21759253</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21759253</guid></item><item><title><![CDATA[New comment by pbrumm in "Slow leak detected aboard Space Station"]]></title><description><![CDATA[
<p>I don't think they could fit another video or unrelated image in that article.<p>Are people posting content here just to get the ads traffic?</p>
]]></description><pubDate>Thu, 30 Aug 2018 14:12:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=17876850</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=17876850</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17876850</guid></item><item><title><![CDATA[Monit restart command broken with unattended-upgrade]]></title><description><![CDATA[
<p>Article URL: <a href="https://bugs.launchpad.net/ubuntu/+source/monit/+bug/1786910">https://bugs.launchpad.net/ubuntu/+source/monit/+bug/1786910</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=17828983">https://news.ycombinator.com/item?id=17828983</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 23 Aug 2018 17:20:47 +0000</pubDate><link>https://bugs.launchpad.net/ubuntu/+source/monit/+bug/1786910</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=17828983</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17828983</guid></item><item><title><![CDATA[New comment by pbrumm in "Google Cloud Platform – The Good, Bad, and Ugly"]]></title><description><![CDATA[
<p>maybe.   We haven't had any issues with it over last year.   The comcast outage last week probably affected more customers.</p>
]]></description><pubDate>Thu, 12 Jul 2018 15:26:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=17515536</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=17515536</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17515536</guid></item><item><title><![CDATA[New comment by pbrumm in "Google Cloud Platform – The Good, Bad, and Ugly"]]></title><description><![CDATA[
<p>well written.<p>Things I would add to the Good side.<p>- ability to commit to multi year cpu/ram without upfront costs<p>- they can live migrate your vm to new physical hardware, so no need to have random reboots of your instances<p>- https load balancers allow traffic around the world to enter google network closest to user, this reduces handshakes and reduces comcast like outages to affect users.<p>the above greatly decrease my stress.</p>
]]></description><pubDate>Thu, 12 Jul 2018 15:07:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=17515351</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=17515351</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17515351</guid></item><item><title><![CDATA[New comment by pbrumm in "Ask HN: Dashboards in AppleTVs?"]]></title><description><![CDATA[
<p>easily displaying many dashboards within your office is something that I haven't found any off the shelf solutions for.    Our office has 20 tv's with chromecasts all displaying specific dashboards, but it took coding effort to get it to work.</p>
]]></description><pubDate>Mon, 11 Jun 2018 19:39:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=17287786</link><dc:creator>pbrumm</dc:creator><comments>https://news.ycombinator.com/item?id=17287786</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=17287786</guid></item></channel></rss>