<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: devnonymous</title><link>https://news.ycombinator.com/user?id=devnonymous</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 14 Apr 2026 09:47:27 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=devnonymous" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by devnonymous in "Physicists developing a quantum computer that’s entirely open source"]]></title><description><![CDATA[
<p>The real joke here is how close these quips are to the reality of modern day financial markets. Specifically, lending and hedging, are time entangled and value within the markets exist in superposition.</p>
]]></description><pubDate>Tue, 03 Mar 2026 12:31:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=47231401</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=47231401</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47231401</guid></item><item><title><![CDATA[New comment by devnonymous in "Show HN: Deff – Side-by-side Git diff review in your terminal"]]></title><description><![CDATA[
<p>> For me a bigger issue was git calling vimdiff for each file,<p>If you configure vimdiff as the difftool in your git config, just doing a `git diff` would show you the diff for each file sequentially.</p>
]]></description><pubDate>Fri, 27 Feb 2026 10:12:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=47178768</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=47178768</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47178768</guid></item><item><title><![CDATA[New comment by devnonymous in "Anthropic announces proof of distillation at scale by MiniMax, DeepSeek,Moonshot"]]></title><description><![CDATA[
<p>24K is presumably the number that got caught. It isn't out of the realm of possibility that there indeed are (/ were over time), 5x accounts that managed to bypass the checks anthropic had.</p>
]]></description><pubDate>Mon, 23 Feb 2026 19:52:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=47127790</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=47127790</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47127790</guid></item><item><title><![CDATA[New comment by devnonymous in "Anthropic announces proof of distillation at scale by MiniMax, DeepSeek,Moonshot"]]></title><description><![CDATA[
<p>Are you sure about that ? Because the very next tweet says:<p><pre><code>  > Distillation can be legitimate: AI labs use it to create smaller, cheaper models for their customers.</code></pre></p>
]]></description><pubDate>Mon, 23 Feb 2026 19:48:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=47127737</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=47127737</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47127737</guid></item><item><title><![CDATA[New comment by devnonymous in "Anthropic announces proof of distillation at scale by MiniMax, DeepSeek,Moonshot"]]></title><description><![CDATA[
<p>> These labs created over 24,000 fraudulent accounts and generated over 16 million exchanges with Claude<p>What exactly makes these accounts ^fraudulent^ ...did they not pay Anthropic for the service ?</p>
]]></description><pubDate>Mon, 23 Feb 2026 19:45:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=47127692</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=47127692</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47127692</guid></item><item><title><![CDATA[New comment by devnonymous in "AI Fails at 96% of (General Work) Jobs (New Study)"]]></title><description><![CDATA[
<p>So what you're saying is the interface fails the common case?</p>
]]></description><pubDate>Mon, 16 Feb 2026 09:56:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47033079</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=47033079</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47033079</guid></item><item><title><![CDATA[A reinforcement learning agent that learns to play Kung Fu Master]]></title><description><![CDATA[
<p>Article URL: <a href="https://shantanugoel.com/2026/02/15/teach-machines-kungfu/">https://shantanugoel.com/2026/02/15/teach-machines-kungfu/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47032971">https://news.ycombinator.com/item?id=47032971</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 16 Feb 2026 09:43:03 +0000</pubDate><link>https://shantanugoel.com/2026/02/15/teach-machines-kungfu/</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=47032971</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47032971</guid></item><item><title><![CDATA[New comment by devnonymous in "Things Unix can do atomically (2010)"]]></title><description><![CDATA[
<p>I'm almost certain what the OP meant was if the commands were run synchronously (ie: from 2 different shells or as `mv a b &; mv c d`) yes there is a possibility that a and d exist (eg: On a busy system where neither of the 2 commands can be immediately scheduled and eventually the second one ends up being scheduled before the first)<p>Or to go a level deeper, if you have 2 occurrences of rename(2) from the stdlibc ...<p>rename('a', 'b');
rename('c', 'd');<p>...and the compiler decides on out of order execution or optimizing by scheduling on different cpus, you can get a and d existing at the same time.<p>The reason it won't happen in the example you posted is the shell ensures the atomicity (by not forking the second mv until the wait() on the first returns)</p>
]]></description><pubDate>Fri, 06 Feb 2026 10:54:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=46911349</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=46911349</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46911349</guid></item><item><title><![CDATA[New comment by devnonymous in "How AI assistance impacts the formation of coding skills"]]></title><description><![CDATA[
<p>From the "Discussion" section:<p>> This suggests that as companies transition to more AI code writing with human supervision, humans may not possess the necessary skills to validate and debug AI-written code if their skill formation was inhibited by using AI in the first place.<p>I'm reminded of "Kernighan's lever" :<p>> Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it?<p>AI is writing code in the cleverest way possible which then introduces cognitive load for anyone who hasn't encountered these patterns previously. Although, one might say that AI would also assist in the debugging, you run the risk of adding further complexity in the process of 'fixing' the bugs and before you know it you have a big stinking ball of mud.</p>
]]></description><pubDate>Fri, 30 Jan 2026 13:48:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=46824327</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=46824327</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46824327</guid></item><item><title><![CDATA[New comment by devnonymous in "Surely the crash of the US economy has to be soon"]]></title><description><![CDATA[
<p>Otoh, tarrifs as a foreign policy / coercion method disconnected from trade and local economy impacts definitely is a new thing.<p>Sure, it might have been used as a delicate lever previously but in its current brazen form is just bad diplomacy.</p>
]]></description><pubDate>Fri, 30 Jan 2026 11:32:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=46823193</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=46823193</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46823193</guid></item><item><title><![CDATA[New comment by devnonymous in "LearnixOS"]]></title><description><![CDATA[
<p>The linked trends suggest a revival of the term though.<p>> The people who do the "*nix" cargo cult thing have never seen a SunOS machine and don't even know what a HPUX is.<p>The meaning of words evolve over time though. Text is still broken into lines by "carriage return/line feeds" and is written on "hard disk" split up in "sectors".,. Over time people using these would not have seen a typewriter or even know what a platter is but may still use it to communicate effectively.</p>
]]></description><pubDate>Sat, 27 Dec 2025 18:16:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=46403866</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=46403866</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46403866</guid></item><item><title><![CDATA[New comment by devnonymous in "Rob Pike goes nuclear over GenAI"]]></title><description><![CDATA[
<p>I claim that the new code, music or documents have not added anything significant/noteworthy/impactful to society except for the self-perpetuating lie that it would, all the while regurgitating, at high speeds, what was stolen.<p>And all at significant opportunity cost (in terms of computing and investment)<p>If it was as life altering as they claim where's that novel work of art (in your examples..of code, music or literature) that truly could not have been produced without GenAI and fundamentally changed the art form ?<p>Surely, with all that ^increased productivity^ we'd have seen the impact equivalent of linux, apache, nginx, git, redis, sqlite, ... Etc being released every couple of weeks instead of yet another VSCode clone./s</p>
]]></description><pubDate>Fri, 26 Dec 2025 18:14:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=46394593</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=46394593</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46394593</guid></item><item><title><![CDATA[New comment by devnonymous in "LearnixOS"]]></title><description><![CDATA[
<p>Before clicking the links.. How confident do you feel about your assertion?<p><a href="https://trends.google.com/trends/explore?date=today%205-y&q=Unix%20like&hl=en" rel="nofollow">https://trends.google.com/trends/explore?date=today%205-y&q=...</a><p><a href="https://trends.google.com/trends/explore?date=all&q=Unix%20like%20OS&hl=en" rel="nofollow">https://trends.google.com/trends/explore?date=all&q=Unix%20l...</a></p>
]]></description><pubDate>Fri, 26 Dec 2025 17:27:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=46394150</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=46394150</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46394150</guid></item><item><title><![CDATA[New comment by devnonymous in "Rob Pike goes nuclear over GenAI"]]></title><description><![CDATA[
<p>How is it that so many people who supposedly lean towards analytical thought are so bad at understanding scale?</p>
]]></description><pubDate>Fri, 26 Dec 2025 15:31:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=46393037</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=46393037</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46393037</guid></item><item><title><![CDATA[New comment by devnonymous in "Rob Pike goes nuclear over GenAI"]]></title><description><![CDATA[
<p>Can't speak for Rob Pile but my guess would be, yeah, it might seem hypocritical but it's a combination of seeing the slow decay of the open culture they once imagined culminating into this absolute shirking of responsibility while simultaneously exploiting labour, by those claiming to represent the culture, alongwith the retrospective tinge of guilt for having enabled it, that drrove this rant.<p>Furthermore, w.r.t the points you raised - it's a matter of scale and utility. Compared to everything that has come before, GenAI is spectacularly inefficient in terms of utility per unit of compute (however you might want to define these). There hasn't been a tangible nett good for society that has come from it and I doubt there would be. The egarness and will to throw money and resources at this surpasses the crypto mania which was just as worthless.<p>Even if you consider Rob a hypocrite , he isn't alone in his frustration and anger at the degradation of the promise of Open Culture.</p>
]]></description><pubDate>Fri, 26 Dec 2025 15:21:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=46392927</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=46392927</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46392927</guid></item><item><title><![CDATA[New comment by devnonymous in "Notes on Bhutan"]]></title><description><![CDATA[
<p>Buddhism in India grew in opposition to the Hindu caste system instead of spiritual change of thought. The current Indian government is loudly Hindu nationalist and prefers to minimise or even dismiss the diversity of Indian religious practices as well as pretend that the caste system is no longer present.<p>They and their supporters downplay Buddhist followers by pretending that the lived experiences of these Buddhist (on in general the non-hindu) don't exist.</p>
]]></description><pubDate>Tue, 02 Dec 2025 10:53:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=46119918</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=46119918</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46119918</guid></item><item><title><![CDATA[New comment by devnonymous in "Disrupting the first reported AI-orchestrated cyber espionage campaign"]]></title><description><![CDATA[
<p>> Why not just self-host competitive-enough LLM models, and do their experiments/attacks themselves, without leaking actions and methods so much?<p>Why assume this hasn't already happened?</p>
]]></description><pubDate>Thu, 13 Nov 2025 22:35:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=45921582</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=45921582</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45921582</guid></item><item><title><![CDATA[New comment by devnonymous in "A change of address led to our Wise accounts being shut down"]]></title><description><![CDATA[
<p>Not the person you're asking but I had similar CS issues. I still use Wise sparingly but have also started using Revolut. Though, I wouldn't trust either with more money than I can afford to budget for ^life lessons^</p>
]]></description><pubDate>Fri, 31 Oct 2025 05:21:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=45768680</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=45768680</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45768680</guid></item><item><title><![CDATA[New comment by devnonymous in "A change of address led to our Wise accounts being shut down"]]></title><description><![CDATA[
<p>In most (all ?) countries banks are regulated and customers have recourse to some sort of banking ombudsman for this sort of thing.</p>
]]></description><pubDate>Fri, 31 Oct 2025 05:14:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=45768651</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=45768651</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45768651</guid></item><item><title><![CDATA[I Scaled from Zero to a Million Store on Dukaan, Without a CS Degree]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/subhashchy/The-Accidental-CTO">https://github.com/subhashchy/The-Accidental-CTO</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45394114">https://news.ycombinator.com/item?id=45394114</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 27 Sep 2025 08:36:15 +0000</pubDate><link>https://github.com/subhashchy/The-Accidental-CTO</link><dc:creator>devnonymous</dc:creator><comments>https://news.ycombinator.com/item?id=45394114</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45394114</guid></item></channel></rss>