<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: bc_programming</title><link>https://news.ycombinator.com/user?id=bc_programming</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 07 Apr 2026 07:25:14 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=bc_programming" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by bc_programming in "Windows native app development is a mess"]]></title><description><![CDATA[
<p>My favourite example of "Modern" style is the toggle switch, shown even in that image. I laugh a lot of the times I see one, it's the 'replacement' for the checkbox, but it's so awful at actually telegraphing it's current state in a consistent way- (the entire purpose of the control!) that it has to have a label indicating whether it's on or off. I find it so absurd that people genuinely put this stuff into their programs and have no problem with it, because apparently we are just supposed to accept this type of poorly designed component because it's more "Modern".</p>
]]></description><pubDate>Mon, 23 Mar 2026 00:47:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=47484097</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=47484097</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47484097</guid></item><item><title><![CDATA[New comment by bc_programming in "It’s not mold, it’s calcium lactate (2018)"]]></title><description><![CDATA[
<p>We don't digest food exclusively with bacteria. They play a role, of course, but our digestion is done through things with hydrochloric acid and various enzymes produced by the stomach. The bacteria in our stomach is pretty much strains that can both survive the acidic environment and can consume things we cannot digest at all. Various fibers, for example. They help as they consume it and shit out stuff we can digest. Often the things they consume that are indigestible to us are the result of our own breakdown of other compounds; making the process symbiotic.<p>Also, the environment on a kitchen counter is wildly different than the environment inside out stomach, so airborne bacteria- even if we were to presume these were the exact same kinds of bacteria present in our stomach -  being uninterested in foods in the open air doesn't really translate to the idea that the food is indigestible. Many gut bacteria rely on us to break down foods into the things that they can digest, so a colony couldn't start on the surface of the same food(s) in the open air.</p>
]]></description><pubDate>Mon, 31 Mar 2025 20:34:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=43539626</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=43539626</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43539626</guid></item><item><title><![CDATA[New comment by bc_programming in "Why does everyone run ancient Postgres versions?"]]></title><description><![CDATA[
<p>Well if it's self-hosted you have to do it yourself. You can either backup your databases from the old version and restore it to the new version once installed, or you can use pg_upgrade to upgrade/copy a old version data directory to the new version.<p>I don't think this is done automatically when you simply install a new postgres version, but I'm not certain of that.</p>
]]></description><pubDate>Fri, 18 Oct 2024 01:17:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=41875513</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=41875513</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41875513</guid></item><item><title><![CDATA[New comment by bc_programming in "The port of the Windows 95 Start Menu was not all it seemed"]]></title><description><![CDATA[
<p>It's related because that past suggests a history of being untrustworthy. I mean we're talking about running a company that literally stole money from people and intentionally infected peoples computers to try to trick them into giving you more money, not just something he did by accident one weekend but something he dedicated years of his life to. Him leaning heavily on how he worked at a company two decades ago doesn't help. Other than the scam company shut down by washington state, what has he done since?<p>As for the particular claim regarding the start menu, What he actually claimed is that his implementation was removed in production builds. However, at the same time, there's no evidence of it in any of the various Beta and release candidate versions of NT4. Not only that, but prior to the NT4 betas, it was effectively the NT 3.51 "Desktop Shell Update" and none of the releases of that have his claimed implementation. So when and where is it?<p>He states "I wrote the programmatic version in '94 and we ran it internally". The issue is that there really was no "NT4 beta" at that point in time, nor any start menu in NT to add his rotated text code to. It was only around the start of 1994 that what would be known as the Taskbar and Start Menu really appeared in Chicago milestones- we know he isn't referring to those, since 9x didn't support the needed LOGFONT structures.  What would become the start menu on Windows NT only appeared with the "Newshell" project which was preview software that you installed on NT 3.51 to add the Windows 95 enhanced shell. originally a desktop update for Windows NT 3.51 which started around the time of 95's release in, well, 1995. There's no evidence of his special code there- in fact the NT 3.51 Desktop Shell Update previews all used a bitmap.<p>And you might think, ahh, hew must mean before that, but the rotation feature in question, I believe, was new to NT4 altogether- so it would presumably have appeared somewhere during the betas.<p>The problem with his claims seems to be that evidence never seems particular forthcoming. When new information comes out he retracts claims and re-titles videos in order to move his claim into "gaps" where his claims are less falsifiable.</p>
]]></description><pubDate>Wed, 18 Sep 2024 09:42:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=41577710</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=41577710</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41577710</guid></item><item><title><![CDATA[New comment by bc_programming in "One in five genetics papers contains errors thanks to Excel (2016)"]]></title><description><![CDATA[
<p>This issue seems like partly an artifact of the invented binary operator ^. In math exponents are superscripts and there's no binary operator- it's part of the term. But for text on computers, binary operators ended up being fabricated for the things you couldn't represent directly. The caret is common and was the first one to appear, but doubled multiplication signs is another one. Traditionally, binary operators have lower precedence than unary operators since the unary minus is considered part of the term, so the exponent turning into an operator mucks things up if it's still implemented to adhere to that logic.<p>You sort of see the same issue with division. The forward slash is a completely invented binary operator since the actual division symbol was often not present- and let's be real nobody uses the binary division operator when writing formulae. It's supposed to represent the dividing line in a fraction, similar to how division is usually represented in a formula as a fraction of two other expressions. It's got lower precedence than anything in either term- but, if you just replace the dividing line with a forward slash to input the formula into a computer, you'll get incorrect results, because it's replacing what is part of a complete term (the division line) with a new binary operator inserted between sets of terms, which is now subject to precedence rules.</p>
]]></description><pubDate>Sun, 15 Sep 2024 01:11:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=41544378</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=41544378</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41544378</guid></item><item><title><![CDATA[New comment by bc_programming in "Microsoft formally deprecates the Windows Control Panel"]]></title><description><![CDATA[
<p>This is because a particular support page has "The Control Panel is in the process of being deprecated in favor of the Settings app, which offers a more modern and streamlined experience.". Crazy how that somehow has spawned endless articles from tech "news" sites. But it's hardly news, and saying they've 'officially deprecated' is misleading. Fact is The Control Panel has been in the 'process of being deprecated' since Windows 8.</p>
]]></description><pubDate>Fri, 23 Aug 2024 19:58:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=41332559</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=41332559</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41332559</guid></item><item><title><![CDATA[New comment by bc_programming in "Beyond Clean Code"]]></title><description><![CDATA[
<p>In this case, By "side effects" I mean non-obvious changes to the static state, Where a seemingly simple function will both rely on static fields to evaluate it's result as well as make changes to various other fields that will subsequently change the result of that function going forward. I don't think one needs a dogmatic adherence to immutability and avoiding side effects to find that to be undesirable.</p>
]]></description><pubDate>Sat, 27 Jul 2024 04:08:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=41084395</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=41084395</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41084395</guid></item><item><title><![CDATA[New comment by bc_programming in "Beyond Clean Code"]]></title><description><![CDATA[
<p>For me, I bought "Clean Code" because it was, at the time at least, quite highly recommended. After being rather confused for a while, I finally stopped reading right around page 141 when I realized that the reason his examples looked awful were because they were.<p>In that section of the book, he takes a Java port of Donald Knuth's PrintPrimes program, and refactors it. But in doing so, he actually breaks it. He moves state out of local variables and parameters and makes them all static fields, and then refactors the code into long-winded methods that specifically perform side effects or operate on those fields (names like isNotMultipleOfAnyPreviousFactor(), isLeastRelevantMultipleOfNextLargerPrimeFactor()). But the simple act of moving state that would otherwise be part of the stack frame into static fields means he has changed the behaviour of the code - it is no longer thread safe! calling it from different threads will have undefined results because all threads will be operating on the static fields. He demonstrably <i>made the code worse!</i>.<p>It invalidated the entire book for me at that point. Here's "Uncle Bob" trying to pretend to be some aged, skilled, craftsman hand guiding us young, ignorant whippersnappers into being proper craftsman and not only can't he properly refactor a simple prime number sieve as a demonstration, but he's so blind to awful code that he doesn't even see it in his awful example enough that it gets published in the same book that complained about programmers who don't have "code-sense". Mistakes and "errata" are one thing, but when he makes such a big noise about "do it right the first time" and then has an example where he refactors and literally breaks something, that's another.</p>
]]></description><pubDate>Fri, 26 Jul 2024 23:30:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=41083246</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=41083246</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41083246</guid></item><item><title><![CDATA[New comment by bc_programming in "Microsoft will switch off Recall by default after security backlash"]]></title><description><![CDATA[
<p>Not quite what you are describing, but you can prevent any specific executable from ever running by configuring a "debugger" for it in Image File Execution options (HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options). You add a key with the executable name and then add a "debugger" value, then point that debugger at C:\Windows\system32\systray.exe. Every time the named executable tries to launch, Windows will try to "debug" it with systray, which immediately exits so the program never actually runs. After uninstalling OneDrive this can be set to prevent OneDriveSetup.exe from ever running for example.</p>
]]></description><pubDate>Fri, 07 Jun 2024 21:39:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=40613261</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=40613261</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40613261</guid></item><item><title><![CDATA[New comment by bc_programming in "The Format Dialog in Windows NT"]]></title><description><![CDATA[
<p>He was CTO but also owned the company. That is why he was named directly on the complaint.<p>I feel he violated what I feel are very basic, elementary ethical principles with regards to software development, by specifically setting out to create software products that were not designed to give the user value but to scam and trick them out of their money.<p>(There's an argument to be made that he was merely ahead of his time at Microsoft but that's perhaps another discussion.)<p>He's retired and supposedly wealthy. Not sure what sort of stock options he might have for 7 years at Microsoft, but how much of that wealth (if it even exists) is or was from the scam company? He didn't have to pay most of the fine and the number of customers that requested refunds is hardly documented. For all we know dude is still living off money he scammed from people.<p>Either way when you stoop that low I don't think you can ever stand up straight again- all you can do is try to hide your slouch.<p>>What would it take for you to let go of this vendetta that you say you have?<p>Well, to take an extreme but analogous (IMO) example - what would it take to trust Bernie Madoff for financial advice? That's kind of what I feel this is like. Doesn't matter if they "went through the justice system". You never regain the trust in the field when you so readily violated it to make money.</p>
]]></description><pubDate>Mon, 25 Mar 2024 23:19:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=39822408</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=39822408</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39822408</guid></item><item><title><![CDATA[New comment by bc_programming in "The Format Dialog in Windows NT"]]></title><description><![CDATA[
<p>Fair enough. As others have noted the source code was leaked; I've got NT4, NT5, XP, XPSP1 and Server 2003 codebases to review from that, which I downloaded a good while ago. I've been a software developer primarily targeting Windows for 20 years, 10 of those professionally. I was a Microsoft MVP for half of those (2012-2016 inclusive). The reference to the date is found in the header of nt4\private\windows\shell\shelldll\unicode\format.c<p>The 32GB limit for FAT32 doesn't appear to be handled by the shell code or the dialog, so when I said it was handled internally to the formatting code, I couldn't actually find that. It's just somewhere loweer than the UI. What I did do howeever was boot up Windows 2000, the first version that did have FAT32, and there's no limitation in the format dialog itself. It goes through the entire process and then gives a "Volume too big" error after it has gone through the process, an error shared by not just the format dialog, but diskpart, disk management, and format, which certainly suggests that that is happening at some lower level. The dialog in question does just call into other functions to perform the actual format, but I wasn't able to find the actual source files for it.<p>>Dave for his part provided his credentials.<p>Now he understandably does leave out a bit of info about his history which you could arguably say is part of my "vendetta" that you observed. The reason for the proportion of comments is less a vendetta and more that I get kind of worked up every time stuff of his is posted and people applaud how great he is. He's no Dave Cutler but he certainly talks like he was.<p>Now, as to the tidbit. Dave Plummer ran a scam company that was sued by Washington State in 2006, "SoftwareOnline.com, Inc. ". He actually left Microsoft specifically to run this company. Court documents can be seen here:<p><a href="https://www.atg.wa.gov/news/news-releases/attorney-general-s-office-sues-settles-washington-based-softwareonlinecom" rel="nofollow">https://www.atg.wa.gov/news/news-releases/attorney-general-s...</a><p>You can find David W. Plummer listed in the court complaint.<p>The short of it is that it was an online software scam company that tricked people into downloading fake Anti-virus and security software using online ads, and then the software delivered additional adware and nagware onto users machines.<p>That is why it may appear I have a vendetta. I don't trust a word he says and especially when what he says directly contradicts other sources. Mistakes in memory are one thing, but some of them are rather beyond the sort of thing I think is reasonable. Paired with his history, I'm convinced he's actually lying intentionally because he's trying to build a "following" and "Dave's Garage" is just his latest scam. That's why he keeps "coming forward" in posts and his youtube as writing this or doing that. What bothers me is that it's working, because most people don't seem to even question it, even where there are rather severe contradictions.</p>
]]></description><pubDate>Mon, 25 Mar 2024 07:48:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=39813625</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=39813625</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39813625</guid></item><item><title><![CDATA[New comment by bc_programming in "The Format Dialog in Windows NT"]]></title><description><![CDATA[
<p>I was able to confirm in the Windows NT4 source code that he originally wrote some of the code for the format dialog on 2-13-95. That much is true. (late 1994, early 1995, close enough)<p>>"I also had to decide how much 'cluster slack' would be too much, and that wound up constraining the format size of a FAT volume to 32GB."<p>NT4 didn't support FAT32, and NT4 actually was actually able to be 4GB rather than 2GB for a FAT volume because NT4 allowed 64K clusters, so actually exceeded what most systems were able to do at the time. Formatting as FAT in NT4 had no cluster check or option. The cluster size used was decided based on the size of the volume.<p>Furthermore, the The 32GB limitation for FAT32 volumes was originally in the internal format functions, not the dialog itself. On Windows 2000 (Which does support FAT32) you can try to format a drive bigger than 32GB as FAT32, but the formatting will fail, as it is hard-coded at the end of the format to fail trying to format FAT32 volumes larger than 32GB. The dialog itself isn't what presents this limitation and it is shared by the command line format.com which uses the same functions.<p>Not sure why he seems to always exaggerate his own involvement. He's got people believing that he wrote the Zip folder code that Microsoft literally licensed from Info-Zip because he had to touch it to get it integrated. I guess exaggeration is what "influencers" do, and that's what he is at least trying to be now.</p>
]]></description><pubDate>Mon, 25 Mar 2024 03:15:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=39812561</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=39812561</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39812561</guid></item><item><title><![CDATA[New comment by bc_programming in "The Corvette that Windows zip folders bought"]]></title><description><![CDATA[
<p>This guy has always rubbed me the wrong way. Like he's grifting. Which isn't helped by the fact I've learned recently that apparently he literally did run a scam company and spread malware and got shut down by a state government, as other commenters have noted here.<p>According to Raymond Chen here: <a href="https://devblogs.microsoft.com/oldnewthing/20180515-00/?p=98755" rel="nofollow">https://devblogs.microsoft.com/oldnewthing/20180515-00/?p=98...</a>
 "Furthermore, since the compression and decompression code weren’t written by anybody from Microsoft, there is no expertise in the code base, which means that debugging and making changes is a very difficult undertaking."<p>Which kind of conflicts with Dave's story, where he was, in fact, working at Microsoft.<p>Additionally, Raymond Chen says: "On of the terms of the license is that the compression and decompression code for Zip folders should be tied to UI actions and not be programmatically drivable. The main product for the company that provided the compression and decompression code is the compression and decompression code itself. If Windows allowed programs to compress and decompression files by driving the shell namespace directly, then that company would have given away their entire business!"<p>It doesn't really make sense that he would have had this sort of restriction on the licensing since there was no "company" involved and he had no main product to protect there.<p>According to the leaked source code for XP/2K3, The zipped-folders support in Windows was from Info-zip. Dave did copy something from "VZip" on his own:<p><pre><code>    History:    Sep-26-96  Davepl  Created (from old VZip code)
</code></pre>
This was a set of utility CIDL functions and not related to the zip functionality in Windows.</p>
]]></description><pubDate>Mon, 04 Mar 2024 22:27:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=39596997</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=39596997</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39596997</guid></item><item><title><![CDATA[New comment by bc_programming in "Nintendo is suing the creators of Switch emulator Yuzu"]]></title><description><![CDATA[
<p>My understanding is that The "Nintendo hired the iNES Developer" story is actually it's own myth!<p>The person referenced who Nintendo hired is Kawase Tomohiro.<p>The basis for calling him "The iNES Developer" is that, in a changelog for 0.7 of iNES, Marat Fayzullin - the developer of iNES -  wrote: "Sound support completely rewritten, thanks to Kawase Tomohiro"<p>That is the entirety of the association. That single line in a changelog. Based on similar "thanks" lines it was probably because they reported some emulation issues and not because they personally rewrote the sound support for the emulator, but resulted in Marat doing so. It's actually interesting how these stories seem to change over time. The last time I heard this, the story was that Nintendo had hired somebody who contributed to iNES, which was at least technically true if a bit misleading, but it seems that now the story is that they hired *the* iNES Developer. Which seems particularly silly when we consider the basis is that 8 word changelog line.</p>
]]></description><pubDate>Wed, 28 Feb 2024 00:20:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=39532181</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=39532181</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39532181</guid></item><item><title><![CDATA[New comment by bc_programming in "Star Trek: Borg – Remastered"]]></title><description><![CDATA[
<p>My understanding is that TOS and TNG were shot on film and the 1080p versions aren't upscaled but are actually rescanned from the film. TNG supposedly had to basically be re-edited from the original footage after rescanning, but not sure about TOS.<p>That method wouldn't be possible for DS9 or Voyager as both of those shows were shot digitally at 480p. I remember hearing that there's been some community work that upscales DS9 to 1080p using neural networks, but haven't really been able to find anything concrete about that.</p>
]]></description><pubDate>Tue, 20 Feb 2024 11:18:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=39439976</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=39439976</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39439976</guid></item><item><title><![CDATA[New comment by bc_programming in "YouTube is now blocking ad blockers so I make ads run faster"]]></title><description><![CDATA[
<p>Firefox's implementation of Manifest V3 will work with software like ad blockers as it does not have the same limitations imposed on the browser side.</p>
]]></description><pubDate>Thu, 23 Nov 2023 22:17:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=38398221</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=38398221</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38398221</guid></item><item><title><![CDATA[New comment by bc_programming in "Show HN: YouTube banned adblockers so I built an extension to skip their ads"]]></title><description><![CDATA[
<p>When they first started this, a month ago (or so?) I just right-clicked and used block element with uBlock Origin to block the popup and the div element that covered the page to dim it.<p>I've not seen it since. Only side effect is videos sometimes pause right as they start. I assume because it stops the video and shows the pop up. I can just resume immediately though.</p>
]]></description><pubDate>Sun, 19 Nov 2023 09:11:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=38330729</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=38330729</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38330729</guid></item><item><title><![CDATA[New comment by bc_programming in "A Grand Theft Auto III Re-Implementation"]]></title><description><![CDATA[
<p>"Clean room" reverse engineering basically has you with two completely separate groups of developers. One group will decompile and analyze the target software, and build a detailed specification of how it works. The second group, with legal, sworn documents that they have never seen even the machine code of the target software - uses those specifications to build the "clone".</p>
]]></description><pubDate>Wed, 01 Nov 2023 09:40:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=38096248</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=38096248</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38096248</guid></item><item><title><![CDATA[New comment by bc_programming in "Sodium batteries offer an alternative to tricky lithium"]]></title><description><![CDATA[
<p>Right, but water not being readily burnt is not evidence that hydrogen is inert.</p>
]]></description><pubDate>Thu, 26 Oct 2023 17:56:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=38029281</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=38029281</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38029281</guid></item><item><title><![CDATA[New comment by bc_programming in "Most UI applications are broken real-time applications"]]></title><description><![CDATA[
<p>A related detail, even things like icon design have gone in a strange direction. In the interest of simplicity they've gone from recognizable to rather amorphous blobs. A button for print has gone from a clearly recognizable image of a printer, enough you could probably even guess the model number, to the icon being a rounded square with another rounded square sticking out the middle top. Many of these newer icons are just too abstract and similar to one another to be recognizable, IMO, and I think the user experience suffers.</p>
]]></description><pubDate>Fri, 22 Sep 2023 03:46:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=37607594</link><dc:creator>bc_programming</dc:creator><comments>https://news.ycombinator.com/item?id=37607594</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37607594</guid></item></channel></rss>