<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: mlaretallack</title><link>https://news.ycombinator.com/user?id=mlaretallack</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 09 Apr 2026 03:19:13 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=mlaretallack" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by mlaretallack in "I Ported Mac OS X to the Nintendo Wii"]]></title><description><![CDATA[
<p>100% agree, I find that sometimes I hit a dead end, but the things I build or learn on the way are usable at a later date.</p>
]]></description><pubDate>Wed, 08 Apr 2026 18:35:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47694358</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=47694358</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47694358</guid></item><item><title><![CDATA[New comment by mlaretallack in "Stop Publishing Garbage Data, It's Embarrassing"]]></title><description><![CDATA[
<p>I saw the RAC one this morning, though I was miss reading the graph, as why would the RAC publish such an obvious mistake.<p>I have written my own Home Assistant custom component for the UK fuel finder data, and yes, the data really is that bad.</p>
]]></description><pubDate>Sun, 29 Mar 2026 16:30:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=47564615</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=47564615</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47564615</guid></item><item><title><![CDATA[While one partner sleeps, another vibe codes]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.businessinsider.com/claude-gap-relationship-vibe-code-couples-2026-3">https://www.businessinsider.com/claude-gap-relationship-vibe-code-couples-2026-3</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47560608">https://news.ycombinator.com/item?id=47560608</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 29 Mar 2026 05:24:33 +0000</pubDate><link>https://www.businessinsider.com/claude-gap-relationship-vibe-code-couples-2026-3</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=47560608</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47560608</guid></item><item><title><![CDATA[New comment by mlaretallack in ".apks are just .zips; semi-legally hacking software for orphaned hardware [video]"]]></title><description><![CDATA[
<p>I use AWS Kiro, with the Claude models, and its only to happy to help. I give it the headerless ghidra, and decompilers etc... and away it goes.</p>
]]></description><pubDate>Sat, 28 Mar 2026 09:20:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=47552963</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=47552963</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47552963</guid></item><item><title><![CDATA[New comment by mlaretallack in "LLMs can be exhausting"]]></title><description><![CDATA[
<p>Yes, I follow the same sort of pattern, it took a while to convince myself that it was ok to leave the agent waiting, but it helps with the human context switching. I also try to stagger the agests, so one may be planning and designing, while another is coding, that way i can spend more time on the planning and designing ones and leave the coding one to get on with it.</p>
]]></description><pubDate>Mon, 16 Mar 2026 05:44:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47395536</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=47395536</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47395536</guid></item><item><title><![CDATA[New comment by mlaretallack in "The 100 hour gap between a vibecoded prototype and a working product"]]></title><description><![CDATA[
<p>Yes, I mostly do spec driven developement. And at the design stage, I always add in tests. I repeat this pattern for any new features or bug fixes, get the agent to write a test (unit, intergration or playwright based), reproduce the issue and then implement the change and retest etc... and retest using all the other tests.</p>
]]></description><pubDate>Sun, 15 Mar 2026 14:50:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=47387941</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=47387941</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47387941</guid></item><item><title><![CDATA[New comment by mlaretallack in "Relicensing with AI-Assisted Rewrite"]]></title><description><![CDATA[
<p>Its very important to understand the "how" it was done. The GPL hands the "compile" step, and the result is still GPL. The clean Room process uses 2 teams, separated by a specification. So you would have to<p>1. Generate specification on what the system does.
2. Pass to another "clean" system
3. Second clean system implements based just on the specification, without any information on the original.<p>That 3rd step is the hardest, especially for well known projects.</p>
]]></description><pubDate>Thu, 05 Mar 2026 06:22:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=47258204</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=47258204</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47258204</guid></item><item><title><![CDATA[New comment by mlaretallack in "How I use Claude Code: Separation of planning and execution"]]></title><description><![CDATA[
<p>I use AWS Kiro, and its spec driven developement is exactly this, I find it really works well as it makes me slow down and think about what I want it to do.<p>Requirements, design, task list, coding.</p>
]]></description><pubDate>Sun, 22 Feb 2026 14:00:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=47111077</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=47111077</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47111077</guid></item><item><title><![CDATA[New comment by mlaretallack in "Evaluating AGENTS.md: are they helpful for coding agents?"]]></title><description><![CDATA[
<p>I also try to avoid negative instructions. No scientific proof, just a feeling the same as you, "do not delete the tmp file" can lead too often to deleting the tmp file.</p>
]]></description><pubDate>Mon, 16 Feb 2026 18:28:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=47038379</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=47038379</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47038379</guid></item><item><title><![CDATA[New comment by mlaretallack in "Ask HN: Are you using an agent orchestrator to write code?"]]></title><description><![CDATA[
<p>Not the best way to do it, but I use xfce, multiple workspaces, each with there own version of AWS Kiro, and each kiro has its own project I am working on. This allows me to "switch context" easier between each project to check how the agents are getting on. Kiro also notifies me when an agent wants somthing. Usually I keep it to about 4 projects at a time, just to keep the context switching down.</p>
]]></description><pubDate>Fri, 13 Feb 2026 05:55:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=46999385</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=46999385</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46999385</guid></item><item><title><![CDATA[New comment by mlaretallack in "I started programming when I was 7. I'm 50 now and the thing I loved has changed"]]></title><description><![CDATA[
<p>I agree with this, I put myself in the "glorious hacks to bend the machine into doing things it was never really intended to do" camp, so the end game is somthing cool, now I can do 3 cool things before lunch instead of 3 cool things a year</p>
]]></description><pubDate>Tue, 10 Feb 2026 17:50:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=46963837</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=46963837</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46963837</guid></item><item><title><![CDATA[New comment by mlaretallack in "I am happier writing code by hand"]]></title><description><![CDATA[
<p>I am currently doing 6 projects at the same time, where before I would only of doing one at a time. This includes the requirements, design, implementation and testing.</p>
]]></description><pubDate>Sun, 08 Feb 2026 16:27:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=46935774</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=46935774</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46935774</guid></item><item><title><![CDATA[New comment by mlaretallack in "How to effectively write quality code with AI"]]></title><description><![CDATA[
<p>This is where I think its going, it feels that in the end we will end up with an "llm" language, one that is more suited to how an llm works and less human.</p>
]]></description><pubDate>Sat, 07 Feb 2026 05:58:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=46921691</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=46921691</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46921691</guid></item><item><title><![CDATA[New comment by mlaretallack in "UK government launches fuel forecourt price API"]]></title><description><![CDATA[
<p>The api seems very unstable (or it might just be me) keeps timing out when I try to fetch.</p>
]]></description><pubDate>Tue, 03 Feb 2026 05:24:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=46866849</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=46866849</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46866849</guid></item><item><title><![CDATA[New comment by mlaretallack in "TP-Link Tapo C200: Hardcoded Keys, Buffer Overflows and Privacy"]]></title><description><![CDATA[
<p>Very interesting, I had a go with Ghidra and AWS Amazon Q, used it to reverse the video feed on a toy drone. I did not think to look for GhidraMCP, would of made it a lot quicker.</p>
]]></description><pubDate>Fri, 19 Dec 2025 19:33:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=46329896</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=46329896</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46329896</guid></item><item><title><![CDATA[New comment by mlaretallack in "LineageOS 23"]]></title><description><![CDATA[
<p>I use moto devices, my current one is a g45. But I have also setup a second hand g30.</p>
]]></description><pubDate>Sun, 12 Oct 2025 07:28:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=45556073</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=45556073</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45556073</guid></item><item><title><![CDATA[New comment by mlaretallack in "Tau: Open-source PaaS – A self-hosted Vercel / Netlify / Cloudflare alternative"]]></title><description><![CDATA[
<p>In a company, there may me multiple teams, each doing there own projects, PaaS can be within the same company and provide a common way to do stuff without each team having to start from scratch each time.</p>
]]></description><pubDate>Fri, 12 Jul 2024 18:49:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=40948314</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=40948314</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40948314</guid></item><item><title><![CDATA[New comment by mlaretallack in "Why It Was Almost Impossible to Make the Blue LED [video]"]]></title><description><![CDATA[
<p>When I graduated, my first project was to make a UK LED based wait indicator. The problem was, the standard specified "white" light. At the time while LED's where made using UV LED's and phosphors was used to make it white. This meant that for 100 LED's, the coat would be about £100 just for the LED's. In the end we got the specification changed to include a yellow, (we showed that a tungsten light bulb running at 45vac is very yellow anyway, so it was more a correction in the spec than a change)</p>
]]></description><pubDate>Fri, 09 Feb 2024 19:26:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=39319264</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=39319264</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39319264</guid></item><item><title><![CDATA[New comment by mlaretallack in "Ask HN: My client want an agent on my laptop. Is this the new normal?"]]></title><description><![CDATA[
<p>I work for a large company and even before remote working, all company laptops had to run CrowdStrike, this sounds very similar. However the rules where very clear, no using non-company laptops for work, this included contractors etc...</p>
]]></description><pubDate>Fri, 17 Dec 2021 10:56:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=29590530</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=29590530</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29590530</guid></item><item><title><![CDATA[New comment by mlaretallack in "A Gov.uk site dedicated to porn?"]]></title><description><![CDATA[
<p>I am now taking bets on how long it will last.<p>'This site is hosted on a Raspberry Pi 4B in the author's living room (behind the couch)'</p>
]]></description><pubDate>Thu, 25 Nov 2021 17:38:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=29343270</link><dc:creator>mlaretallack</dc:creator><comments>https://news.ycombinator.com/item?id=29343270</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29343270</guid></item></channel></rss>