<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: svnpenn</title><link>https://news.ycombinator.com/user?id=svnpenn</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 19 Apr 2026 08:40:37 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=svnpenn" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by svnpenn in "Decoded: GNU Coreutils (2018)"]]></title><description><![CDATA[
<p>on mine it is 1,354 KB. I prefer the 10x LOC savings over a megabyte of hard drive, but you do you.</p>
]]></description><pubDate>Sat, 09 Sep 2023 00:29:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=37440988</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=37440988</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37440988</guid></item><item><title><![CDATA[New comment by svnpenn in "Rust module system encourages bad practices"]]></title><description><![CDATA[
<p>> it is pretty much identical to go.<p>Its not.<p>with Go you have ONE go.mod file, at the module root. you may have 100 sub packages or sub sub sub packages, but still only ONE go.mod file. then any time you need to add a new import at ANY level, you just go "go mod tidy", and DONE. please dont try to compares apple and orange and say they are both apples.</p>
]]></description><pubDate>Thu, 08 Jun 2023 00:15:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=36235468</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=36235468</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36235468</guid></item><item><title><![CDATA[New comment by svnpenn in "Aurora Store Accounts Blocked by Google"]]></title><description><![CDATA[
<p>you are mistaken:<p><a href="https://beta.gobuilds.org/2a.pages.dev/googleplay" rel="nofollow">https://beta.gobuilds.org/2a.pages.dev/googleplay</a></p>
]]></description><pubDate>Thu, 25 May 2023 23:55:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=36078012</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=36078012</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36078012</guid></item><item><title><![CDATA[New comment by svnpenn in "Show HN: A little web server in C"]]></title><description><![CDATA[
<p>> I make no claims about use of generics making your code being absolutely good or bad, but I do make claims that use of generics can make your code less error-prone and safe.<p>Right. this is the issue right here. people only see that Go didn't have generics, and they never stop for a second to think WHY Go didn't have them. Generics have an implementation cost for the Go project, and maintenance cost for the Go project, and end user negative impacts in regards to time and memory. but advocates often dont know or care about these drawback, and only howl that GENERICS ARE MISSING until they are added, consequences be damned.<p>I'm just saying that while generics are useful in some cases, they are not always the right answer, and it shouldn't just be assumed that every language needs them, nor that any non-generic language "sucks".</p>
]]></description><pubDate>Wed, 17 May 2023 00:13:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=35969598</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=35969598</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35969598</guid></item><item><title><![CDATA[New comment by svnpenn in "Sourcehut will not blacklist the Go module mirror"]]></title><description><![CDATA[
<p>well, he could have done nothing, and where would we be? if you say "exactly where we are now", I think you are being dishonest with how the situation played out.<p>No, he didn't write the code or make the schedule, but he stood up and said "this is not right", and took steps to protect his and other small sites.</p>
]]></description><pubDate>Tue, 31 Jan 2023 21:31:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=34602482</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34602482</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34602482</guid></item><item><title><![CDATA[New comment by svnpenn in "I'm shadow banned by DuckDuckGo and Bing"]]></title><description><![CDATA[
<p>numbers look like garbage, I think this is the culprit:<p><pre><code>    font-family: system-ui, 'Noto Emoji', sans-serif;</code></pre></p>
]]></description><pubDate>Sun, 15 Jan 2023 16:26:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=34390578</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34390578</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34390578</guid></item><item><title><![CDATA[New comment by svnpenn in "Examples of floating point problems"]]></title><description><![CDATA[
<p>Here is Go version. works exactly as expected, no surprises. People just need to grow up and use a modern language, not a 50 year old out of date language:<p><pre><code>    package main
    
    import "fmt"
    
    func main() {
       var i, iterations, meters float64
       for iterations = 100_000_000; i < iterations; i++ {
          meters += 0.01
       }
       // Expected: 1000.000000 km
       fmt.Printf("Expected: %f km\n", 0.01 * iterations / 1000)
       // Got: 1000.000001 km
       fmt.Printf("Got: %f km \n", meters / 1000)
    }</code></pre></p>
]]></description><pubDate>Sat, 14 Jan 2023 19:41:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=34383404</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34383404</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34383404</guid></item><item><title><![CDATA[New comment by svnpenn in "Wakamai Fondue, the tool that answers the question “what can my font do?”"]]></title><description><![CDATA[
<p>doesn't work:<p><a href="http://0x0.st/o70q.png" rel="nofollow">http://0x0.st/o70q.png</a></p>
]]></description><pubDate>Sat, 14 Jan 2023 18:53:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=34382850</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34382850</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34382850</guid></item><item><title><![CDATA[New comment by svnpenn in "SQLite Wasm in the browser backed by the Origin Private File System"]]></title><description><![CDATA[
<p>> the user must be able to clear it when clearing site data and this what makes it currently an unviable solution<p>What are you suggesting here? That extensions should have some special storage, that can't be (easily) deleted? Noooooooo thank you. Firefox has "forget about this site" and similar tools, which I use near daily. Don't fuck with my ability to do housekeeping.</p>
]]></description><pubDate>Fri, 13 Jan 2023 01:03:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=34362628</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34362628</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34362628</guid></item><item><title><![CDATA[New comment by svnpenn in "GitHub Copilot free plan stopped working – rate limit exceeded"]]></title><description><![CDATA[
<p>I am fine with this. I personally have no interest in Copilot, but my understanding is its not small feat to offer a service like this. I think it would be understandable if the "free tier" was severely rate limited. GitHub has plenty of crappy business practices, this seems pretty tame. The honeymoon is over. If people want this technology, they can pay up.<p>Not sure if this is still the case, but last time I checked Microsoft Office had student discount, but was not generally free. This seems like a similar situation.</p>
]]></description><pubDate>Thu, 12 Jan 2023 02:59:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=34348601</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34348601</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34348601</guid></item><item><title><![CDATA[New comment by svnpenn in "Surveillance Footage of Tesla Crash on SF’s Bay Bridge"]]></title><description><![CDATA[
<p>if they do, so what? even if 10 people cut in front of you, with a 30 minute drive, how much time are you really losing? 50 seconds?</p>
]]></description><pubDate>Thu, 12 Jan 2023 02:18:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=34348284</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34348284</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34348284</guid></item><item><title><![CDATA[New comment by svnpenn in "Surveillance Footage of Tesla Crash on SF’s Bay Bridge"]]></title><description><![CDATA[
<p>> drivers cutting in when large gaps form<p>if they do, so what? even if 10 people cut in front of you, with a 30 minute drive, how much time are you really losing? 50 seconds?</p>
]]></description><pubDate>Thu, 12 Jan 2023 02:10:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=34348196</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34348196</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34348196</guid></item><item><title><![CDATA[New comment by svnpenn in "Post-processing is ruining iPhone photos"]]></title><description><![CDATA[
<p>I work in IT. I manage our mobile devices, and I was shocked to recently find out that iPads (and I assume iPhones), have <i>no option</i> to choose the resolution of the resulting pictures.<p>Why is Apple like this? I dont always need a 9 MB or whatever photo size, it would be nice to be able to take lower res images to save space.</p>
]]></description><pubDate>Sat, 07 Jan 2023 19:31:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=34291703</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34291703</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34291703</guid></item><item><title><![CDATA[New comment by svnpenn in "The beauty of CGI and simple design"]]></title><description><![CDATA[
<p>this is the exact opposite of the point the comment you replied to is making. Rails is not simple. we are talking about SIMPLE, like CGI. Rails is a classic example of a slow bloated framework.</p>
]]></description><pubDate>Sat, 07 Jan 2023 17:01:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=34289978</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34289978</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34289978</guid></item><item><title><![CDATA[New comment by svnpenn in "P Language: a state machine-based programming language (2021)"]]></title><description><![CDATA[
<p>> [Step 2] Install Java Runtime<p>Nooooooope. No thank you.<p><a href="https://p-org.github.io/P/getstarted/install" rel="nofollow">https://p-org.github.io/P/getstarted/install</a></p>
]]></description><pubDate>Sat, 07 Jan 2023 00:55:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=34283716</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34283716</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34283716</guid></item><item><title><![CDATA[New comment by svnpenn in "Tesla finally breaks and offers round steering wheel on Model S/X"]]></title><description><![CDATA[
<p>> low speed maneuvers<p>AKA maneuvers. Driving on the highway in a straight line is not a maneuver.</p>
]]></description><pubDate>Fri, 06 Jan 2023 03:54:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=34270759</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34270759</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34270759</guid></item><item><title><![CDATA[New comment by svnpenn in "Tesla finally breaks and offers round steering wheel on Model S/X"]]></title><description><![CDATA[
<p>A single u-turn should have been all Tesla needed to understand how terrible an idea yoke is. You try arm over arm, then crash the car.</p>
]]></description><pubDate>Fri, 06 Jan 2023 03:38:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=34270667</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34270667</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34270667</guid></item><item><title><![CDATA[New comment by svnpenn in "Transcoding Unicode with AVX-512: AMD Zen 4 vs. Intel Ice Lake"]]></title><description><![CDATA[
<p>I saw this once before, and both times, it's pretty shocking. Is this really something that needs to be inside the CPU itself? I don't want my CPU doing this. I would rather just take the performance hit and keep the CPU "dumb".</p>
]]></description><pubDate>Thu, 05 Jan 2023 23:58:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=34268854</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34268854</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34268854</guid></item><item><title><![CDATA[New comment by svnpenn in "Google’s quest to digitize troops’ tissue samples"]]></title><description><![CDATA[
<p>Cookie nag and newsletter nag, fuck you.</p>
]]></description><pubDate>Thu, 05 Jan 2023 23:53:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=34268784</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34268784</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34268784</guid></item><item><title><![CDATA[New comment by svnpenn in "Yark: Advanced and easy YouTube archiver now stable"]]></title><description><![CDATA[
<p>Any video you care about, you need to make it your own responsibility to backup the metadata and/or streams. If you're lucky you can internet search the video ID to get the metadata, even after deletion.</p>
]]></description><pubDate>Thu, 05 Jan 2023 22:39:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=34267946</link><dc:creator>svnpenn</dc:creator><comments>https://news.ycombinator.com/item?id=34267946</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34267946</guid></item></channel></rss>