<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: Varriount</title><link>https://news.ycombinator.com/user?id=Varriount</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 15 Apr 2026 01:58:42 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Varriount" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Varriount in "HTTP/3 is everywhere but nowhere"]]></title><description><![CDATA[
<p>I really have to agree with the "easier to debug" part. I one time had to debug a particularly nasty networking issue that was causing HTTP connections to just "stop" midway through sending data. Turned out to be a confusion mismatch between routers and allowed packet sizes. It would have been <i>so</i> much worse with a non-plaintext protocol.</p>
]]></description><pubDate>Mon, 17 Mar 2025 19:45:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=43392065</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=43392065</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43392065</guid></item><item><title><![CDATA[New comment by Varriount in "Zelensky leaves White House after angry meeting"]]></title><description><![CDATA[
<p>That assumes that any amount of capitulation would have persuaded Trump to support Ukraine, and that any reasonable deal could have been reached. I obviously can't say what could have been, but every sign Trump (and those in his administration!) has given up to this point indicate that there's only one outcome they support, and that's Ukraine surrendering all or some of its land to Russia, along with a deal barring Ukraine from NATO.</p>
]]></description><pubDate>Sat, 01 Mar 2025 06:32:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=43216554</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=43216554</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43216554</guid></item><item><title><![CDATA[New comment by Varriount in "The practical (Unix) problems with .cache and its friends"]]></title><description><![CDATA[
<p>What software <i>should</i> be doing is using XDG_CACHE_HOME, if it is set (along with the other XDG environment variables). That way cache directories will be where the user expects.</p>
]]></description><pubDate>Sat, 08 Feb 2025 14:39:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=42983218</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=42983218</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42983218</guid></item><item><title><![CDATA[New comment by Varriount in "VSCode's SSH agent is bananas"]]></title><description><![CDATA[
<p>I get what a regular expression like that does, but what leads to it being executed?</p>
]]></description><pubDate>Sat, 08 Feb 2025 09:44:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=42981800</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=42981800</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42981800</guid></item><item><title><![CDATA[New comment by Varriount in "Avoiding outrage fatigue while staying informed"]]></title><description><![CDATA[
<p>Ad Fontes' media bias chart [1] and it's methodology [2] are about as objective as you can be with something as subjective as bias and factuality.<p>1 - <a href="https://adfontesmedia.com/" rel="nofollow">https://adfontesmedia.com/</a><p>2 - <a href="https://adfontesmedia.com/methodology/" rel="nofollow">https://adfontesmedia.com/methodology/</a><p>There are a couple other groups out there too:<p>- <a href="https://www.allsides.com/media-bias" rel="nofollow">https://www.allsides.com/media-bias</a><p>- <a href="https://mediabiasfactcheck.com/" rel="nofollow">https://mediabiasfactcheck.com/</a></p>
]]></description><pubDate>Thu, 06 Feb 2025 08:09:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=42960195</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=42960195</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42960195</guid></item><item><title><![CDATA[New comment by Varriount in "Questions censored by DeepSeek"]]></title><description><![CDATA[
<p>Could anyone explain this sentence in the article?<p><pre><code>  It will matter less once models similar to R1 are reproduced without these restrictions (which will probably be in a week or so).
</code></pre>
Is this talking about training a completely different model, modifying the existing model, or something else?</p>
]]></description><pubDate>Tue, 28 Jan 2025 23:21:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=42859471</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=42859471</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42859471</guid></item><item><title><![CDATA[New comment by Varriount in "Accessing a DRM Framebuffer to display an image"]]></title><description><![CDATA[
<p>I've always wondered why the name "Direct Rendering Manager" was chosen, given the existing definition of DRM. It could have just as easily been "Direct Rendering Layer" or some other alternative.</p>
]]></description><pubDate>Sun, 08 Dec 2024 08:39:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=42355882</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=42355882</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42355882</guid></item><item><title><![CDATA[New comment by Varriount in "Fun with Go Iterators"]]></title><description><![CDATA[
<p>It always bugs me when I see that pattern in JavaScript, because <i>each</i> `map`, etc. call is an array allocation. Yeah, yeah, I know that the VM's memory allocators are likely optimized for fast allocation, but that doesn't make the allocation completely free.</p>
]]></description><pubDate>Thu, 10 Oct 2024 17:38:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=41801239</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41801239</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41801239</guid></item><item><title><![CDATA[New comment by Varriount in "The expected value of the game is positive regardless of Ballmer’s strategy"]]></title><description><![CDATA[
<p>Oof, that does not sound like a strategy that culminates a positive work atmosphere.</p>
]]></description><pubDate>Fri, 06 Sep 2024 07:24:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=41463787</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41463787</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41463787</guid></item><item><title><![CDATA[New comment by Varriount in "They don't make 'em like that any more: Borland Turbo Pascal 7"]]></title><description><![CDATA[
<p>At least with Java you can select a GC which is more aggressive in giving memory back to the system (Shenandoah and ZGC). With Electron/Node you don't even get that (not to mention the fact Electron apps always spawn multiple processes).</p>
]]></description><pubDate>Sat, 24 Aug 2024 12:43:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=41337838</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41337838</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41337838</guid></item><item><title><![CDATA[New comment by Varriount in "Homebound: The Long-Term Rise in Time Spent at Home Among U.S. Adults"]]></title><description><![CDATA[
<p>This matches a number of the new apartment complexes in my area - no walking trails, amenities, or anything else accessible from the complex itself. Often you can't actually go to _anywhere_ from the complex, as the roads from it don't even have sidewalks.</p>
]]></description><pubDate>Mon, 19 Aug 2024 19:48:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=41294054</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41294054</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41294054</guid></item><item><title><![CDATA[New comment by Varriount in "1970 Clean Air Act was intended to cover carbon dioxide"]]></title><description><![CDATA[
<p>I do agree that the hyperbole often seem in the media ("the most important decision", etc.) is quite ridiculous. That being said, keep in mind the assumptions you make when thinking long-term.<p>For example, I've had it argued to me that that homosexual individuals shouldn't be allowed civil unions, as doing so would lead to the bankruptcy of the federal government. The "long-term thinking" here was that allowing unions between homosexual individuals would, at some future point, lead to allowing unions between polygamous groups*, which would then lead to people joining in unions for tax purposes, which would then lead to a disruptive loss of income for the government.</p>
]]></description><pubDate>Thu, 08 Aug 2024 08:08:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=41189215</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41189215</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41189215</guid></item><item><title><![CDATA[New comment by Varriount in "1970 Clean Air Act was intended to cover carbon dioxide"]]></title><description><![CDATA[
<p>Does everyone in that supermajority have equal influence on their respective representatives?</p>
]]></description><pubDate>Thu, 08 Aug 2024 07:41:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=41189062</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41189062</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41189062</guid></item><item><title><![CDATA[New comment by Varriount in "1970 Clean Air Act was intended to cover carbon dioxide"]]></title><description><![CDATA[
<p>Which decisions have you read?</p>
]]></description><pubDate>Thu, 08 Aug 2024 07:31:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=41189002</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41189002</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41189002</guid></item><item><title><![CDATA[New comment by Varriount in "Prevention of HIV"]]></title><description><![CDATA[
<p>My sympathies for your situation - it's difficult to have to see such terrible diseases take away those we love.<p>That being said, are all individuals in a position to take preventative measures against HIV? And does research of a disease (and ways to treat it) only benefit development of drugs that treat that disease?</p>
]]></description><pubDate>Thu, 08 Aug 2024 07:14:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=41188917</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41188917</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41188917</guid></item><item><title><![CDATA[New comment by Varriount in "Prevention of HIV"]]></title><description><![CDATA[
<p>What the significance of using a neurodegenerative disease as an example?</p>
]]></description><pubDate>Thu, 08 Aug 2024 07:01:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=41188834</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41188834</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41188834</guid></item><item><title><![CDATA[New comment by Varriount in "Show HN: Trayce – Network tab for Docker containers"]]></title><description><![CDATA[
<p>Huh, is TLS being handled in the kernel these days? I thought most systems still used usermode libraries.</p>
]]></description><pubDate>Wed, 31 Jul 2024 07:15:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=41117028</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41117028</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41117028</guid></item><item><title><![CDATA[New comment by Varriount in "The Eristics Test: The Scariest Personality Quiz You'll Ever Take"]]></title><description><![CDATA[
<p>Even if it isn't scientifically rigorous, I feel it's ( slightly) better than a horoscope in that it at least provides an opportunity for self reflection.<p>On the whole, one of the difficulties with tests like these is that we tend to have multiple "roles" we take on in different situations (there's a psychological term for this that I can't recall). We might be analytical and impartial at work, but emotion-driven when interacting with friends and family. It's difficult for tests like this to take into account the fact that we might feel differently about a question depending on the role we are currently in.</p>
]]></description><pubDate>Sun, 28 Jul 2024 15:07:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=41093701</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41093701</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41093701</guid></item><item><title><![CDATA[New comment by Varriount in "The US fiscal mess: Some unpleasant fiscal simulations"]]></title><description><![CDATA[
<p>As far as I know, Ukraine doesn't have any leader like that. Could you provide more information?<p>Also, according to <a href="https://fiscaldata.treasury.gov/americas-finance-guide/federal-spending/" rel="nofollow">https://fiscaldata.treasury.gov/americas-finance-guide/feder...</a> and <a href="https://www.cfr.org/article/how-much-us-aid-going-ukraine" rel="nofollow">https://www.cfr.org/article/how-much-us-aid-going-ukraine</a> , the amount spent on Ukraine as a percentage of total government spending seems to be around 3%, not taking into account the fact that some of that might have been spent anyway (for example, old munitions that would have otherwise been replaced were sent to Ukraine).</p>
]]></description><pubDate>Sun, 28 Jul 2024 08:07:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=41091891</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=41091891</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41091891</guid></item><item><title><![CDATA[New comment by Varriount in "Fusion – A hobby OS implemented in Nim"]]></title><description><![CDATA[
<p>I agree that it's unusual (and likely scares off some), however it's not <i>entirely</i> case insensitive. First, dashes/hyphens (`-`) can't be part of identifiers. Second, the first character of an identifier is not case insensitive.<p>So:<p>FooBar != fooBar<p>FooBar == Foobar<p>Most of the developers in the community are ambivalent about it, because it rarely ever causes problems. If you end up misspelling an identifier, you're nearly always going to get a compile-time error due to static typing anyway.</p>
]]></description><pubDate>Mon, 15 Jul 2024 07:54:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=40966009</link><dc:creator>Varriount</dc:creator><comments>https://news.ycombinator.com/item?id=40966009</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40966009</guid></item></channel></rss>