<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: zuuna</title><link>https://news.ycombinator.com/user?id=zuuna</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 30 Aug 2026 10:30:25 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=zuuna" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by zuuna in "The Twelve-Factor App (2025)"]]></title><description><![CDATA[
<p>Gets worse. A lot of accounts were set up by my boss so it's all his 2FA. Then some of these require the phone to scan a QR-Code. We work remotely.</p>
]]></description><pubDate>Fri, 28 Aug 2026 19:12:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=49483028</link><dc:creator>zuuna</dc:creator><comments>https://news.ycombinator.com/item?id=49483028</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49483028</guid></item><item><title><![CDATA[New comment by zuuna in "Show HN: LLM Inference Calculator – Estimate VRAM, Latency, and Throughput"]]></title><description><![CDATA[
<p>How about the other way around? I'll tell you my hardware and you tell me the possible stats?
I've been having some problems with bigger models, using MoE to make it work for longer/tedious work like nightly sweeps that don't really on speed.</p>
]]></description><pubDate>Fri, 28 Aug 2026 19:10:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=49483002</link><dc:creator>zuuna</dc:creator><comments>https://news.ycombinator.com/item?id=49483002</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49483002</guid></item><item><title><![CDATA[New comment by zuuna in "Show HN: My Claude quota ran out in 10 minutes, so I made a tool to find out why"]]></title><description><![CDATA[
<p>Genuinely of the best reasons to build a tool tho? "I had a problem X, so I did nothing and kept complaining (without LLM)" would be pretty tiring to me personally</p>
]]></description><pubDate>Thu, 27 Aug 2026 17:41:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=49468443</link><dc:creator>zuuna</dc:creator><comments>https://news.ycombinator.com/item?id=49468443</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49468443</guid></item><item><title><![CDATA[New comment by zuuna in "Don't Wordle"]]></title><description><![CDATA[
<p>I love wordle and dontwordle. What I love more is Poople.io.</p>
]]></description><pubDate>Wed, 26 Aug 2026 09:38:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=49446241</link><dc:creator>zuuna</dc:creator><comments>https://news.ycombinator.com/item?id=49446241</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49446241</guid></item><item><title><![CDATA[New comment by zuuna in "Show HN: Voicecard – a CLI that resolves contradictions in rambling voice notes"]]></title><description><![CDATA[
<p>Voicecard is a small CLI that reads a voice-note transcript and outputs only the tasks you actually meant as JSON. The whole point: when you change your mind mid-note or come to a different conclusion in a discussion it keeps the final version instead of just noting down everything you've said.<p>echo "I'm going to the store to get grapes today, no actually I'm getting apples." | voicecard<p>{"items": [{"kind": "card", "text": "Get apples from the store"}]}<p>Not "grapes and apples," and not just "grapes". Most tools gives you one of those two. I built this because I dictate notes on the go and change my mind halfway through a sentence or just think of more and more info to several tasks I've spoken of which need to be categorized correctly. Transcription tools transcribe and summarize, they do not notice you overturning yourself or actually reason about what you said.<p>It runs against a local Ollama model by default (qwen2.5:7b handles it fine) or with your own OpenAI-compatible API key. No server of mine, no account, no telemetry. Transcript in, JSON out.<p>Before posting I tested the annoying cases: full retractions ("add milk... wait, we still have milk, scratch that" should produce nothing, not a task about not needing milk), chained reversals ("apples. no, grapes. actually no, apples"), and filler words that sound like corrections but aren't like "actually" used as a transition into a new thought. Plus negative controls. Inventing corrections would be worse than one that misses them.<p>One result surprised me: the small 7B local model handles most of this. 15 of 18 adversarial cases and the three misses are documented in the README, including one my own fix caused: an example I added to handle retractions now over reads the filler word "wait" and dropped an item in one test. Fixing a prompt failure by example can cause a different one.
I compared it against a "frontier" model (ox-alpha, a current stealth LLM, via a free API tier). It got rate-limited on 3 of 7 calls in the same run so I can't give clear numbers here.<p>I also fed it a test meeting transcript I wrote: a PM and two devs argue about ONE feature ticket and realize it should be split into two tickets. It split the tickets correctly, put the right details in each and ignored a proposal that got argued down mid-meeting. It also dropped one explicitly stated assignee and kinda distorted the reason one ticket was pushed back. I'll keep working on that, I need the metadata for a finished product.<p>As I said it takes text in, not audio. Transcription is a solved by plenty of good Whisper wrappers. The part that interested me is working out what was actually meant.<p>Longer term I'd like to wire this into Jira/Linear/Monday-style boards and possibly into a git-native project management tool I run (Zuuna). None of that is needed to use it.
This could get extremely powerful once the AI knows your stack/project/whatever you talk about and actually KNOWS where this belongs (untested for now).<p>Since this is running on my homelab I also save on API calls. I make about ~3-5 notes a day when outside, that's easily a hundred notes a month and a few bucks on API costs. First I let it run on another device (which is usually sleeping when I am out and about) and used an n8n cron to hold and send them once ready. I can freely send it from my iPhone via Shortcuts (basically a POST to the n8n URL with an IF for hairpinning issues). I get notified via webhook what the AI decided, which tickets got filed (ticket number and title) or if it got sorted into an entirely different category (like personal notes etc.).<p>Tell me what you think!<p>// AI (CC) assisted heavily in building it and especially the test cases, mainly because I was too lazy to actually write the scenarios myself.</p>
]]></description><pubDate>Tue, 25 Aug 2026 10:57:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=49431777</link><dc:creator>zuuna</dc:creator><comments>https://news.ycombinator.com/item?id=49431777</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49431777</guid></item><item><title><![CDATA[Show HN: Voicecard – a CLI that resolves contradictions in rambling voice notes]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/kenzotp/voicecard">https://github.com/kenzotp/voicecard</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49431775">https://news.ycombinator.com/item?id=49431775</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Tue, 25 Aug 2026 10:56:59 +0000</pubDate><link>https://github.com/kenzotp/voicecard</link><dc:creator>zuuna</dc:creator><comments>https://news.ycombinator.com/item?id=49431775</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49431775</guid></item><item><title><![CDATA[New comment by zuuna in "ElevenLabs, TwelveLabs, ThirteenLabs"]]></title><description><![CDATA[
<p>buying up all domains right now, thanks for making me rich</p>
]]></description><pubDate>Sat, 22 Aug 2026 16:18:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=49401200</link><dc:creator>zuuna</dc:creator><comments>https://news.ycombinator.com/item?id=49401200</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49401200</guid></item><item><title><![CDATA[New comment by zuuna in "How to compromise your system with a job interview"]]></title><description><![CDATA[
<p>Being on the job hunt myself this is very helpful! I do however prepare public repos and showcases for such interviews/applications, I hope my luck streak doesnt run out</p>
]]></description><pubDate>Thu, 20 Aug 2026 18:38:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=49378448</link><dc:creator>zuuna</dc:creator><comments>https://news.ycombinator.com/item?id=49378448</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49378448</guid></item></channel></rss>