<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: rectangletangle</title><link>https://news.ycombinator.com/user?id=rectangletangle</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 01 Jun 2026 01:18:27 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=rectangletangle" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by rectangletangle in "Why Is the Migration to Python 3 Taking So Long?"]]></title><description><![CDATA[
<p>"Practicality beats purity"</p>
]]></description><pubDate>Fri, 15 Nov 2019 05:16:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=21542379</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21542379</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21542379</guid></item><item><title><![CDATA[New comment by rectangletangle in "The average American eats 17 teaspoons of added sugar daily"]]></title><description><![CDATA[
<p>Orange juice isn't actually all that healthy. Many "natural" sugars are bound up with fiber, diluting them lowering their glycemic index. Also IIRC there was some research a few years back that asserted the ratio of different sugar types actually had a significant impact on the metabolism.</p>
]]></description><pubDate>Sun, 10 Nov 2019 00:14:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=21495474</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21495474</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21495474</guid></item><item><title><![CDATA[New comment by rectangletangle in "My name causes an issue with any booking"]]></title><description><![CDATA[
<p>I actually attempted to do this.<p>I used ML techniques to help smooth over some of the difficult parts (there are many difficult parts). The hardest cases are ambiguous names, for instance delineating Hispanic vs. Puerto Rican naming conventions (they're different). The fundamental approach involved pushing all ambiguity up to the end user, so they always have the option to correct the system.<p><a href="https://www.alphanym.com/demo/?jm2" rel="nofollow">https://www.alphanym.com/demo/?jm2</a></p>
]]></description><pubDate>Sat, 09 Nov 2019 21:36:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=21494535</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21494535</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21494535</guid></item><item><title><![CDATA[New comment by rectangletangle in "My name causes an issue with any booking"]]></title><description><![CDATA[
<p>I actually wrote an API for handling personal names, because software mangling people's names irked my pedanticism. The fundamental takeaway is that names are ridiculously complex, equivalent to any other part of natural language. For every rule you could contrive there are exceptions, and many more legitimately ambiguous cases.<p>You shouldn't ever use first/last name fields, because they force users to adapt around your system (many names don't follow this structure). A long unstructured text fields is best, because it can accommodate nearly anyone who's name can be spelled with unicode. Finally always check your interpretation of a name with the person in question, seeing as they're the end authority.<p><a href="https://www.alphanym.com/demo/?jm1" rel="nofollow">https://www.alphanym.com/demo/?jm1</a></p>
]]></description><pubDate>Sat, 09 Nov 2019 21:17:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=21494416</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21494416</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21494416</guid></item><item><title><![CDATA[New comment by rectangletangle in "List of Lists of Lists"]]></title><description><![CDATA[
<p><p><pre><code>  >>> wiki_list = []
  >>> wiki_list.append(wiki_list)
  >>> print(wiki_list)
  [[...]]</code></pre></p>
]]></description><pubDate>Tue, 29 Oct 2019 04:56:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=21384342</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21384342</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21384342</guid></item><item><title><![CDATA[New comment by rectangletangle in "Ask HN: What is the most beautiful piece of code you've ever read?"]]></title><description><![CDATA[
<p>Transposing a matrix in Python is pretty neat.<p><pre><code>  >>>list(zip(*[(1, 2, 3), (4, 5, 6), (7, 8, 9)]))
  [(1, 4, 7), (2, 5, 8), (3, 6, 9)]</code></pre></p>
]]></description><pubDate>Mon, 28 Oct 2019 05:35:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=21374535</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21374535</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21374535</guid></item><item><title><![CDATA[New comment by rectangletangle in "“May You Live in Interesting Times”"]]></title><description><![CDATA[
<p>It exists in California too at least.</p>
]]></description><pubDate>Thu, 24 Oct 2019 23:51:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=21350365</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21350365</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21350365</guid></item><item><title><![CDATA[New comment by rectangletangle in "“May You Live in Interesting Times”"]]></title><description><![CDATA[
<p>These exist in the US, but they're called black and white cookies. According to Wikipedia they may have been created in New York by Bavarian immigrants. But it's unclear if the confection's origin is German or American.</p>
]]></description><pubDate>Thu, 24 Oct 2019 23:18:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=21350165</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21350165</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21350165</guid></item><item><title><![CDATA[New comment by rectangletangle in "“May You Live in Interesting Times”"]]></title><description><![CDATA[
<p>Not quite, I'm referring to american fritessaus, which is more like mayonaise, and distinct from thousand island dressing (which is popular in the US, In-N-Out calls it "spread").<p>Digging a little deeper it appears like McDonalds may have actually invented the sauce to appeal to the Dutch market, where fritessaus is popular (instead of tomato ketchup). Because McDonalds is American, their take on fritessaus grew into it's own thing called "American Fritessaus," or simply "American Saus."<p><a href="https://www.hollandsupermarket.eu/remia-fritessaus-american-500ml/snacks/mayonnaise/451220/" rel="nofollow">https://www.hollandsupermarket.eu/remia-fritessaus-american-...</a></p>
]]></description><pubDate>Thu, 24 Oct 2019 22:56:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=21350038</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21350038</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21350038</guid></item><item><title><![CDATA[New comment by rectangletangle in "“May You Live in Interesting Times”"]]></title><description><![CDATA[
<p><a href="https://www.hollandsupermarket.eu/remia-fritessaus-american-500ml/snacks/mayonnaise/451220/" rel="nofollow">https://www.hollandsupermarket.eu/remia-fritessaus-american-...</a><p><a href="http://www.typicaldutchstuff.com/ahamericanfritessaus-pi-3647.html" rel="nofollow">http://www.typicaldutchstuff.com/ahamericanfritessaus-pi-364...</a><p><a href="https://cf.geekdo-images.com/camo/271763ae14b82c0f612b6b9f61edeed298f65966/687474703a2f2f7777772e6d69636861656c2d736368656c7465722e64652f77702d636f6e74656e742f4d63442d467269746573736175732d312e6a7067" rel="nofollow">https://cf.geekdo-images.com/camo/271763ae14b82c0f612b6b9f61...</a><p>This is what I'm referring to.<p>Digging a little deeper it appears like McDonalds may have actually invented the sauce to appeal to the Dutch market, where fritessaus is popular (instead of tomato ketchup). Because McDonalds is American, their take on fritessaus grew into it's own thing called "American Fritessaus," or simply "American Saus."</p>
]]></description><pubDate>Thu, 24 Oct 2019 22:41:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=21349937</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21349937</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21349937</guid></item><item><title><![CDATA[New comment by rectangletangle in "“May You Live in Interesting Times”"]]></title><description><![CDATA[
<p>Lol reminds me of Hawaiian pizza (pizza topped with pineapples and thinly sliced ham). Hawaiian pizza is actually a Canadian dish, though it's now popular in most of the US, including Hawaii.</p>
]]></description><pubDate>Thu, 24 Oct 2019 22:23:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=21349809</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21349809</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21349809</guid></item><item><title><![CDATA[New comment by rectangletangle in "“May You Live in Interesting Times”"]]></title><description><![CDATA[
<p>On the west coast of the US people sometimes jokingly refer to Oregon as "God's Country," because it has lots of churches.</p>
]]></description><pubDate>Thu, 24 Oct 2019 22:16:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=21349756</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21349756</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21349756</guid></item><item><title><![CDATA[New comment by rectangletangle in "“May You Live in Interesting Times”"]]></title><description><![CDATA[
<p>Not exactly the same thing. It's like mayo but thinner and sweeter, and has little green fleks in it.</p>
]]></description><pubDate>Thu, 24 Oct 2019 22:02:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=21349653</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21349653</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21349653</guid></item><item><title><![CDATA[New comment by rectangletangle in "“May You Live in Interesting Times”"]]></title><description><![CDATA[
<p>For those who are curious it's basically mayonnaise, but not quite. There is no direct equivalent in US cuisine to my knowledge.</p>
]]></description><pubDate>Thu, 24 Oct 2019 21:51:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=21349571</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21349571</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21349571</guid></item><item><title><![CDATA[New comment by rectangletangle in "“May You Live in Interesting Times”"]]></title><description><![CDATA[
<p>Kind of curious what the counterpart to this would be. What things are typically ascribed to Americans, that Americans are often unaware of?<p>American Sauce in the Netherlands comes to mind.</p>
]]></description><pubDate>Thu, 24 Oct 2019 21:39:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=21349476</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21349476</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21349476</guid></item><item><title><![CDATA[New comment by rectangletangle in "Changing dynamics of the drug overdose epidemic in the US, 1979-2016"]]></title><description><![CDATA[
<p>You're certainly correct. But in this case it might bolster human specific pathogens. I know there is some overlap between human an animal pathogens, but unfettered access to antibiotics might accelerate the problem for humans specifically (which is probably worse than the current prescription only policy in the US).</p>
]]></description><pubDate>Thu, 24 Oct 2019 21:00:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=21349110</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21349110</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21349110</guid></item><item><title><![CDATA[New comment by rectangletangle in "Changing dynamics of the drug overdose epidemic in the US, 1979-2016"]]></title><description><![CDATA[
<p>What's your stance on antibiotics? Or did you only mean "recreational" drugs?<p>The reason why I bring this up is that antimicrobial resistance is an externality of widespread antibiotic usage. Unfettered access to all drugs would probably accelerate antimicrobial resistance, because people tend to overuse/abuse antibiotics when they have the freedom to.<p>(Not trying to be mean/inflammatory/pedantic, I'm genuinely curious how HN would reconcile these stances.)</p>
]]></description><pubDate>Thu, 24 Oct 2019 20:37:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=21348885</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21348885</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21348885</guid></item><item><title><![CDATA[New comment by rectangletangle in "The Body Keeps the Score: Book Summary"]]></title><description><![CDATA[
<p>I would honestly be surprised if this kind of link didn't have at least some measurable impact, physiology is hardly decoupled (in the coding sense). It's been well established that poor mental health (loss of will to live) correlates strongly with early mortality, even when controlling for obvious variables. Though establishing the causality on that is challenging.<p>There are lots of strange physiological links that aren't necessarily logical, due to the imperfect nature of natural selection (it strives for the local optima and "good enough," over the global optima). For instance it's well documented that consciously smiling improves mood, even though the causality is "backwards."</p>
]]></description><pubDate>Thu, 24 Oct 2019 03:23:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=21341392</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21341392</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21341392</guid></item><item><title><![CDATA[New comment by rectangletangle in "Ask HN: Agriculture startups doing interesting work?"]]></title><description><![CDATA[
<p>I did some interesting work in this space. With several thousand seasons of data I used an MLP network to visualize phenotypic plasticity (how plants react to a range of environmental conditions).<p>Accurately cleaning the input data proved to be extremely important, because there's a tremendous amount of "noise" at the individual level when dealing with living organisms, so lots of high-quality data is necessary to tease out relationships. Establishing causality was also important, considering the potential for confounding variables.<p>It also gave me a chance to brush up on my React/front end skills, but that was more ancillary.<p><a href="https://sproutling.ai/blog/harvest-simulations?jm2" rel="nofollow">https://sproutling.ai/blog/harvest-simulations?jm2</a><p><a href="https://sproutling.ai/blog/growth-simulations?jm2" rel="nofollow">https://sproutling.ai/blog/growth-simulations?jm2</a></p>
]]></description><pubDate>Tue, 22 Oct 2019 23:57:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=21329722</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21329722</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21329722</guid></item><item><title><![CDATA[New comment by rectangletangle in "Python at Scale: Strict Modules"]]></title><description><![CDATA[
<p>I'm a huge fan of Django, but I always felt that this was true. I wish there was more of a push to decouple parts of the framework. Keep the magic, but allow usage without it.</p>
]]></description><pubDate>Sun, 20 Oct 2019 20:05:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=21306706</link><dc:creator>rectangletangle</dc:creator><comments>https://news.ycombinator.com/item?id=21306706</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21306706</guid></item></channel></rss>