<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: cbovis</title><link>https://news.ycombinator.com/user?id=cbovis</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 09 Apr 2026 05:29:27 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=cbovis" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by cbovis in "We moved Railway's frontend off Next.js. Builds went from 10+ mins to under 2"]]></title><description><![CDATA[
<p>Yep this is what's often misunderstood.<p>We also recently cut our build times in half moving from Webpack to Turbopack on production builds after jumping to NextJS 16. We'd already been using Turbopack in development for a while which yielded massive DX improvements related to performance. Production build times will drop further once Turbopack production build caching is stable.<p>Webpack -> Turbopack is the smart initial migration. I'd bet Railway went straight from Webpack -> Vite not realising that their real gains sat with the build tooling, not NextJS vs Tanstack.</p>
]]></description><pubDate>Wed, 08 Apr 2026 09:56:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=47687892</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=47687892</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47687892</guid></item><item><title><![CDATA[New comment by cbovis in "Code Review for Claude Code"]]></title><description><![CDATA[
<p>This cost seems wild. For comparison GitHub Copilot Code Review is four cents per review once you're outside of the credits included with your subscription.</p>
]]></description><pubDate>Mon, 09 Mar 2026 20:44:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=47315256</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=47315256</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47315256</guid></item><item><title><![CDATA[New comment by cbovis in "Claude's Cycles [pdf]"]]></title><description><![CDATA[
<p>The prompt is unique but the tokens aren't.<p>Type "owejdpowejdojweodmwepiodnoiwendoinw welidn owindoiwendo nwoeidnweoind oiwnedoin" into ChatGPT and the response is "The text you sent appears to be random or corrupted and doesn’t form a clear question." because the prompt doesnt correlate to training data.</p>
]]></description><pubDate>Tue, 03 Mar 2026 16:55:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=47235230</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=47235230</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47235230</guid></item><item><title><![CDATA[New comment by cbovis in "Claude's Cycles [pdf]"]]></title><description><![CDATA[
<p>Unless my understanding is incorrect about how these tools work that last point isn't really a quality of LLMs as such? It gets attributed because the lines are blurred but the tireless trial and error is actually just a quality of a regular programatic loop (agent/orchestrator) that happens to be doing the trickiest part of its work via an LLM.</p>
]]></description><pubDate>Tue, 03 Mar 2026 16:47:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=47235122</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=47235122</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47235122</guid></item><item><title><![CDATA[New comment by cbovis in "Orchestrate teams of Claude Code sessions"]]></title><description><![CDATA[
<p>AFAICT this is already baked into the GitHub Copilot agent. I read its sessions pretty often and reviewing/testing after writing code is a standard part of its workflow almost every time. It's kind of wild seeing how diligent it is even with the most trivial of changes.</p>
]]></description><pubDate>Fri, 06 Feb 2026 18:11:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=46916108</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=46916108</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46916108</guid></item><item><title><![CDATA[New comment by cbovis in "There is an AI code review bubble"]]></title><description><![CDATA[
<p>GH Copilot is definitely far better than just a linter. I don't have examples to hand but one thing that's stood out to me is its use of context outside the changes in the diff. It'll pull in context that typically isn't visible in the PR itself, the sort of things that only someone experienced in the code base with good recall would connect the dots on (e.g. this doesn't conform to typical patterns, or a version of this is already encapsulated in reusable code, or there's an existing constant that could be used here instead of the hardcoded value you have).</p>
]]></description><pubDate>Mon, 26 Jan 2026 19:59:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=46770707</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=46770707</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46770707</guid></item><item><title><![CDATA[New comment by cbovis in "There is an AI code review bubble"]]></title><description><![CDATA[
<p>I've also noticed this explosion of code review tools and felt that there's some misplaced focus going on for companies.<p>Two that stood out to me are Sentry and Vercel. Both have released code review tools recently and both feel misplaced. I can definitely see why they thought they could expand with that type of product offering but I just don't see a benefit over their competition. We have GH copilot natively available on all our PRs, it does a great job, integrates very well with the PR comment system, and is cheap (free with our current usage patterns). GH and other source control services are well placed to have first-class code review functionality baked into their PR tooling.<p>It's not really clear to me what Sentry/Vercel are offering beyond what copilot does and in my brief testing of them didn't see noticeable difference in quality or DX. Feels like they're fighting an uphill battle from day one with the product choice and are ultimately limited on DX by how deeply GH and other source control service allow them to integrate.<p>What I would love to see from Vercel, which they feel very well placed to offer, is AI powered QA. They already control the preview environments being deployed to for each PR, they have a feedback system in place with their Vercel toolbar comments, so they "just" need to tie those together with an agentic QA system. A much loftier goal of course but a differentiator and something I'm sure a lot of teams would pay top dollar for if it works well.</p>
]]></description><pubDate>Mon, 26 Jan 2026 19:55:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=46770668</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=46770668</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46770668</guid></item><item><title><![CDATA[New comment by cbovis in "Tell HN: Azure outage"]]></title><description><![CDATA[
<p>Looks to be affecting our pipelines that rely on Playwright as they download images from Azure e.g. <a href="https://playwright.azureedge.net/builds/chromium/1124/chromium-linux.zip" rel="nofollow">https://playwright.azureedge.net/builds/chromium/1124/chromi...</a> which aren't currently resolving.</p>
]]></description><pubDate>Wed, 29 Oct 2025 16:51:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=45749553</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=45749553</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45749553</guid></item><item><title><![CDATA[New comment by cbovis in "Westjet is going to make you pay to recline your seat"]]></title><description><![CDATA[
<p>No tip</p>
]]></description><pubDate>Sun, 05 Oct 2025 19:47:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=45484600</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=45484600</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45484600</guid></item><item><title><![CDATA[New comment by cbovis in "US Administration announces 34% tariffs on China, 20% on EU"]]></title><description><![CDATA[
<p>Suggestion that the admin is vibe governing: <a href="https://bsky.app/profile/amyhoy.bsky.social/post/3lluo7jmsss2w" rel="nofollow">https://bsky.app/profile/amyhoy.bsky.social/post/3lluo7jmsss...</a></p>
]]></description><pubDate>Thu, 03 Apr 2025 07:15:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=43565954</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=43565954</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43565954</guid></item><item><title><![CDATA[New comment by cbovis in "Tell HN: Camelgate NPM Outage (Cloudflare)"]]></title><description><![CDATA[
<p>Confirmed here: <a href="https://www.cloudflarestatus.com/incidents/gshczn1wxh74" rel="nofollow">https://www.cloudflarestatus.com/incidents/gshczn1wxh74</a></p>
]]></description><pubDate>Tue, 01 Apr 2025 17:05:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=43549123</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=43549123</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43549123</guid></item><item><title><![CDATA[New comment by cbovis in "NPM blocking all packages with the word "camel""]]></title><description><![CDATA[
<p>Slightly more info here: <a href="https://github.com/npm/cli/issues/8203" rel="nofollow">https://github.com/npm/cli/issues/8203</a></p>
]]></description><pubDate>Tue, 01 Apr 2025 16:59:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=43549050</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=43549050</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43549050</guid></item><item><title><![CDATA[New comment by cbovis in "DOGE staffer is trying to reroute FEMA funds"]]></title><description><![CDATA[
<p>> I've now switched my primary HN link from the home page to /active, where, thankfully, flagged posts still show up.<p>Great tip, thanks!</p>
]]></description><pubDate>Thu, 13 Feb 2025 15:10:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=43036613</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=43036613</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43036613</guid></item><item><title><![CDATA[New comment by cbovis in "DOGE as a National Cyberattack"]]></title><description><![CDATA[
<p>> Why isn't it front-page news on HN rather than being flagged? Is it just because Musk's "DOGE" is in the title?<p>Essentially yes. Certain users are flagging because they don't want any discussion related to DOGE on HN. See for example <a href="https://news.ycombinator.com/item?id=43036254">https://news.ycombinator.com/item?id=43036254</a>.</p>
]]></description><pubDate>Thu, 13 Feb 2025 15:07:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=43036582</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=43036582</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43036582</guid></item><item><title><![CDATA[New comment by cbovis in "New DOGE site update breaks down government jobs by salary/age/headcount"]]></title><description><![CDATA[
<p>If you snoop around the network requests you'll see API calls made for fetching data. Could pull from those endpoints instead.</p>
]]></description><pubDate>Thu, 13 Feb 2025 14:20:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=43036083</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=43036083</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43036083</guid></item><item><title><![CDATA[New comment by cbovis in "TypeScript enums: use cases and alternatives"]]></title><description><![CDATA[
<p>It's not a hypothetical, it's here in Node 23: <a href="https://nodejs.org/docs/latest/api/typescript.html#typescript-features" rel="nofollow">https://nodejs.org/docs/latest/api/typescript.html#typescrip...</a>.</p>
]]></description><pubDate>Mon, 20 Jan 2025 10:46:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=42767283</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=42767283</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42767283</guid></item><item><title><![CDATA[New comment by cbovis in "We switched from Next.js to Astro (and why it might interest you)"]]></title><description><![CDATA[
<p>I'm not very familiar with Nuxt or SvelteKit but this is exactly what React and NextJS provide with server components. Any JS related to server components isn't shipped, only client components which effectively represent the islands. The only real difference is you're not mixing technologies, it's all React.</p>
]]></description><pubDate>Tue, 03 Dec 2024 21:40:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=42311840</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=42311840</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42311840</guid></item><item><title><![CDATA[New comment by cbovis in "Standing desk might be as bad as sitting all day"]]></title><description><![CDATA[
<p>Tried jogging in place when reading this. Desk would shake if I tried to use it and couldn't control peripherals. Even reading content was hard.</p>
]]></description><pubDate>Mon, 11 Nov 2024 11:10:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=42106245</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=42106245</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42106245</guid></item><item><title><![CDATA[New comment by cbovis in "iPhone 16 Pro and iPhone 16 Pro Max"]]></title><description><![CDATA[
<p>FYI there's a setting that lets you turn off the two week prompt or update it to 30 days.</p>
]]></description><pubDate>Tue, 10 Sep 2024 19:58:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=41504873</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=41504873</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41504873</guid></item><item><title><![CDATA[New comment by cbovis in "DuckDuckGo was down"]]></title><description><![CDATA[
<p>Looks great thank you. I see there's a !brave bang for duckduckgo too so no need to change up browser defaults.</p>
]]></description><pubDate>Thu, 23 May 2024 13:24:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=40454398</link><dc:creator>cbovis</dc:creator><comments>https://news.ycombinator.com/item?id=40454398</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40454398</guid></item></channel></rss>