<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: godzillafarts</title><link>https://news.ycombinator.com/user?id=godzillafarts</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 14 Apr 2026 16:55:41 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=godzillafarts" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by godzillafarts in "GitHub Stacked PRs"]]></title><description><![CDATA[
<p>+1 this isn’t something new, it’s been possible all along in native git if you’re willing to do branch management and rebasing yourself. Just without the fancy UI / stack map.</p>
]]></description><pubDate>Mon, 13 Apr 2026 23:55:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=47759507</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=47759507</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47759507</guid></item><item><title><![CDATA[New comment by godzillafarts in "GitHub Stacked PRs"]]></title><description><![CDATA[
<p>“You cannot merge a PR in the middle of the stack before the PRs below it are merged.”<p>Huh? Some stacks need to land all at once and need to be reviewed (and merged) from the top down. It’s not uncommon, in my org at least, to review an entire stack and merge 3 into 2 and then 2 into 1 and then 1 into main. If 2 merges before 3, you just rebase 3 onto 1.</p>
]]></description><pubDate>Mon, 13 Apr 2026 23:06:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=47759135</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=47759135</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47759135</guid></item><item><title><![CDATA[New comment by godzillafarts in "Why I don't have fun with Claude Code"]]></title><description><![CDATA[
<p>> People who love using AI to create software are loving it because they don’t value the act of creating & understanding the software.<p>That's a pretty sweeping generalization. Just because I don't value the act of typing into a keyboard doesn't mean that I don't value the craft of creating and understanding software. I am not outsourcing my understanding to the LLM, I am outsourcing the typing of the code.<p>What you are describing is not engineering, it's (pardon the phrase) vibe coding. Claude Code is just a tool, and everyone is going to use that tool differently. There is nothing inherent in the tool itself that requires you to surrender your agency and understanding. If you do, that's on you, not Claude.</p>
]]></description><pubDate>Fri, 23 Jan 2026 15:02:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=46733289</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=46733289</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46733289</guid></item><item><title><![CDATA[New comment by godzillafarts in "Code and Let Live"]]></title><description><![CDATA[
<p>> When you start a feature branch on your own, do you create an entirely new development environment to do it?<p>… yes? We have a few wrapper scripts around worktree operations that copy some docker volumes (pg data, bundle cache, etc.) from the base and spins up an entirely new stack on different ports with a host alias. We don’t have to install any deps beyond that because we copied over the ruby gems bundle cache and we’re using Yarn PnP + “zero installs” for client-side deps.</p>
]]></description><pubDate>Sun, 11 Jan 2026 02:55:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=46572297</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=46572297</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46572297</guid></item><item><title><![CDATA[New comment by godzillafarts in "Flock Hardcoded the Password for America's Surveillance Infrastructure 53 Times"]]></title><description><![CDATA[
<p>Hillsborough, NC <a href="https://www.hillsboroughnc.gov/Home/Components/News/News/856/14" rel="nofollow">https://www.hillsboroughnc.gov/Home/Components/News/News/856...</a></p>
]]></description><pubDate>Sat, 10 Jan 2026 03:22:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=46562451</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=46562451</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46562451</guid></item><item><title><![CDATA[New comment by godzillafarts in "Ask HN: What did you read in 2025?"]]></title><description><![CDATA[
<p>My favorites this year, be genre:<p>Sci-fi: Exiles by Mason Coile.<p>Fiction (Fantasy): The Bright Sword by Lev Grossman.<p>Fiction (post-apocalyptic / zombie): One Yellow Eye by Leigh Radford.<p>Non fiction: The Wager by David Grann.</p>
]]></description><pubDate>Sat, 27 Dec 2025 03:13:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=46398741</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=46398741</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46398741</guid></item><item><title><![CDATA[New comment by godzillafarts in "Scaling LLMs to Larger Codebases"]]></title><description><![CDATA[
<p>This is effectively what I'm doing, inspired by HumanLayer's Advanced Context Engineering guidelines: <a href="https://github.com/humanlayer/advanced-context-engineering-for-coding-agents/blob/main/ace-fca.md" rel="nofollow">https://github.com/humanlayer/advanced-context-engineering-f...</a><p>We've taken those prompts, tweaked them to be more relevant to us and our stack, and have pulled them in as custom commands that can be executed in Claude Code, i.e. `/research_codebase`, `/create_plan`, and `/implement_plan`.<p>It's working exceptionally well for me, it helps that I'm very meticulous about reviewing the output and correcting it during the research and planning phase. Aside from a few use cases with mixed results, it hasn't really taken off throughout our team unfortunately.</p>
]]></description><pubDate>Mon, 22 Dec 2025 17:56:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=46356633</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=46356633</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46356633</guid></item><item><title><![CDATA[New comment by godzillafarts in "Netflix to Acquire Warner Bros"]]></title><description><![CDATA[
<p>My wife and I have been so fed up with the streaming landscape that we’ve been amassing a library of physical Blu-rays on the cheap from places like McKay’s, etc. It takes a little work, but it’s been really good for our family and encourages us to be thoughtful about what we consume.<p>Honestly I don’t see us going back to streaming. The content isn’t that compelling; most of what we watch is older (we have kids, so lots of Disney movies), and we’re not really interested in most of the newer shows that would warrant us paying a subscription in order to watch new episodes as they drop. Before we cancelled, I remember looking at the carousel on my Netflix Home Screen and being completely uninterested in any of the content they were pushing.<p>I’m also not worried about some licensing deal nuking one of my kids’ favorite movies from the catalog now. No ads is just the cherry on top.</p>
]]></description><pubDate>Sat, 06 Dec 2025 12:28:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=46172793</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=46172793</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46172793</guid></item><item><title><![CDATA[New comment by godzillafarts in "Ask HN: What's your blog / portfolio stack?"]]></title><description><![CDATA[
<p>SvelteKit. All data is just markdown files preprocessed with mdsvex.<p>When I'm on the go I don't really do any building, I'll add/edit a markdown file, push it to the remote in a branch. Cloudflare Pages will then give me a preview environment. If I like what I see, I merge the PR and it automatically deploys to "production."</p>
]]></description><pubDate>Wed, 05 Mar 2025 14:21:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=43266747</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=43266747</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43266747</guid></item><item><title><![CDATA[New comment by godzillafarts in "Ask HN: What are your favorite index ETFs for Investing?"]]></title><description><![CDATA[
<p>VTI for the majority of post-tax investments, VUG for a smaller percent that I'm more aggressive with.</p>
]]></description><pubDate>Fri, 12 Jul 2024 19:57:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=40948846</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=40948846</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40948846</guid></item><item><title><![CDATA[New comment by godzillafarts in "FBI Stats Show Crime Still Declining, Despite the Assertions of Alarmists and"]]></title><description><![CDATA[
<p>If you find your interest piqued by this article and want to dive a little bit deeper into specific examples, I highly recommend reading Factfulness by Hans Rosling.<p>Yes, there are problems with crime reporting. Yes, violent crimes have been on a downward trend since the 1990s. Things can be both bad and getting better at the same time.</p>
]]></description><pubDate>Thu, 20 Jun 2024 21:24:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=40743558</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=40743558</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40743558</guid></item><item><title><![CDATA[New comment by godzillafarts in "Your GitHub pull request workflow is slowing everyone down"]]></title><description><![CDATA[
<p>My experience, and my team’s experience, with Graphite has been the complete opposite. Graphite slowed us down considerably, which is a shame because it seems like Graphite was purpose built for a development workflow like ours. We continually stack changes to make code review less burdensome. We had been doing it in just git for some time and decided to try out Graphite.<p>Graphite is quite hostile to collaborating on stacked branches. If one dev restacks and a collaborator is working in a dependent branch, they’re hosed. If a collaborator pushes a change to a dependent branch and they're not using Graphite, hosed. I think one of the main problems is that Graphite abstracts out potentially dangerous git commands into a fancy CLI such that the dev doesn’t really know what’s happening under the hood. It makes things even worse if you’re trying to collaborate on stacked PRs and not all devs use Graphite. Just forget about it.<p>We could have just been using this tool “wrong” but we had to stop using it within our team because it became so disruptive. At the time it seemed like you should only use Graphite if:<p>1. You are the only person working on a stack. You do not expect collaborators to be pushing changes to any of the branches within the stack, and<p>2. Everyone on the team is using it too.<p>Maybe things have changed in the intervening time, but I’m always dubious of tools like this.<p>It’s just git. It’s a wrapper CLI around git with a nice GitHub PR integration and a dashboard. It’s already easy to stack branches in git.</p>
]]></description><pubDate>Fri, 23 Feb 2024 13:08:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=39480095</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=39480095</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39480095</guid></item><item><title><![CDATA[New comment by godzillafarts in "A 2024 plea for lean software"]]></title><description><![CDATA[
<p>Clicked the link. Immediately greeted with a CTA banner, a Google ad, and a cookie banner. Dismissing the cookie banner immediately reveals another Google ad, but this one is sticky and follows me as I scroll. Reading through the article I came across at least three more advertisements.<p>Kind of difficult to take this seriously.</p>
]]></description><pubDate>Sat, 10 Feb 2024 15:37:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=39326876</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=39326876</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39326876</guid></item><item><title><![CDATA[New comment by godzillafarts in "Ask HN: Looking for lightweight personal blogging platform"]]></title><description><![CDATA[
<p>I've played around with several platforms in the last year or so. I've landed on the following setup that works very well for me and ticks all your boxes:<p>A SvelteKit[0] app hosted on Cloudflare pages. The repo is hosted on GitHub and hooked up to the Cloudflare Pages app [1]. On PRs, I get preview environments. On merge, the changes get deployed to my "production" website. I write blog posts and other content in markdown, which is then processed by mdsvex[2] with very minimal setup.<p>Mostly, my requirements were more focused around getting the actual framework, hosting, etc. out of my way so that I could focus on writing. Gatsby and Next.js were too configuration heavy and turned me off once I scratched beyond the surface.<p>[0] <a href="https://kit.svelte.dev/" rel="nofollow">https://kit.svelte.dev/</a>
[1] <a href="https://developers.cloudflare.com/pages/configuration/git-integration/" rel="nofollow">https://developers.cloudflare.com/pages/configuration/git-in...</a>
[2] <a href="https://github.com/pngwn/MDsveX">https://github.com/pngwn/MDsveX</a></p>
]]></description><pubDate>Tue, 06 Feb 2024 14:15:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=39274353</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=39274353</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39274353</guid></item><item><title><![CDATA[New comment by godzillafarts in "Ask HN: Books you read in 2023 and recommend for 2024?"]]></title><description><![CDATA[
<p>You might already be aware, but Morgan Housel has recently released a new book titled "Same as Ever: A Guide to What Never Changes."</p>
]]></description><pubDate>Thu, 07 Dec 2023 14:53:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=38557005</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=38557005</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38557005</guid></item><item><title><![CDATA[New comment by godzillafarts in "Ask HN: Books you read in 2023 and recommend for 2024?"]]></title><description><![CDATA[
<p>- Ballou, Brendan. Plunder: Private Equity's Plan to Pillage America.<p>- Smil, Vaclav. How the World Really Works: The Science Behind How We Got Here and Where We're Going.<p>- Doucleff, Michaeleen. Hunt, Gather, Parent: What Ancient Cultures Can Teach Us About the Lost Art of Raising Happy, Helpful Little Humans.</p>
]]></description><pubDate>Thu, 07 Dec 2023 14:46:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=38556918</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=38556918</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38556918</guid></item><item><title><![CDATA[New comment by godzillafarts in "The Opt Out Project"]]></title><description><![CDATA[
<p>I like the general idea and also try to conceal my identity as much as reasonably possible when out in the world. However, not having a smartphone just isn’t an option for a lot of parents. I’ve long wanted to ditch my iPhone and get a dumb flip phone, but my infant son’s daycare uses three (!) smartphone apps for critical services. Think checking in/out, door access, critical communications, payments. There are no alternatives; you can’t do anything of these things outside of their respective app.</p>
]]></description><pubDate>Sat, 10 Jun 2023 11:16:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=36269524</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=36269524</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36269524</guid></item><item><title><![CDATA[New comment by godzillafarts in "CEO Update: Paving the road forward with AI and community at the center"]]></title><description><![CDATA[
<p>In my opinion, SO doesn’t really have much of a choice here. Not only has the quality of questions and answers been on the decline, the entire SO experience is notoriously hostile for new comers. I find that ChatGPT/GitHub Copilot tend to give much better answers for the vast majority of programming related questions. It’s much faster, easier, and less intimidating to ask your tools questions knowing that you’ll most likely get a high quality answer and not get admonished for having asked the question in the first place.</p>
]]></description><pubDate>Sun, 04 Jun 2023 12:06:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=36184965</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=36184965</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36184965</guid></item><item><title><![CDATA[New comment by godzillafarts in "I wish GPT4 had never happened"]]></title><description><![CDATA[
<p>It may very well be, but it’s also an incredibly reductive view point. I’ve heard not one person speak to any sort of transition period wrt. training and upskilling of existing workers. So what do we do here? Just eliminate all junior positions? All internships, too? What happens when businesses decide they can’t economically hire any more juniors or do internships because LLMs can do the job better, faster, and cheaper?<p>Historically we’ve set aside a certain capacity, in almost every profession, to bring up and train the next generation. Apprenticeships, internships, etc. By definition, these people are shitty at their jobs, and that’s kinda the point. Were you brilliant at your first position?</p>
]]></description><pubDate>Sat, 08 Apr 2023 15:23:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=35494136</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=35494136</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35494136</guid></item><item><title><![CDATA[New comment by godzillafarts in "A Basic iPhone Feature Helps Criminals Steal Your Entire Digital Life"]]></title><description><![CDATA[
<p>Yeah the reporting here is laughable. The article literally states<p>> A similar vulnerability exists in Google’s Android mobile operating system.</p>
]]></description><pubDate>Sat, 25 Feb 2023 13:52:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=34936662</link><dc:creator>godzillafarts</dc:creator><comments>https://news.ycombinator.com/item?id=34936662</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34936662</guid></item></channel></rss>