<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: chunpaiyang</title><link>https://news.ycombinator.com/user?id=chunpaiyang</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 29 May 2026 19:16:05 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=chunpaiyang" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by chunpaiyang in "Is any one using ruflo?"]]></title><description><![CDATA[
<p>I am not the author. But I think the idea is cool. I use this ruflo to handle it completely to avoid interrupt by AI when vibe coding.(not permission issue, I always use claude --dangerously-skip-permissions)<p>Is there anybody using it ?</p>
]]></description><pubDate>Wed, 29 Apr 2026 02:50:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47943680</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47943680</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47943680</guid></item><item><title><![CDATA[Is any one using ruflo?]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/ruvnet/ruflo">https://github.com/ruvnet/ruflo</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47943679">https://news.ycombinator.com/item?id=47943679</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Wed, 29 Apr 2026 02:50:51 +0000</pubDate><link>https://github.com/ruvnet/ruflo</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47943679</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47943679</guid></item><item><title><![CDATA[New comment by chunpaiyang in "Ask HN: Do you read differently now that anything could be AI generated?"]]></title><description><![CDATA[
<p>It depends, case by case.</p>
]]></description><pubDate>Mon, 27 Apr 2026 07:52:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=47918848</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47918848</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47918848</guid></item><item><title><![CDATA[New comment by chunpaiyang in "Ask HN: How I find a job where what is needed is solid code, not firefighting?"]]></title><description><![CDATA[
<p>Companies like this don't deservce good enginners.</p>
]]></description><pubDate>Mon, 27 Apr 2026 07:50:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47918830</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47918830</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47918830</guid></item><item><title><![CDATA[New comment by chunpaiyang in "Ask HN: Anyone want to collaborate on a local-first AI-based research assistant"]]></title><description><![CDATA[
<p>AnythingLLM ?</p>
]]></description><pubDate>Mon, 27 Apr 2026 07:29:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47918710</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47918710</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47918710</guid></item><item><title><![CDATA[New comment by chunpaiyang in "Ask HN: Find a Claude skill is so hard"]]></title><description><![CDATA[
<p>The website is good but not good too.<p>Not easy to trust the choosed skill is work:
- No input example
- No output example<p>It's hard to play and trust the "skill".</p>
]]></description><pubDate>Wed, 22 Apr 2026 13:29:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=47863335</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47863335</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47863335</guid></item><item><title><![CDATA[Ask HN: Find a Claude skill is so hard]]></title><description><![CDATA[
<p>Could anyone give me an advice how to find a useful claude skill that truely match my need ?
I want the "skill" has input and output example and there is someone confirm it work.
Any website ?</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47862843">https://news.ycombinator.com/item?id=47862843</a></p>
<p>Points: 2</p>
<p># Comments: 3</p>
]]></description><pubDate>Wed, 22 Apr 2026 12:50:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=47862843</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47862843</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47862843</guid></item><item><title><![CDATA[New comment by chunpaiyang in "LLMs audit code from the same blind spot they wrote it from. Here's the fix"]]></title><description><![CDATA[
<p>I'm a software engineer building an app as a side project. I quickly realized AI bullshits a lot.<p>But you know, engineers bullshit each other all the time too. The difference is we have a way to verify it - logical chains. You have to build an argument that holds up before anayone buys in it.<p>So I though, can I make AI build its own logical chain ? Let it pass its own logic check before telling me the result.<p>That's how I created my own "think" skill. It's based on Meta's CoT paper: <a href="https://arxiv.org/abs/2501.04682" rel="nofollow">https://arxiv.org/abs/2501.04682</a><p>It roughly works like this:
1. FRAME - Challenge the question itself, hidden assumptions.<p>2. GROUND - Map what you know, what you need, what's missing.<p>3. ASSOCIATE - Launch multiple independent agents in parallel to generate hypotheses, avoid anchoring bias.<p>4. VERIFY - Break each hypothesis into atomic claims, verify each independently<p>5. CHAIN - Build a logical chain from survivors<p>6. PROVE and LOOP - Walk backwards from conclusion to premises, seearch for evidence, repair if broken<p>7. DELIVER - Start with "I was wrong if ...."<p>It helps me a lot. Whenever I need to check if Claude Opus 4.6 is bullshitting me. I just say "/think verify the above reasoning is correct" or "/think verify the above fix is correct and complete."</p>
]]></description><pubDate>Sat, 04 Apr 2026 12:33:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=47638503</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47638503</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47638503</guid></item><item><title><![CDATA[New comment by chunpaiyang in "Ask HN: Do you code remotely from your phone?"]]></title><description><![CDATA[
<p>With vibe coding you don't really type code anymore. You just tell AI what to do in plain words(voice input helps a lot on phone) and it writes the code for you.<p>Would that make you reconsider coding remotely from your phone ?</p>
]]></description><pubDate>Sat, 04 Apr 2026 05:51:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=47636227</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47636227</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47636227</guid></item><item><title><![CDATA[New comment by chunpaiyang in "Ask HN: Do you code remotely from your phone?"]]></title><description><![CDATA[
<p>What do you use for that? Any specific iOS/Android app ?</p>
]]></description><pubDate>Sat, 04 Apr 2026 05:41:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=47636171</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47636171</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47636171</guid></item><item><title><![CDATA[New comment by chunpaiyang in "A broken auto-live poller, and what perceived urgency does to Claude Code"]]></title><description><![CDATA[
<p>AI lies. The trick is making it double-check itself before it ships.
I made a skill that forces AI to think more. Burns more tokens but improve accuracy.
I suggest you use Meta CoT(Chain-of-Thought) <a href="https://arxiv.org/abs/2501.04682" rel="nofollow">https://arxiv.org/abs/2501.04682</a> to build a think skill to avoid this problem.</p>
]]></description><pubDate>Sat, 04 Apr 2026 04:23:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=47635716</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47635716</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47635716</guid></item><item><title><![CDATA[New comment by chunpaiyang in "Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw"]]></title><description><![CDATA[
<p>Good point. I agree with that.
The key point is that heavy users benefit from this model while light users are basically subsidizing them.
But it's a distribution when everyone shifts toward heavy usage, prices inevitably go up.
The $17/mo pro price is already set to compete with other providers. Raising it would lose customers. Other tiers are also carefully priced to match competitors.
So the only move left is to prevent the whole distribution from drifting toward heavier usage. That's exatly what this ban does.</p>
]]></description><pubDate>Sat, 04 Apr 2026 03:27:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47635386</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47635386</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47635386</guid></item><item><title><![CDATA[New comment by chunpaiyang in "Claude Code Found a Linux Vulnerability Hidden for 23 Years"]]></title><description><![CDATA[
<p>I thought maybe you can find more if you write a "special" skill for AI to think hardly.<p>For example, I'v implemented "Towards System 2 Reasoning in LLMs: Learning How to Think With Meta Chain-of-Thought" into a skill and the AI becomes able to "think".<p>The correct rate becomes higher but the only drawback is consuming token very much.</p>
]]></description><pubDate>Fri, 03 Apr 2026 15:34:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=47627939</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47627939</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47627939</guid></item><item><title><![CDATA[New comment by chunpaiyang in "Ask HN: Which CLI tools do you use daily?"]]></title><description><![CDATA[
<p>- tmux<p>- vim: NERDTree, Gblame<p>- zsh<p>- tig: best way to browse git history in terminal<p>- claud code</p>
]]></description><pubDate>Fri, 03 Apr 2026 14:10:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47626843</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47626843</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47626843</guid></item><item><title><![CDATA[Ask HN: Do you code remotely from your phone?]]></title><description><![CDATA[
<p>Do you code remotely from your phone or tablet when you are away from your desk ?
I find myself have such need but I am wondering other people do too ?</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47626628">https://news.ycombinator.com/item?id=47626628</a></p>
<p>Points: 3</p>
<p># Comments: 7</p>
]]></description><pubDate>Fri, 03 Apr 2026 13:48:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=47626628</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47626628</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47626628</guid></item><item><title><![CDATA[New comment by chunpaiyang in "Sweden goes back to basics, swapping screens for books in the classroom"]]></title><description><![CDATA[
<p>I'm curious about the true logic behind the claim that tablet use lower grades. What is the underlying logic ?<p>For my own kid, I do limit screen time just because their eyes are still fragile before age 9, not because the above reason.<p>I asked an AI about the reasoning and the answer comes down to: kids need real-world interaction to support brain development. But if that's the case, aren't these two seperate issues? Using a tablet doesn't damage your brain ... it's just a low-value activity that fails to build the good skills (like video games?) that other activities do. It is not that screens make you dumber, it is that they crowd out the things that make you smarter.</p>
]]></description><pubDate>Fri, 03 Apr 2026 06:42:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=47623876</link><dc:creator>chunpaiyang</dc:creator><comments>https://news.ycombinator.com/item?id=47623876</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47623876</guid></item></channel></rss>