<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: jbeninger</title><link>https://news.ycombinator.com/user?id=jbeninger</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 30 Apr 2026 23:47:52 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=jbeninger" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by jbeninger in "Where the goblins came from"]]></title><description><![CDATA[
<p>I think that AGI will make heavy use of LLMs. It's not a straight path, but a component.<p>To compare with the human brain, have you ever been so drunk you don't remember the night, but you're told afterwards you had coherent conversations about complex topics?  There's some aspect of our minds that is akin to a next-token-generator, pulling information from other components to produce a conversation. But that component alone is not enough to produce intelligence.</p>
]]></description><pubDate>Thu, 30 Apr 2026 14:59:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47963550</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=47963550</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47963550</guid></item><item><title><![CDATA[New comment by jbeninger in "OpenAI – How to delete your account"]]></title><description><![CDATA[
<p>What a weird thing to say.</p>
]]></description><pubDate>Sat, 28 Feb 2026 13:12:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=47194941</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=47194941</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47194941</guid></item><item><title><![CDATA[New comment by jbeninger in "I started programming when I was 7. I'm 50 now and the thing I loved has changed"]]></title><description><![CDATA[
<p>I mean, it's not actually autocomplete.  But it serves the same role.  I know approximately what I want to type, maybe some of the details like argument-order are a bit foggy.  When I see the code I recognize it as my own and don't have too much trouble reading it.<p>But I use LLMs one level higher than autocomplete, at the level of an entire file.  My prompts tend to look like "We need a new class to store user pets.  Base it on the `person` class but remove Job and add Species.  For now, Species is an enum of CAT,DOG,FISH, but we'll probably turn that into a separate table later.  Validate the name is just a single word, and indicate that constraint when rendering it.  Read Person.js, CODE_CONVENTIONS.md, and DATA_STRUCTURES.md before starting.  When complete, read REFACTOR.md"<p>With the inclusion of code examples and conventions, the agent produces something pretty close to what I'd write myself, particularly when dealing with boilerplate Data or UI structures.  Things that share common structure or design philosophy, but not common enough to refactor meaningfully.<p>I still have to read it through and understand it as if I'd written it myself, but the LLM saves a lot of typing and acts as a second pair of eyes.  Codex currently is very defensive.  I have to remove some unnecessary guardrails, but it will protect against rare issues I might not have noticed on my first pass.</p>
]]></description><pubDate>Thu, 12 Feb 2026 13:34:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=46988638</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=46988638</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46988638</guid></item><item><title><![CDATA[New comment by jbeninger in "I started programming when I was 7. I'm 50 now and the thing I loved has changed"]]></title><description><![CDATA[
<p>Hah. I don't work with (coding) people, so thankfully I don't have that problem</p>
]]></description><pubDate>Tue, 10 Feb 2026 21:03:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=46966884</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=46966884</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46966884</guid></item><item><title><![CDATA[New comment by jbeninger in "I started programming when I was 7. I'm 50 now and the thing I loved has changed"]]></title><description><![CDATA[
<p>I've been through a few cycles of using LLMs and my current usage does scratch the itch.  It doesn't feel like I've lost anything.  The trick is I'm still programming.  I name classes and functions.  I define the directory structure.  I define the algorithms.  By the time I'm prompting an LLM I'm describing how the code will look and it becomes a supercharged autocomplete.<p>When I go overboard and just tell it "now I want a form that does X", it ends up frustrating, low-quality, and takes as long to fix as if I'd just done it myself.<p>YMMV, but from what I've seen all the "ai made my whole app" hype isn't trustworthy and is written by people who don't actually know what problems have been introduced until it's too late.  Traditional coding practices still reign supreme.  We just have a free pair of extra eyes.</p>
]]></description><pubDate>Tue, 10 Feb 2026 20:31:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=46966443</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=46966443</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46966443</guid></item><item><title><![CDATA[New comment by jbeninger in "AI fatigue is real and nobody talks about it"]]></title><description><![CDATA[
<p>I've found small features helps. If I ask the ai "do this", I wait 10 minutes for it to be finished, then another 30 understanding what was written<p>Instead, I start out broad. "I'm thinking of this feature. Let's talk about what components will go into it and where that code will live... Here are my initial thoughts. Let me know if I get anything wrong..."<p>This puts it in a conversation mode and gets you on the same page, and best of all it's quick. The llm agent isn't searching files and building, it's just giving general opinions<p>Once I have a good idea of the architecture, I move on to "write this class. Here is an overview of how I would do it", or point the agent to an existing file with the right conventions in place. Once again, if you've done your conversation doesn't take long. 20-second turnaround.<p>Then it's time to refine. "Move this function here, refactor that"<p>If you're going to have to understand the code anyway, read it while your writing it. Line by line, function by function, class by class. "Growing" a feature this way keeps you and the llm in sync. It doesn't go off on tangents. And building incrementally keeps you in the loop and in your flow.  You don't have 5 things going at once. You have 1, faster.<p>I've let agents do their thing for a dozen minutes and usually end up having to rewind the whole thing piece by piece to understand what's actually happening<p>If you're truly vibe coding, maybe you don't have to read the code and can have a dozen agents on a dozen projects. But if you're making Serious Software, I don't see how you can commit code unseen. And in that case, you're not losing anything working incrementally and reading code as it's written?</p>
]]></description><pubDate>Sun, 08 Feb 2026 21:49:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=46938865</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=46938865</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46938865</guid></item><item><title><![CDATA[New comment by jbeninger in "FracturedJson"]]></title><description><![CDATA[
<p>I'm in the JS ecosystem pretty regularly and "restrictive with no benefit" is the right description.  I use JSON5 now when I have to, which greatly reduces the restrictions. I already have a build step so throwing in a JSON5 -> JSON converter is negligible.<p>As for FracturedJson, it looks great. The basic problem statement of "either minified and unreadable or prettified and verbose" isn't one I had put my finger on before, but now that it's been said I can't unsee it.</p>
]]></description><pubDate>Sat, 03 Jan 2026 01:02:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=46471603</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=46471603</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46471603</guid></item><item><title><![CDATA[New comment by jbeninger in "Ask HN: What skills do you want to develop or improve in 2026?"]]></title><description><![CDATA[
<p>I do a lot of local dev using docker. I've taken to adding an image just for agents and using that to make modifications. Agents can install or run anything they need without touching my actual machine. I can also limit what they can read and write.</p>
]]></description><pubDate>Fri, 26 Dec 2025 13:46:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=46391920</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=46391920</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46391920</guid></item><item><title><![CDATA[New comment by jbeninger in "The pivot"]]></title><description><![CDATA[
<p>I think the point though is it's not a "story". It's a fundamental shift.  The shift is subtle and doesn't lend itself to sensationalism.<p>Entire countries have built their clout on fossil fuels. Wars have been fought.  Now any country with a sufficient manufacturing base can be energy independent. And the resource is less controllable by a small group of people.<p>AI and geopolitics and everything else is huge right now, but they're being bent to the will of the current world order.  The article is saying that that world order is going to change.</p>
]]></description><pubDate>Sat, 18 Oct 2025 18:02:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=45629229</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=45629229</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45629229</guid></item><item><title><![CDATA[New comment by jbeninger in "The least amount of CSS for a decent looking site (2023)"]]></title><description><![CDATA[
<p>I was with you up to "I do not give a shit"<p>What font has been more tested for quick pass-through of data than the default system fonts?  To me, this simply screams "This is the main body. You can find your information here"</p>
]]></description><pubDate>Tue, 07 Oct 2025 09:57:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=45501228</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=45501228</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45501228</guid></item><item><title><![CDATA[New comment by jbeninger in "Personal data storage is an idea whose time has come"]]></title><description><![CDATA[
<p>That looks really promising. It checks a lot of the boxes I already had in mind for such a system, like being able to continue a thread without exposing the whole thing to untrusted parties</p>
]]></description><pubDate>Sun, 05 Oct 2025 17:28:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=45483466</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=45483466</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45483466</guid></item><item><title><![CDATA[New comment by jbeninger in "Personal data storage is an idea whose time has come"]]></title><description><![CDATA[
<p>I think we're still missing an "open social" closed social network. Something like old-Facebook where you can post to an intimate audience of friends and family, and your feed isn't stuffed full of ads and influencers. Just a little private windows into your friends' lives.<p>That feels like something that could displace other social media in a way that's difficult for for-profit businesses to replicate since it goes against every product manager's instinct to leave engagement on the table, and would stand in stark contrast to the current social media landscape.</p>
]]></description><pubDate>Sun, 05 Oct 2025 15:40:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=45482382</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=45482382</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45482382</guid></item><item><title><![CDATA[New comment by jbeninger in "When I say “alphabetical order”, I mean “alphabetical order”"]]></title><description><![CDATA[
<p>Same here. I was surprised at everyone here who prefers the more-complicated-but-arguably-more-intuitive lexical sort.  Naive alphabetical sorts break some expectations, but don't produce any weird edge cases.<p>I wonder if there's an age divide at play here, where those of us who grew up with the naive alphabetical sort prefer it.</p>
]]></description><pubDate>Sun, 28 Sep 2025 23:45:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=45409072</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=45409072</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45409072</guid></item><item><title><![CDATA[New comment by jbeninger in "Show HN: I recreated Windows XP as my portfolio"]]></title><description><![CDATA[
<p>This is about input, not visual frame rate. 20 ui ticks per second?  For anything but gaming I'm probably good.</p>
]]></description><pubDate>Sun, 07 Sep 2025 10:31:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=45156996</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=45156996</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45156996</guid></item><item><title><![CDATA[New comment by jbeninger in "Developer's block"]]></title><description><![CDATA[
<p>That is a great insight. Often the thought that breaks through developer block for me is "<sigh> <i>fine</i>, I guess I can't do it that way"</p>
]]></description><pubDate>Sat, 23 Aug 2025 17:04:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=44997344</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=44997344</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44997344</guid></item><item><title><![CDATA[New comment by jbeninger in "A guide to Gen AI / LLM vibecoding for expert programmers"]]></title><description><![CDATA[
<p>It depends. I had an LLM whip up a JavaScript function "theThursdayAfterNextSunday"<p>JavaScript isn't my primary language and date functions are always a pain. But I know enough to review and test the code quickly.  It doesn't change a 1-week project into a 4-hour one, but it can change a 20-minute project into a 5-minute one.</p>
]]></description><pubDate>Fri, 22 Aug 2025 18:00:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=44987613</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=44987613</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44987613</guid></item><item><title><![CDATA[New comment by jbeninger in "The End of Handwriting"]]></title><description><![CDATA[
<p>The thing about being left handed is your hand will naturally drag across the fresh ink of a fountain pen.</p>
]]></description><pubDate>Wed, 20 Aug 2025 11:35:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=44960902</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=44960902</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44960902</guid></item><item><title><![CDATA[New comment by jbeninger in "The natural diamond industry is getting rocked. Thank the lab-grown variety"]]></title><description><![CDATA[
<p>I bought mine from therealreal.com. I got a lot more ring than I'd normally be able to afford, and it's an elegant design you don't see everywhere.<p>Check with the recipient beforehand, of course. You're not the one who has to wear it, and no amount of logic is going to change a mind that wants a brand new, natural diamond.</p>
]]></description><pubDate>Sun, 27 Jul 2025 13:42:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=44701257</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=44701257</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44701257</guid></item><item><title><![CDATA[New comment by jbeninger in "Don't animate height"]]></title><description><![CDATA[
<p>I think there's a bit of an "everybody knows that" [1] phenomenon when it comes to knowledge like this. Devs come from different backgrounds and work on different types of projects. There are 10000 things you expected to know to be an expert, and all of us are continually learning.<p>[1] <a href="https://xkcd.com/1053/" rel="nofollow">https://xkcd.com/1053/</a></p>
]]></description><pubDate>Tue, 22 Jul 2025 20:25:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=44652577</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=44652577</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44652577</guid></item><item><title><![CDATA[New comment by jbeninger in "Measuring the impact of AI on experienced open-source developer productivity"]]></title><description><![CDATA[
<p>I'd say I write the majority of my code in areas I'm familiar with, but spend the majority of my _time_ on sections I'm not familiar with, and ai helps a lot more with the latter than the former. I've always felt my coding life is speeding through a hundred lines of easy code then getting stuck on the 101st. Then as I get more experienced that hundred becomes 150, then 200, but always speeding through the easy part until I have to learn something new.<p>So I never feel like I'm getting any faster. 90% of my time is still spent in frustration, even when I'm producing twice the code at higher quality</p>
]]></description><pubDate>Thu, 10 Jul 2025 22:09:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=44526219</link><dc:creator>jbeninger</dc:creator><comments>https://news.ycombinator.com/item?id=44526219</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44526219</guid></item></channel></rss>