<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: yokuze</title><link>https://news.ycombinator.com/user?id=yokuze</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 08 Apr 2026 01:44:26 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=yokuze" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by yokuze in "Ask HN: How do you handle marketing as a solo technical founder?"]]></title><description><![CDATA[
<p>My question exactly.</p>
]]></description><pubDate>Tue, 07 Apr 2026 00:54:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=47669389</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=47669389</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47669389</guid></item><item><title><![CDATA[New comment by yokuze in "SQLite in Production: Lessons from Running a Store on a Single File"]]></title><description><![CDATA[
<p>> The technical fix was embarrassingly simple: stop pushing to main every ten minutes.<p>Wait, you push straight to main?<p>> We added a rule — batch related changes, avoid rapid-fire pushes. It's in our CLAUDE.md (the governance file that all our AI agents follow):<p>> Avoid rapid-fire pushes to main — 11 pushes in 2h caused overlapping Kamal deploys with concurrent SQLite access.<p>Wait, you let _Claude_ push your e-commerce code straight to main which immediately results in a production deploy?</p>
]]></description><pubDate>Sat, 04 Apr 2026 11:50:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47638212</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=47638212</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47638212</guid></item><item><title><![CDATA[New comment by yokuze in "What Claude Code chooses"]]></title><description><![CDATA[
<p>I found that having a rule like this helped some too:<p>> * ABSOLUTELY DO NOT use `@deprecated` on anything unless you are explicitly asked to.      Always fully refactor and delete old code as-needed instead of deprecating it<p><a href="https://github.com/yokuze/aix-config/blob/f5094b5c5169261faeb802d16ec7695ecf274ded/rules/do-not.md?plain=1#L13" rel="nofollow">https://github.com/yokuze/aix-config/blob/f5094b5c5169261fae...</a></p>
]]></description><pubDate>Fri, 27 Feb 2026 12:07:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=47179582</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=47179582</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47179582</guid></item><item><title><![CDATA[New comment by yokuze in "Hacking Tauri for Designer"]]></title><description><![CDATA[
<p>Absolutely not the same thing, but I’m going to shamelessly plug my Tauri MCP in case you find it helpful: <a href="https://github.com/hypothesi/mcp-server-tauri" rel="nofollow">https://github.com/hypothesi/mcp-server-tauri</a><p>With the debugging capabilities it gives agents, I find I don’t miss Chrome DevTools so much.</p>
]]></description><pubDate>Fri, 27 Feb 2026 05:12:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=47176818</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=47176818</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47176818</guid></item><item><title><![CDATA[New comment by yokuze in "What Claude Code chooses"]]></title><description><![CDATA[
<p>I had the same question. There are older and more established component libraries, so why’d this one win? It seems like a scientific answer would be worth a lot.</p>
]]></description><pubDate>Fri, 27 Feb 2026 05:07:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47176782</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=47176782</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47176782</guid></item><item><title><![CDATA[New comment by yokuze in "What Claude Code chooses"]]></title><description><![CDATA[
<p>Same, minus the contractors part</p>
]]></description><pubDate>Fri, 27 Feb 2026 04:59:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=47176723</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=47176723</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47176723</guid></item><item><title><![CDATA[New comment by yokuze in "Modern CSS Code Snippets: Stop writing CSS like it's 2015"]]></title><description><![CDATA[
<p>I don't follow. Assuming that the caniuse data is also representative of your users (a big assumption), then it's 10-20% of either group. Adjusting the % for the subset that is "your users" can result in either a higher or lower %.<p>Let me know if I'm missing something.</p>
]]></description><pubDate>Wed, 18 Feb 2026 02:11:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=47056241</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=47056241</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47056241</guid></item><item><title><![CDATA[New comment by yokuze in "Modern CSS Code Snippets: Stop writing CSS like it's 2015"]]></title><description><![CDATA[
<p>Alternate title: "How to break your website's styling for 10-20% of your users"<p>This is a nice reference, and some properties like `scrollbar-gutter` can be used for progressive enhancement.<p>However, many options listed will require some kind of fallback if `autoprefixer`/`postcss`/etc. doesn't cover it, and if you don't want to exclude a large fraction of your users.<p>It's reasonable in some cases to have both "new" and the old fallback code side-by-side until _your users's_ browser adoption stats indicate that you can delete the old fallback code without breaking a substantial number of users.<p>But the reality of using the new CSS hotness is that if the code is not supported by a % threshold that is much higher than many of these techniques show, it actually _increases_ your workload in the near term. You write new + the fallback + ensure that they don't interfere with each other.<p>P.S. Note the emphasis on _your users_ in the paragraph above. Global browser stats are fine as a basic reference, but your specific site/app's userbase demographics affect the actual percentages tremendously. That may mean you can use ALL of these new techniques today, or some, or none of them.<p>If your audience is primarily software developers, then after measuring you may find you can use these without a fallback. If it includes people in less wealthy communities or countries, or in countries with restricted access to mobile phone markets, you likely cannot.</p>
]]></description><pubDate>Mon, 16 Feb 2026 17:00:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=47037393</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=47037393</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47037393</guid></item><item><title><![CDATA[Ask HN: How do you deal with fragmented attention?]]></title><description><![CDATA[
<p>Since coding agents have become more capable, I often have them working on 2-5 disparate tasks simultaneously during my work day. The tasks are often in separate or even unrelated repos. Or worse, sometimes the tasks are similar enough that they are easily mixed-up.<p>Much of my attention goes to switching: Checking on results, restarting stopped tasks, fixing errors or providing hints, etc.<p>The context-switching takes a toll in the form of distraction and inefficiency.<p>What do you do that helps with this?</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47018290">https://news.ycombinator.com/item?id=47018290</a></p>
<p>Points: 3</p>
<p># Comments: 2</p>
]]></description><pubDate>Sat, 14 Feb 2026 20:54:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=47018290</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=47018290</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47018290</guid></item><item><title><![CDATA[New comment by yokuze in "Ask HN: How are you doing RAG locally?"]]></title><description><![CDATA[
<p>Fixed. Thank you!</p>
]]></description><pubDate>Sat, 17 Jan 2026 02:35:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=46654752</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=46654752</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46654752</guid></item><item><title><![CDATA[New comment by yokuze in "Ask HN: How are you doing RAG locally?"]]></title><description><![CDATA[
<p>I made, and use this: <a href="https://github.com/libragen/libragen" rel="nofollow">https://github.com/libragen/libragen</a><p>It’s a CLI tool and MCP server for creating discrete, versioned “libraries” of RAG-able content.<p>Under the hood, it uses an embedding model locally. It chunks your content and stores embeddings in SQLite. The search functionality uses vector + keyword search + a re-ranking model.<p>You can also point it at any GitHub repo and it will create a RAG DB out of it.<p>You can also use the MCP server to create and query the libraries.<p>Site: <a href="https://www.libragen.dev/" rel="nofollow">https://www.libragen.dev/</a></p>
]]></description><pubDate>Thu, 15 Jan 2026 12:57:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=46631765</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=46631765</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46631765</guid></item><item><title><![CDATA[New comment by yokuze in "Ask HN: Share your personal website"]]></title><description><![CDATA[
<p><a href="https://hypothesi.dev/" rel="nofollow">https://hypothesi.dev/</a></p>
]]></description><pubDate>Wed, 14 Jan 2026 20:04:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=46622183</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=46622183</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46622183</guid></item><item><title><![CDATA[New comment by yokuze in "United MAX Hit by Falling Object at 36,000 Feet"]]></title><description><![CDATA[
<p>From the article:<p>> “Apparently only one layer of the windshield was damaged, and there was no depressurization.”<p>And from the photos, it looks like it was the outer layer. So, where would the glass have come from?</p>
]]></description><pubDate>Mon, 20 Oct 2025 13:11:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=45643500</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=45643500</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45643500</guid></item><item><title><![CDATA[New comment by yokuze in "Open Source Society University – Path to a free self-taught education in CS"]]></title><description><![CDATA[
<p>It’s worth making this very clear for learners: A Computer Science education is **not** the thing that will prepare you to work and make money in many real-world _jobs_.<p>Some? Yes. Many? No.<p>This blurb from one of the course pages (unintentionally) says it well:<p>> Because the point of computer science isn't to teach you a language. Or to teach you to code. Or to teach you to be a fullstack software engineer. Computer Science is a very narrowly-applied applied math with wide-ranging practical usage. But if you strip away all the qualifying language, it's math. Which means it has certain overarching rules that are completely, totally independent of your implementation language.<p>In short: the point of Computer Science courses is not to teach you to do the thing that you will be doing when employed at the company that pays you.<p>Another:<p>> if you want to read white papers you're going to want to read Lisp<p>Most jobs are not about reading or writing white papers. Almost all Computer Science courses are an _academic_ pursuit, not a practical one, and are taught as such.<p>If your goal is to _work_ in the industry, this is _a_ path, but it is a very inefficient one.<p>Depending on what work you are happy with, 80%+ of the content here will not contribute to your success.<p>Will learning the things taught in these courses exercise your problem-solving and other mental abilities? Yes. Will they teach you broadly-applicable principles that you could apply to your work? Hard _maybe_, depending on their teaching and on how well you learn and generalize. In any case, you may well end up doing work that utilizes little of this.<p>If you want to work in research, a math-or-fundamental-sciences-heavy field, or with teams of folks creating new programming languages or database engines for example, then certainly some of these courses (and more) are required.<p>But it’s worth warning potential learners that a full Computer Science education is _neither an efficient nor a necessary path to a job in the field_.<p>What is?<p>One example: There is much available and satisfying work in building user-facing applications like web and mobile apps.<p>If your goal is to do that kind of work, then it’s best to relentlessly focus on the things that you will actually be doing at your job: Building things.<p>Broadly speaking, employers pay you using the money that they are making (or hope to make) by solving problems and/or providing services using software/applications that you will help write. So practice writing it. Learn to build real things: Mobile, web, or desktop apps that do a thing that _you_ would want to pay for. Find courses that teach that. Practice it. Hit a wall, research and figure out how to overcome it. Repeat. Submit PR’s to open source projects, especially ones where experienced maintainers review your code. Learn from that feedback. Read their code and understand how it comes together to create the app you are using. Have LLM’s review your code, even, if no skilled human is available.<p>Practice working with other people. Learn how to write and communicate clearly and unambiguously.<p>Find and fix bugs in open-source codebases.<p>Embrace that working in the field means a commitment to non-stop, career-long learning.<p>Later, after you’ve freed up mental space by mastering the basic mechanics of programming, begin researching and applying the techniques and methods for writing code that other people find pleasant to read, interact with, and modify/extend.<p>Build something that you can show to prospective employers.<p>You will also learn many more things from the people you work with.<p>Many of the hard skills you will learn through doing _these_ things will directly transfer to the work you do, because _it is the work you will do._</p>
]]></description><pubDate>Sun, 25 May 2025 23:36:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=44092340</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=44092340</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44092340</guid></item><item><title><![CDATA[New comment by yokuze in "Ask HN: What rabbit hole(s) did you dive into recently?"]]></title><description><![CDATA[
<p>Here’s a project that does HMR and more: <a href="https://wxt.dev/" rel="nofollow">https://wxt.dev/</a></p>
]]></description><pubDate>Tue, 23 Apr 2024 12:06:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=40130970</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=40130970</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40130970</guid></item><item><title><![CDATA[New comment by yokuze in "[dead]"]]></title><description><![CDATA[
<p>A protein that has a critical role in embryonic cell morphogenesis was named after the video game character. The origin, and the issues the name caused are interesting.</p>
]]></description><pubDate>Mon, 15 Apr 2024 10:30:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=40038688</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=40038688</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40038688</guid></item><item><title><![CDATA[New comment by yokuze in "Ask HN: What Are You Learning?"]]></title><description><![CDATA[
<p>Critical thinking, as it applies to the practice of software development.<p>Reading/watch list:<p>- Thought and Knowledge: An Introduction to Critical Thinking, by Diane F. Halpern<p>- Understanding Arguments: An Introduction to Informal Logic, by Walter Sinnott-Armstrong, Robert J. Fogelin<p>- Predictably Irrational, by Dan Ariely<p>- Evidence-based Software Engineering - <a href="http://knosof.co.uk/ESEUR/ESEUR.pdf" rel="nofollow">http://knosof.co.uk/ESEUR/ESEUR.pdf</a><p>- A Philosophy of Software Design, by John Ousterhout<p>- <a href="https://www.coursera.org/learn/mindware" rel="nofollow">https://www.coursera.org/learn/mindware</a><p>This is research for a book I'm writing on that topic.</p>
]]></description><pubDate>Fri, 22 Jul 2022 03:43:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=32188266</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=32188266</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=32188266</guid></item><item><title><![CDATA[New comment by yokuze in "Ask HN: How to level up your technical writing?"]]></title><description><![CDATA[
<p>I second the "Simple and Direct" recommendation. I stumbled upon it in a book store over a decade ago and I've never seen anyone recommend it before. Years after reading it, I still hear the author's recommendations in my head when writing.</p>
]]></description><pubDate>Mon, 27 Jun 2022 18:03:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=31898290</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=31898290</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31898290</guid></item><item><title><![CDATA[Ask HN: Alexa Developer Rewards – has anyone made money?]]></title><description><![CDATA[
<p>I'm considering developing an Alexa skill and want to get a feel for what developers are making from their skills, if anything. It would also be nice to know if any of the developers of less-popular skills are receiving payouts from the Developer Rewards program.<p>Now seems like a good opportunity for Alexa skill development after the number of device sales over the holiday period.<p>I've read this CNET article: https://www.cnet.com/news/amazon-alexa-economy-echo-speaker-google-assistant-siri/ but am looking for more data.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=16021955">https://news.ycombinator.com/item?id=16021955</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 28 Dec 2017 13:50:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=16021955</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=16021955</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=16021955</guid></item><item><title><![CDATA[New comment by yokuze in "Ask HH: Universal programming language?"]]></title><description><![CDATA[
<p>This is a lot like asking: "Could there be one tool that supports every function and task in the field of carpentry?"<p>Maybe? But who would want to use something like that? Good programming languages, like most useful tools, are specialized. They support modes of thinking that allow effective problem solving, each within its own domain. (Think Haskell vs Java).<p>In other words, programming languages are tools, and tools are useful because they are limited.</p>
]]></description><pubDate>Wed, 02 Jul 2014 11:42:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=7976316</link><dc:creator>yokuze</dc:creator><comments>https://news.ycombinator.com/item?id=7976316</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=7976316</guid></item></channel></rss>