<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: christofosho</title><link>https://news.ycombinator.com/user?id=christofosho</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 01 May 2026 10:18:08 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=christofosho" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by christofosho in "The West forgot how to make things, now it’s forgetting how to code"]]></title><description><![CDATA[
<p>... Yeah, that was my issue as well. I'm pretty sure it _is_ AI generated, and flagged it. Hopefully moderation can follow up.</p>
]]></description><pubDate>Sun, 26 Apr 2026 18:14:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=47912499</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47912499</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47912499</guid></item><item><title><![CDATA[New comment by christofosho in "Commenting and approving pull requests"]]></title><description><![CDATA[
<p>Perhaps in a small codebase without issue tracking this might be something leverage. It's just not reasonable with 100k+ lines of enterprise grade code.</p>
]]></description><pubDate>Sun, 26 Apr 2026 02:05:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=47906617</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47906617</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47906617</guid></item><item><title><![CDATA[New comment by christofosho in "Commenting and approving pull requests"]]></title><description><![CDATA[
<p>You might be approaching PR comments differently than I've seen. When a comment is something to be addressed, it's either put into a new development task (i.e. on something like Jira), or it is completed before the PR merges. I'm not sure that having comments in the code surfaces that information in a useful manner. The code is for the code, not for what the code could be. The comments on what it could be should be handled outside the code at a different abstraction layer.</p>
]]></description><pubDate>Sat, 25 Apr 2026 17:15:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=47902949</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47902949</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47902949</guid></item><item><title><![CDATA[New comment by christofosho in "I'm OK being left behind, thanks"]]></title><description><![CDATA[
<p>Some subscriptions offer "unlimited tokens" for certain models. i.e. GitHub co-pilot can be unlimited for GPT-4o and GPT-4.1 (and, actually, GPT-5 mini!). So: I spent some time with those models to see what level of scaffolding and breaking things down (hand holding) was required to get them to complete a task.<p>Why would I do that? Well, I wanted to understand more deeply how differences in my prompting might impact the outcomes of the model. I also wanted to get generally better at writing prompts. And of course, improving at controlling context and seeing how models can go off the rails. Just by being better at understanding these patterns, I feel more confident in general at when and how to use LLMs in my daily work.<p>I think, in general, understanding not only that earlier models are weaker, but also _how_ they are weaker, is useful in its own right. It gives you an extra tool to use.<p>I will say, the biggest findings for "weaknesses" I've found are in training data. If you're keeping your libraries up-to-date, and you're using newer methods or functionality from those libraries, AI will constantly fail to identify with those new things. For example, Zod v4 came out recently and the older models absolutely fail to understand that it uses some different syntax and methods under the hood. Jest now supports `using` syntax for its spyOn method, and models just can't figure it out. Even with system prompts and telling them directly, the existing training data is just too overpowering.</p>
]]></description><pubDate>Fri, 20 Mar 2026 22:53:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=47461854</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47461854</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47461854</guid></item><item><title><![CDATA[New comment by christofosho in "Every layer of review makes you 10x slower"]]></title><description><![CDATA[
<p>Tight feedback loops feel good.</p>
]]></description><pubDate>Tue, 17 Mar 2026 22:53:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47419463</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47419463</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47419463</guid></item><item><title><![CDATA[New comment by christofosho in "How I write software with LLMs"]]></title><description><![CDATA[
<p>Find another developer and pair/work together on a project. It doesn't need to be serious, but you should organize it like it is. So, a breakdown of tasks needed to accomplish the goal first. And then many pull requests into the source that can be peer reviewed.</p>
]]></description><pubDate>Mon, 16 Mar 2026 11:29:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=47397619</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47397619</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47397619</guid></item><item><title><![CDATA[New comment by christofosho in "How I write software with LLMs"]]></title><description><![CDATA[
<p>I like reading these types of breakdowns. Really gives you ideas and insight into how others are approaching development with agents. I'm surprised the author hasn't broken down the developer agent persona into smaller subagents. There is a lot of context used when your agent needs to write in a larger breadth of code areas (i.e. database queries, tests, business logic, infrastructure, the general code skeleton). I've also read[1] that having a researcher and then a planner helps with context management in the pre-dev stage as well. I like his use of multiple reviewers, and am similarly surprised that they aren't refined into specialized roles.<p>I'll admit to being a "one prompt to rule them all" developer, and will not let a chat go longer than the first input I give. If mistakes are made, I fix the system prompt or the input prompt and try again. And I make sure the work is broken down as much as possible. That means taking the time to do some discovery before I hit send.<p>Is anyone else using many smaller specific agents? What types of patterns are you employing? TIA<p>1. <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>
]]></description><pubDate>Mon, 16 Mar 2026 02:35:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=47394537</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47394537</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47394537</guid></item><item><title><![CDATA[New comment by christofosho in "Ask HN: Please restrict new accounts from posting"]]></title><description><![CDATA[
<p>Aren't down votes on this forum restricted to 500+ karma? And how would those compare to flagging? I'd hate for people under 500 karma to think they need to flag a post in order to have it get any attention by moderation. And, with your idea that LLMs help folks write, wouldn't that make the community worse for them?<p>And what about users like this, whose comment are very much entirely LLM generated and possibly even a bot? <a href="https://news.ycombinator.com/threads?id=BelVisgarra">https://news.ycombinator.com/threads?id=BelVisgarra</a></p>
]]></description><pubDate>Sun, 08 Mar 2026 23:54:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=47302999</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47302999</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47302999</guid></item><item><title><![CDATA[New comment by christofosho in "Ask HN: Please restrict new accounts from posting"]]></title><description><![CDATA[
<p>Yikes. That account is like the epitome of LLM posting. It's a shame, too, because it makes me feel less inclined to read discussion on this forum.</p>
]]></description><pubDate>Sun, 08 Mar 2026 23:45:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=47302927</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47302927</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47302927</guid></item><item><title><![CDATA[New comment by christofosho in "Ask HN: How are you all staying sane?"]]></title><description><![CDATA[
<p>Somehow I missed that, even though I regularly play several of the instruments in my home... Thanks for reminding me of one more awesome thing!</p>
]]></description><pubDate>Thu, 05 Mar 2026 02:58:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47256944</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47256944</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47256944</guid></item><item><title><![CDATA[New comment by christofosho in "Ask HN: How are you all staying sane?"]]></title><description><![CDATA[
<p>Doing things I love:<p><pre><code>  - Learning French and Japanese
  - Drinking tea and exploring tea culture
  - Playing Geoguessr (or in my case, Geotastic) to see different places in the world and just generally have a fun time figuring out languages, and unique traits of different countries and cultures
  - Reading and watching science fiction, lots and lots of it!
  - Coding. I really do love writing code.
  - Trying to improve my communication skills, and ability to break down and describe tasks. It relates to AI, but also relates to working and interacting with other humans. :)
  - Working
  - Hanging out with my family
  - Eating yummy food that I enjoy
  - Doing crosswords
  - Playing video games
  - Writing
  - Rock climbing, other physical activities like walking or doing a quick work out
  - Cleaning and fixing the home.
</code></pre>
These don't solve all of the problems, but they make me feel better about my own life and that positivity helps me interact with others and think more positively about the world and all the cool things in it.</p>
]]></description><pubDate>Mon, 02 Mar 2026 21:19:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47224214</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47224214</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47224214</guid></item><item><title><![CDATA[New comment by christofosho in "Productivity gains from AI coding assistants haven’t budged past 10% – survey"]]></title><description><![CDATA[
<p>In our org that would not fly. They would be required to break it down. Did you or anyone tell them they need to make it readable for the rest of the team?</p>
]]></description><pubDate>Sat, 21 Feb 2026 01:44:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=47096590</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47096590</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47096590</guid></item><item><title><![CDATA[New comment by christofosho in "I'm not worried about AI job loss"]]></title><description><![CDATA[
<p>I understand where you're coming from, and think there is something missing in your final paragraph that I'm curious to understand. If LLMs do end up improving productivity, what would make them go away? I think automated code generators are here until something more performant supersedes them. So, what in your mind might be possibilities of that thing?</p>
]]></description><pubDate>Sat, 14 Feb 2026 04:09:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=47011476</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=47011476</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47011476</guid></item><item><title><![CDATA[New comment by christofosho in "RS-SDK: Drive RuneScape with Claude Code"]]></title><description><![CDATA[
<p>I did write a whole bunch of code for the project! I recognize your name, hope all is well. :)</p>
]]></description><pubDate>Thu, 05 Feb 2026 03:58:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=46895518</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=46895518</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46895518</guid></item><item><title><![CDATA[New comment by christofosho in "RS-SDK: Drive RuneScape with Claude Code"]]></title><description><![CDATA[
<p>It's definitely sort of that. You can run your own server, as well, though this comes with its own limitations (and inherently takes away from the want for more players). Most of the developers have varying goals with the project. When I was working on the project, my care was primarily for making the game as close to the original as possible using "replays" by dedicated players before the original shut down. It was fun to write code for something that felt like it would give some folks a nostalgia hit.<p>I think optimally, you'd do something more akin to a "group ironman" with some friends. This guarantees you've got others around.</p>
]]></description><pubDate>Thu, 05 Feb 2026 00:09:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=46893809</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=46893809</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46893809</guid></item><item><title><![CDATA[Ask HN: Which tools, skills, and knowledge are your alternative to LLMs?]]></title><description><![CDATA[
<p>A lot of folks are upskilling themselves on how to effectively use LLMs for tasks such as software development, planning, writing, and more. Along with doing this, I think it's important to contrast the output of LLMs to what we can accomplish without them. What surprises you that people use LLMs to do instead of doing it by other means?<p>An example I've seen is find and replace in a file, instead of using the built-in editor tool, or a tool such as sed, possibly combined with regular expressions.<p>What are your thoughts?</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44243442">https://news.ycombinator.com/item?id=44243442</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 11 Jun 2025 01:48:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=44243442</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=44243442</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44243442</guid></item><item><title><![CDATA[New comment by christofosho in "Quiet Quitting: Why Employees Are Demanding Fairness and Boundaries"]]></title><description><![CDATA[
<p>Companies need to set the bar and uphold it. Saying people are "quiet quitting" is synonymous with saying, "we don't know how to set and uphold standards". Putting the blame on the employee instead of having clear guidelines (i.e. making it a performance problem) is an unfortunate scapegoat used to shift the blame and accountability. A job is a contract. Ain't just one sided.<p>Edit: Amending to mention that there are companies that do quite well at upholding standards. To those, thank you for trying.</p>
]]></description><pubDate>Sun, 26 Jan 2025 22:46:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=42835005</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=42835005</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42835005</guid></item><item><title><![CDATA[New comment by christofosho in "Terence Tao on O1"]]></title><description><![CDATA[
<p>I think there may be a set of people that have figured out, 1) how to interact with LLMs; and 2) what in their lives is improved when interacting with LLMs. I am in the group that has not found the best use case for my own life, and have never needed it for improving anything I need to get done. Always looking for suggestions, though!</p>
]]></description><pubDate>Sat, 14 Sep 2024 23:24:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=41543867</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=41543867</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41543867</guid></item><item><title><![CDATA[New comment by christofosho in "Why Are Older Americans Drinking So Much?"]]></title><description><![CDATA[
<p>I enjoy brewing some loose leaf* green tea with varying ratios (leaf, water, temperature, time). Others might enjoy it! I think it's a fantastic replacement beverage that helped me cut soda.<p>I like doing 4g of Japanese sencha leaves, 80-100mL of water, at 60-70C for 30s to a minute. Second steep 10 seconds, and third 30-40 seconds. But honestly the fun is in experimenting! (plus at lower temperatures you can drink it right away!)</p>
]]></description><pubDate>Sun, 31 Mar 2024 00:45:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=39880231</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=39880231</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39880231</guid></item><item><title><![CDATA[New comment by christofosho in "Why Are Older Americans Drinking So Much?"]]></title><description><![CDATA[
<p>Congrats on your feat of strength! To others looking to quit, I've read[1] that it's dangerous to quit cold turkey. Ease yourself out, and save yourself from possible complications.<p>1. <a href="https://americanaddictioncenters.org/alcohol/withdrawal-detox/cold-turkey" rel="nofollow">https://americanaddictioncenters.org/alcohol/withdrawal-deto...</a></p>
]]></description><pubDate>Sun, 31 Mar 2024 00:37:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=39880169</link><dc:creator>christofosho</dc:creator><comments>https://news.ycombinator.com/item?id=39880169</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39880169</guid></item></channel></rss>