<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: headcanon</title><link>https://news.ycombinator.com/user?id=headcanon</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 14 May 2026 15:17:55 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=headcanon" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by headcanon in "MacBook Neo Deep Dive: Benchmarks, Wafer Economics, and the 8GB Gamble"]]></title><description><![CDATA[
<p>My wife bought a Neo and has been very happy with it. I was wary of the 8gb memory limit but she is running claude code doing web development with a reasonable number of tabs open and no noticeable lag, so I'd say its definitely getting a lot of mileage out of it.<p>It honestly seems good enough that it might cannibalize Macbook Air sales.</p>
]]></description><pubDate>Wed, 13 May 2026 20:12:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=48126859</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=48126859</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48126859</guid></item><item><title><![CDATA[New comment by headcanon in "If AI writes your code, why use Python?"]]></title><description><![CDATA[
<p>As others have said, the main benefit with Python over Rust is library support especially with ML features. The other gap as I see it with Rust is the lack of native flexible UI support. The nice thing about Rust though is it can serve as a very fast and stable core for an app and offload specifics to TS and Python as their strengths allow, so you get the best of all worlds.<p>My current goto for desktop apps is Tauri, which give us a rust backend and TS fronted (usually React). Local ML features can be easily loaded as a python sidecar. Production bundling can be a little challenging but it seems to work well so far.<p>Sidenote: Golang is also an amazing language for LLM use, I generally do most of my "infra" stuff in Golang over Rust, but either work fine most of the time.</p>
]]></description><pubDate>Tue, 12 May 2026 00:44:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=48102758</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=48102758</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48102758</guid></item><item><title><![CDATA[New comment by headcanon in "Higher usage limits for Claude and a compute deal with SpaceX"]]></title><description><![CDATA[
<p>same, I struggle to use more than half of my weekly, even if I max out my 5-hour windows regularly during the day.</p>
]]></description><pubDate>Wed, 06 May 2026 17:26:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=48038912</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=48038912</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48038912</guid></item><item><title><![CDATA[New comment by headcanon in "Claude.ai unavailable and elevated errors on the API"]]></title><description><![CDATA[
<p>I've been seeing much higher session limits late at night (US time). Workday usage struggles though.<p>I'm looking into how to structure my work to run some autonomous-safe jobs overnight to take advantage of it.</p>
]]></description><pubDate>Tue, 28 Apr 2026 18:24:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=47938390</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47938390</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47938390</guid></item><item><title><![CDATA[New comment by headcanon in "Anthropic says OpenClaw-style Claude CLI usage is allowed again"]]></title><description><![CDATA[
<p>I've been trying to toe the line here myself, here's how I've been doing it. For context, I pay for a Max 5x subscription.<p>My main goal is to maximize my subscription token usage while trying to comply with the rules, but its not clear where the line is for automation so I feel like I need to be clever.<p>- regular development (most token use): all interactive claude mode, standard use case<p>- automated background development: experimenting with claude routines (first-class feature, on subscription)<p>- personal non-nanoclaw claude automations (claude -p): uses subscription token, but only called as needed (generally just fix something if something in my homelab infra goes does down, its set up to not fire on an exact cron time)<p>- other LLM based automations: usually openrouter API key, cheap models as needed<p>- nanoclaw: all API key based, but since its expensive I keep usage mostly minimal and try to defer anything heavyweight to one of the other automation strategies (nanoclaw mainly just connects my homelab infra with telegram)</p>
]]></description><pubDate>Tue, 21 Apr 2026 15:46:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=47850445</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47850445</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47850445</guid></item><item><title><![CDATA[New comment by headcanon in "Ask HN: Who is using OpenClaw?"]]></title><description><![CDATA[
<p>I tried openclaw when it was released, but I preferred the minimalism of nanoclaw and replaced it. I have it on a mac mini now<p>For context: I have additional automation with scripts set up on the mini, some of them call LLMs to do things like summarizing today's news.<p>I have other automations that are agentic and just run "claude -p" (mainly just checks status of other jobs and fixes them automatically). Agentic automations are great because they can handle unexpected situations (at the cost of predictability). They're all sandboxed and we have control over tools for the most part. Any files it would write to are typically git-controlled so we have change records and rollback built in.<p>Nanoclaw acts as an agentic layer but combines it with the communication layer over telegram to make it interactive.<p>I use it to go through my centralized task list (currently beads in my main 'wiki' monorepo), give me nudges for todos, I can also send it pictures of say, food and it will fetch a recipe and sort it into the wiki via a general "inbox" skill (claude has it as well). Every day at 12:30 it will give me a mini "standup" of all my personal projects and todos, and once in a while will give me some thoughts based on my interests.<p>Its set up to do appropriate tasks with local models to keep token costs down, so far it doesn't seem to cost more than $10-20/mo, it would use less if I didn't drive it with sonnet.<p>I'm still experimenting with it, and trying to go slow, one thing at a time. I don't give it access to anything super sensitive yet, and try to keep it observable.</p>
]]></description><pubDate>Thu, 16 Apr 2026 02:09:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=47787829</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47787829</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47787829</guid></item><item><title><![CDATA[New comment by headcanon in "The future of everything is lies, I guess: Work"]]></title><description><![CDATA[
<p>> Early career folk join some toxic startup and stay because the internet told them all CEOs are like this.<p>I literally did this 12 years ago based on this reasoning, its good you're trying to counter that with the next generation.<p>With that said, I do wish there was more discourse around systemic issues rather than the usual finger-pointing towards rival social groups. Unfortunately I feel like our language gets in the way, systems issues are more abstract, but "bad people" are more visceral and easy to talk about.</p>
]]></description><pubDate>Tue, 14 Apr 2026 16:29:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=47767790</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47767790</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47767790</guid></item><item><title><![CDATA[New comment by headcanon in "Programming Used to Be Free"]]></title><description><![CDATA[
<p>This is a big part of why I'm looking to develop a local LLM capability: having the hardware is a good start, but also developing the understanding on what the SoTA of local edge models can do, so we're not crippled if remote models stop being served, or at least some risk management.<p>It doesn't solve the problem of general LLM dependency (at the end of the day we gotta keep our brains sharp), but any LLM-based workflows aren't all of a sudden put at risk if we set up something that depends on it.</p>
]]></description><pubDate>Mon, 13 Apr 2026 16:33:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47754545</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47754545</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47754545</guid></item><item><title><![CDATA[New comment by headcanon in "So where are all the AI apps?"]]></title><description><![CDATA[
<p>Kind of. I'm finding that my terminal window in VSCode went from being at the bottom 1/3rd of my screen to filling the whole screen a lot of the time, replacing the code editor window. If AI is writing all of your code for you based on your chat session, a lot of editing capabilities aren't needed as much. While I wouldn't want to get rid of it entirely, I'd say an AI-native IDE would deemphasize code editing in favor of higher-level controls.</p>
]]></description><pubDate>Tue, 24 Mar 2026 15:01:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47503668</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47503668</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47503668</guid></item><item><title><![CDATA[New comment by headcanon in "So where are all the AI apps?"]]></title><description><![CDATA[
<p>I've been getting close to that myself, I've been using VSCode + Claude Code as my "control plane" for a bunch of projects but the current interface is getting unwieldly. I've tried superset + conductor and those have some improvements but are opinionated towards a specific set of workflows.<p>I do think there would be value in sharing your setup at some point if you get around to it, I think a lot of builders are in the same boat and we're all trying to figure out what the right interface for this is (or at least right for us personally).</p>
]]></description><pubDate>Tue, 24 Mar 2026 14:58:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=47503614</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47503614</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47503614</guid></item><item><title><![CDATA[New comment by headcanon in "Ask HN: How is AI-assisted coding going for you professionally?"]]></title><description><![CDATA[
<p>Most knowledge worker use computers today to do their work, but we don't necessarily call them computer or software engineers. I think it will be something like that, but the economy will need to adapt and grow in order to accommodate it.</p>
]]></description><pubDate>Sun, 15 Mar 2026 23:02:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=47392943</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47392943</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47392943</guid></item><item><title><![CDATA[New comment by headcanon in "Animated 'Firefly' Reboot in Development from Nathan Fillion, 20th TV"]]></title><description><![CDATA[
<p>I agree with most of the other comments so far, the "magic" of the show is going to be hard to replicate.<p>My bull case for this is that Nathan Fillion and crew have had 20 years of exposure to this fact and likely know what they're getting into and how to do it right. The only question is if they'll be able to execute. I'm excited!</p>
]]></description><pubDate>Sun, 15 Mar 2026 21:00:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=47391843</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47391843</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47391843</guid></item><item><title><![CDATA[New comment by headcanon in "Ask HN: How is AI-assisted coding going for you professionally?"]]></title><description><![CDATA[
<p>Thats exactly what we as software engineers do. We are constantly automating ourselves out of a job. The trick is that we never actually accomplish that, there will always be things for humans to do.<p>We're discovering so much latent demand for software, Jevon's paradox is in full effect and we're working more than ever <i>with</i> AI (at least I am).</p>
]]></description><pubDate>Sun, 15 Mar 2026 20:56:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=47391802</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47391802</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47391802</guid></item><item><title><![CDATA[New comment by headcanon in "Workers who love ‘synergizing paradigms’ might be bad at their jobs"]]></title><description><![CDATA[
<p>If anyone wants a chuckle, I vibe-coded an endless supply of "synergizing paradigm" terms as a slideshow for a fake corporation. It's fun to put on in the background on a tv somewhere to see if anyone notices.<p><a href="https://brightpath-global-solutions.com/" rel="nofollow">https://brightpath-global-solutions.com/</a><p>Edit: repo link: <a href="https://github.com/chronick/global-business-solutions" rel="nofollow">https://github.com/chronick/global-business-solutions</a></p>
]]></description><pubDate>Fri, 06 Mar 2026 15:56:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=47276588</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47276588</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47276588</guid></item><item><title><![CDATA[New comment by headcanon in "Claude is an Electron App because we've lost native"]]></title><description><![CDATA[
<p>+1 for Tauri, I've been using it for my recent vibe-coded experimental apps. Making rust the "center of gravity" for the app lets me use the best of all worlds:<p>- declarative-ish UI in typescript with react<p>- rust backend for performance-sensitive operations<p>- I can run a python sidecar, bundled with the app, that lets me use python libraries if I need it<p>If I can and it makes sense to, I'll pull functionality into rust progressively, but this give me a ton of flexibility and lets me use the best parts of each language/platform.<p>Its <i>fast</i> too and doesn't use a ton of memory like electron apps do.</p>
]]></description><pubDate>Tue, 03 Mar 2026 18:51:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=47236926</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47236926</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47236926</guid></item><item><title><![CDATA[New comment by headcanon in "MacBook Air with M5"]]></title><description><![CDATA[
<p>Yeah that would be nice. My thinking is that they don't want to cannibalize ipad sales.</p>
]]></description><pubDate>Tue, 03 Mar 2026 16:14:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=47234612</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47234612</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47234612</guid></item><item><title><![CDATA[New comment by headcanon in "A case for Go as the best language for AI agents"]]></title><description><![CDATA[
<p>I've been cruising on rust too, not just because it works great for LLMs but also the great interop:<p>- I can build SPAs with typescript and offload expensive operations to a rust implementation that targets wasm<p>- I can build a multi-platform bundled app with Tauri that uses TS for the frontend, rust for the main parts of the backend, and it can load a python sidecar for anything I need python for (ML stuff mainly)<p>- Haven't dived too much into games but bevy seems promising for making performant games without the overhead of using one of the big engines (first-class ECS is a big plus too)<p>It ended up solving the problem of wanting to use the best parts of all of these different languages without being stuck with the worst parts.</p>
]]></description><pubDate>Mon, 02 Mar 2026 20:00:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=47223291</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=47223291</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47223291</guid></item><item><title><![CDATA[New comment by headcanon in "Claude Code for Infrastructure"]]></title><description><![CDATA[
<p>Maybe have it build some toy apps just for fun! My wife and I were talking once about typing speed and challenged each other to a typing competition. the existing ones I found weren't very good and were riddled with ads, so I had Claude build one for us to use.<p>Or maybe ask yourself what do you like to do outside of work? maybe build an app or claude skill to help with that.<p>If you like to cook, maybe try building a recipe manager for yourself. I set up a repo to store all of my recipes in cooklang (similar to markdown), and set up claude skills to find/create/evaluate new recipes.<p>Building the toy apps might help you come up with ideas for larger things too.</p>
]]></description><pubDate>Wed, 04 Feb 2026 21:32:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=46892104</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=46892104</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46892104</guid></item><item><title><![CDATA[New comment by headcanon in "Agent Skills"]]></title><description><![CDATA[
<p>Its additional context that can be loaded by the agent as-needed. Generally it decides to load based on the skill's description, or you can tell it to load a specific skill if you want to.<p>So for your example, yes you might tell the agent "write a fantasy story" and you might have a "storytelling skill" that explains things like charater arcs, tropes, etc. You might have a separate "fiction writing" skill that defines writing styles, editing, consistency, etc.<p>All of this stuff is just 'prompt management' tooling though and isn't super commplicated. You <i>could</i> just paste the skill content into your context and go from there, this just provides a standardized spec for how to structure these on-demand context blocks.</p>
]]></description><pubDate>Tue, 03 Feb 2026 15:45:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=46872444</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=46872444</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46872444</guid></item><item><title><![CDATA[New comment by headcanon in "Why software stocks are getting pummelled"]]></title><description><![CDATA[
<p>I've been coming around to the view that the time spent code-reviewing LLM output is better spent creating evaluation/testing rigs for the product you are building. If you're able to highlight errors in tests (unit, e2e, etc.) and send the detailed error back to the LLM, it will generally do a pretty good job of correcting itself. Its a hill-climbing system, you just have to build the hill.</p>
]]></description><pubDate>Mon, 02 Feb 2026 20:37:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=46861151</link><dc:creator>headcanon</dc:creator><comments>https://news.ycombinator.com/item?id=46861151</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46861151</guid></item></channel></rss>