<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: oofabz</title><link>https://news.ycombinator.com/user?id=oofabz</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 09 May 2026 03:13:17 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=oofabz" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by oofabz in "StarFighter 16-Inch"]]></title><description><![CDATA[
<p>Every generation of CPU has high-power and low-power variants. The i9 is a high power variant that generates a lot of heat but what you want is the low power variant.<p>I recommend looking for a used laptop with a Core Ultra 7 165U (<$500) or a Core Ultra 7 268V (>$1000). Maybe an HP EliteBook. Either one would be faster than your old i9 and run much cooler.</p>
]]></description><pubDate>Wed, 06 May 2026 03:55:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=48031972</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=48031972</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48031972</guid></item><item><title><![CDATA[New comment by oofabz in "4-bit floating point FP4"]]></title><description><![CDATA[
<p>I see their 60-bit float has the same size exponent (11 bits) as today's doubles. Only the mantissa was smaller, 48 bits instead of 52.</p>
]]></description><pubDate>Mon, 20 Apr 2026 05:25:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47830658</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=47830658</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47830658</guid></item><item><title><![CDATA[New comment by oofabz in "A brief look at FreeBSD"]]></title><description><![CDATA[
<p>One of the main differences from Linux is BSD's separation between the base system and installed applications.<p>On Ubuntu, Arch, Mint, etc. there is no such distinction. Everything is made of packages, including the base system. You have packages for the kernel, the init system, logging, networking, firmware, etc. These are all versioned independently and whether or not they are considered "essential" is up to the user to decide.<p>On BSD, the base system is not composed of packages. It is a separate thing, with the kernel, libc, command line utilities all tightly coupled and versioned together. This allows the components to evolve together, with breaking ABI changes that would not be practical in Linux. This makes BSD better for research, which is why things like IPv6, address space randomization, SSH, jails, capabilities were developed there.<p>Packages are used for applications and are isolated to /usr/local. Dependency and compatibility problems only exist for packages. The base system is always there, always bootable, and you can count on being able to log in to a command line session and use the standard suite of tools. It is sort of like a Linux rescue image, except you boot off it every time.</p>
]]></description><pubDate>Thu, 13 Nov 2025 06:34:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=45911480</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=45911480</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45911480</guid></item><item><title><![CDATA[New comment by oofabz in "Integer continued fractions for complex numbers"]]></title><description><![CDATA[
<p>I first read about continued fractions in HAKMEM from 1972. These things have fascinated programmers for decades.<p><a href="https://web.archive.org/web/20190906055006/http://home.pipeline.com/~hbaker1/hakmem/cf.html" rel="nofollow">https://web.archive.org/web/20190906055006/http://home.pipel...</a></p>
]]></description><pubDate>Wed, 27 Aug 2025 05:02:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=45035639</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=45035639</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45035639</guid></item><item><title><![CDATA[New comment by oofabz in "The history of the Schwartzian Transform (2016)"]]></title><description><![CDATA[
<p>I find it interesting that the transform was controversial in the '90s.<p>Today, it seems like a normal solution to the problem to me, and the controversy seems silly. I have much experience with the map function from Javascript. It is too simple to be objectionable.<p>But in the '90s, I would also have had trouble understanding the transform. Lambdas/closures were unheard of to everyone except Lisp dweebs. Once I figured out what the code was doing, I would be suspicious of its performance and memory consumption. This was 1994! Kilobytes mattered and optimal algorithmic complexity was necessary for anything to be usable. Much safer to use a well understood for loop. I have plenty of experience making those fast, and that's what map() must be doing under the hood anyway.<p>But I would have been wrong! map() isn't doing anything superfluous and I can't do it faster myself. The memory consumption of the temporary decorated array is worth it to parse the last word N times instead of N log N times. Lisp is certainly a slow language compared to C, but that's not because of its lambdas!</p>
]]></description><pubDate>Tue, 05 Aug 2025 05:05:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=44794507</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=44794507</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44794507</guid></item><item><title><![CDATA[New comment by oofabz in "Rendering Crispy Text on the GPU"]]></title><description><![CDATA[
<p>Very impressive work. For those who aren't familiar with this field, Valve invented SDF text rendering for their games. They published a groundbreaking paper on the subject in 2007. It remains a very popular technique in video games with few changes.<p>In 2012, Behdad Esfahbod wrote Glyphy, an implementation of SDF that runs on the GPU using OpenGL ES. It has been widely admired for its performance and enabling new capabilities like rapidly transforming text. However it has not been widely used.<p>Modern operating systems and web browsers do not use either of these techniques, preferring to rely on 1990s-style Truetype rasterization. This is a lightweight and effective approach but it lacks many capabilities. It can't do subpixel alignment or arbitrary subpixel layout, as demonstrated in the article. Zooming carries a heavy performance penalty and more complex transforms like skew, rotation, or 3d transforms can't be done in the text rendering engine. If you must have rotated or transformed text you are stuck resampling bitmaps, which looks terrible as it destroys all the small features that make text legible.<p>Why the lack of advancement? Maybe it's just too much work and too much risk for too little gain. Can you imagine rewriting a modern web browser engine to use GPU-accelerated text rendering? It would be a daunting task. Rendering glyphs is one thing but how about handling line breaking? Seems like it would require a lot of communication between CPU and GPU, which is slow, and deep integration between the software and the GPU, which is difficult.</p>
]]></description><pubDate>Fri, 13 Jun 2025 04:26:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=44265705</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=44265705</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44265705</guid></item><item><title><![CDATA[New comment by oofabz in "VVVVVV Source Code"]]></title><description><![CDATA[
<p>Authentically bad is a good way to put it. My favorite part is the 3300 line Game::updatestate() function and its gigantic switch statement.</p>
]]></description><pubDate>Wed, 07 May 2025 02:22:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=43911640</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=43911640</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43911640</guid></item><item><title><![CDATA[New comment by oofabz in "The Efficiency of Vim"]]></title><description><![CDATA[
<p>You can do selection first in Vim by using visual mode. For this particular example (5dd) you would want to use visual line mode by pressing shift-v. Then you can select the lines you wish to cut, and press d to delete them, or apply any other action to that block of text.<p>I frequently use c (change) on my visual selections, type in new code at the point where it was removed, then use p to paste the old code somewhere else.</p>
]]></description><pubDate>Thu, 27 Feb 2025 04:00:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=43191205</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=43191205</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43191205</guid></item><item><title><![CDATA[New comment by oofabz in "The surprising struggle to get a Unix Epoch time from a UTC string in C or C++"]]></title><description><![CDATA[
<p>timegm() is even available on Haiku</p>
]]></description><pubDate>Sun, 19 Jan 2025 22:20:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=42762615</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=42762615</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42762615</guid></item><item><title><![CDATA[New comment by oofabz in "Carlsen disqualified from World Rapid and Blitz championship for wearing jeans"]]></title><description><![CDATA[
<p>Beatriz Marinello is a professional chess player who was Chilean Women's Chess Champion in 1980 and was vice president of FIDE until 2018.</p>
]]></description><pubDate>Sat, 28 Dec 2024 19:35:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=42533800</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=42533800</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42533800</guid></item><item><title><![CDATA[New comment by oofabz in "Making AMD GPUs competitive for LLM inference (2023)"]]></title><description><![CDATA[
<p>The die size of the B580 is 272 mm2, which is a lot of silicon for $249. The performance of the GPU is good for its price but bad for its die size. Manufacturing cost is closely tied to die size.<p>272 mm2 puts the B580 in the same league as the Radeon 7700XT, a $449 card, and the GeForce 4070 Super, which is $599. The idea that Intel is selling these cards at a loss sounds reasonable to me.</p>
]]></description><pubDate>Tue, 24 Dec 2024 06:01:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=42500007</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=42500007</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42500007</guid></item><item><title><![CDATA[New comment by oofabz in "New Google Sheet on half of 13.6" MacBook Air screen is fully covered by popups"]]></title><description><![CDATA[
<p>Never had this problem with Gnumeric</p>
]]></description><pubDate>Mon, 23 Dec 2024 05:17:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=42491983</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=42491983</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42491983</guid></item><item><title><![CDATA[New comment by oofabz in "Is it possible to build a perfectly spherical prince Ruperts drop (2015)"]]></title><description><![CDATA[
<p>Instead of trying to cool the surface of the glass sphere rapidly, maybe it would be more practical to heat the interior.</p>
]]></description><pubDate>Sat, 14 Dec 2024 06:19:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=42415058</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=42415058</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42415058</guid></item><item><title><![CDATA[New comment by oofabz in "Air traffic failure caused by two locations 3600nm apart sharing 3-letter code"]]></title><description><![CDATA[
<p>Since 50% = 0.5, and proof doesn't take a percentage, I believe "50% proof" would be 0.25% ABV.</p>
]]></description><pubDate>Tue, 19 Nov 2024 07:18:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=42180784</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=42180784</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42180784</guid></item><item><title><![CDATA[New comment by oofabz in "To Be Born in a Bag"]]></title><description><![CDATA[
<p>A lot of people, including myself, prefer living in rural areas. They have more natural beauty, more solitude, tighter knit communities, cultures that prioritize family. Not everyone shares your own personal preferences.<p>It is true that there are fewer economic opportunities in the country. Cities are a labor market, after all. But there are hospitals everywhere, so if you work in medicine, you have the opportunity to work in the country and still earn good pay.</p>
]]></description><pubDate>Mon, 07 Oct 2024 05:29:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=41763056</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=41763056</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41763056</guid></item><item><title><![CDATA[New comment by oofabz in "Ask HN: What do you use to backup your VMs?"]]></title><description><![CDATA[
<p>Proxmox Backup Server</p>
]]></description><pubDate>Sat, 28 Sep 2024 05:25:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=41678096</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=41678096</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41678096</guid></item><item><title><![CDATA[New comment by oofabz in "Tripping on Xenon Gas (2023)"]]></title><description><![CDATA[
<p>More evidence for Sangamon's principle</p>
]]></description><pubDate>Thu, 27 Jun 2024 07:55:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=40808358</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=40808358</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40808358</guid></item><item><title><![CDATA[New comment by oofabz in "NASA indefinitely delays return of Starliner to review propulsion data"]]></title><description><![CDATA[
<p>1 Planck time</p>
]]></description><pubDate>Sat, 22 Jun 2024 04:51:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=40756357</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=40756357</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40756357</guid></item><item><title><![CDATA[New comment by oofabz in "OpenSSH introduces options to penalize undesirable behavior"]]></title><description><![CDATA[
<p>A strong username also helps! Most SSH brute force attempts are for root, admin, or ubnt.</p>
]]></description><pubDate>Sat, 08 Jun 2024 02:32:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=40614838</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=40614838</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40614838</guid></item><item><title><![CDATA[New comment by oofabz in "Repairing my mug with Kintsugi"]]></title><description><![CDATA[
<p>This mug is well on its way to becoming a tsukumogami.</p>
]]></description><pubDate>Sun, 02 Jun 2024 16:21:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=40555302</link><dc:creator>oofabz</dc:creator><comments>https://news.ycombinator.com/item?id=40555302</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40555302</guid></item></channel></rss>