<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: Aefiam</title><link>https://news.ycombinator.com/user?id=Aefiam</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 04 May 2026 17:51:43 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Aefiam" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Aefiam in "GameStop makes $55.5B takeover offer for eBay"]]></title><description><![CDATA[
<p>It doesnt really change much, by buying a company its future ebitda will be included, it only delays the reward by some time.
So yes he can just buy a bigger company</p>
]]></description><pubDate>Mon, 04 May 2026 12:57:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=48008134</link><dc:creator>Aefiam</dc:creator><comments>https://news.ycombinator.com/item?id=48008134</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48008134</guid></item><item><title><![CDATA[New comment by Aefiam in "Neanderthals survived on a knife's edge for 350k years"]]></title><description><![CDATA[
<p>they did invent the wheel, they just didnt use it for transportion.</p>
]]></description><pubDate>Wed, 01 Apr 2026 11:25:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=47599399</link><dc:creator>Aefiam</dc:creator><comments>https://news.ycombinator.com/item?id=47599399</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47599399</guid></item><item><title><![CDATA[New comment by Aefiam in "The EU made Apple adopt new Wi-Fi standards, and now Android can support AirDrop"]]></title><description><![CDATA[
<p>The iphone could have had both usbc and lightning, so if they cared about that they would have done it.</p>
]]></description><pubDate>Thu, 27 Nov 2025 13:47:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=46069189</link><dc:creator>Aefiam</dc:creator><comments>https://news.ycombinator.com/item?id=46069189</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46069189</guid></item><item><title><![CDATA[New comment by Aefiam in "An overengineered solution to `sort | uniq -c` with 25x throughput (hist)"]]></title><description><![CDATA[
<p>you can develop just as fast or even faster with python once you develop a good enough utility library for it.<p>For example my python interpreter imports my custom List and Path classes and I could just do the following to get the same result:<p>List(List(Path("filepath").read_text_file().splitlines()).group_by_key(lambda x:x).items()).map(lambda x:(len(x[1]),x[0])).sorted()<p>and if used often enough, it could made an utility method:<p>Path("filepath").read_sorted_by_most_common()<p>So I find it shortsighted to reject someone based on that without giving them a chance to explain their reasoning.<p>I think generally people really underestimate how much more productive you can be with a good utility library.</p>
]]></description><pubDate>Mon, 27 Oct 2025 12:55:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=45720496</link><dc:creator>Aefiam</dc:creator><comments>https://news.ycombinator.com/item?id=45720496</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45720496</guid></item><item><title><![CDATA[New comment by Aefiam in "An overengineered solution to `sort | uniq -c` with 25x throughput (hist)"]]></title><description><![CDATA[
<p>how is this any less secure than running a binary/installer?
the binary could run this inside?</p>
]]></description><pubDate>Mon, 27 Oct 2025 11:16:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=45719646</link><dc:creator>Aefiam</dc:creator><comments>https://news.ycombinator.com/item?id=45719646</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45719646</guid></item><item><title><![CDATA[New comment by Aefiam in "Be Careful with Obsidian"]]></title><description><![CDATA[
<p>this page gives no arguments why nonfree software is unethical</p>
]]></description><pubDate>Thu, 23 Oct 2025 09:08:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=45679817</link><dc:creator>Aefiam</dc:creator><comments>https://news.ycombinator.com/item?id=45679817</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45679817</guid></item><item><title><![CDATA[New comment by Aefiam in "A failure of security systems at PayPal is causing concern for German banks"]]></title><description><![CDATA[
<p>The optimal amount of fraud <i>is</i> zero.<p>But fraud prevention is not free and has negative returns at some point.<p>I dislike it when people use "the optimal amount of fraud isnt zero", because it is wrong and makes the underlying problem harder to understand, which is that people like to overoptimize a single desirable property(fraud prevention) without considering other desirable properties(like ease of use and a low rate of false positives for legit transactions)</p>
]]></description><pubDate>Thu, 28 Aug 2025 06:51:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=45049213</link><dc:creator>Aefiam</dc:creator><comments>https://news.ycombinator.com/item?id=45049213</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45049213</guid></item><item><title><![CDATA[New comment by Aefiam in "Crimes with Python's Pattern Matching (2022)"]]></title><description><![CDATA[
<p>case .foo is explicitly mentioned in <a href="https://peps.python.org/pep-0622/" rel="nofollow">https://peps.python.org/pep-0622/</a> :<p>>  While potentially useful, it introduces strange-looking new syntax without making the pattern syntax any more expressive. Indeed, named constants can be made to work with the existing rules by converting them to Enum types, or enclosing them in their own namespace (considered by the authors to be one honking great idea)[...]
If needed, the leading-dot rule (or a similar variant) could be added back later with no backward-compatibility issues.<p>second: you can use case MyObject() as obj: print(obj)</p>
]]></description><pubDate>Thu, 21 Aug 2025 21:37:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=44978390</link><dc:creator>Aefiam</dc:creator><comments>https://news.ycombinator.com/item?id=44978390</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44978390</guid></item><item><title><![CDATA[New comment by Aefiam in "Uber, Postmates Agree on $2.65B All-Stock Deal"]]></title><description><![CDATA[
<p>> So city dwellers in the ancient Roman world did not have kitchens<p>Thats not true ( <a href="https://quatr.us/romans/roman-kitchens-houses-ancient-rome.htm" rel="nofollow">https://quatr.us/romans/roman-kitchens-houses-ancient-rome.h...</a> ).<p>Rich romans did have kitchens, poor people could not afford one and instead made food in their appartment room or bought food from streetvendors or takeout food from thermopolia.<p>There was likely no demand for food delivery as poor people couldnt afford it and rich people had slaves to make their food.</p>
]]></description><pubDate>Mon, 06 Jul 2020 06:45:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=23745322</link><dc:creator>Aefiam</dc:creator><comments>https://news.ycombinator.com/item?id=23745322</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23745322</guid></item></channel></rss>