<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: voltagedivider</title><link>https://news.ycombinator.com/user?id=voltagedivider</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 18 Apr 2026 12:11:06 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=voltagedivider" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by voltagedivider in "The Revenge of the Hot Water Bottle"]]></title><description><![CDATA[
<p>It wouldn't play nice with water and microwave ovens. I guess you could heat it on the stove or in a regular oven instead.</p>
]]></description><pubDate>Fri, 21 Jan 2022 19:00:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=30028316</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=30028316</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30028316</guid></item><item><title><![CDATA[New comment by voltagedivider in "Former Labor Secretary Found What Work Is Like Now"]]></title><description><![CDATA[
<p>> In the best outcome, the customer would be paying exactly the same amount that they pay now, or more, it just wouldn't be separated or optional in the bill.<p>I'd pay a premium just to avoid the distasteful master-servant relationship. It's insulting to assume that the customer would enjoy lording over others.<p>> just because they want a discount<p>It never crossed my mind that people do this. That's lousy.</p>
]]></description><pubDate>Fri, 21 Jan 2022 17:16:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=30026561</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=30026561</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30026561</guid></item><item><title><![CDATA[New comment by voltagedivider in "Former Labor Secretary Found What Work Is Like Now"]]></title><description><![CDATA[
<p>Any chance they're trying to end the practice of tipping for the betterment of workers in the long run?</p>
]]></description><pubDate>Fri, 21 Jan 2022 15:15:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=30024583</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=30024583</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30024583</guid></item><item><title><![CDATA[New comment by voltagedivider in "PayPal faces lawsuit for freezing customer accounts and funds"]]></title><description><![CDATA[
<p>Yeah, I don't get it either. Never had any problems with Wise and their rates seem fair. Maybe people use PayPal just for the escrow service?</p>
]]></description><pubDate>Fri, 14 Jan 2022 14:07:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=29934532</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29934532</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29934532</guid></item><item><title><![CDATA[New comment by voltagedivider in "New Year, New CEO"]]></title><description><![CDATA[
<p>I wonder what a canary from Moxie would look like these days.</p>
]]></description><pubDate>Mon, 10 Jan 2022 23:31:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=29884638</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29884638</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29884638</guid></item><item><title><![CDATA[New comment by voltagedivider in "5% of 666 Python repos had comma typo bugs (inc V8, TensorFlow and PyTorch)"]]></title><description><![CDATA[
<p>Even simpler!</p>
]]></description><pubDate>Fri, 07 Jan 2022 23:01:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=29846136</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29846136</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29846136</guid></item><item><title><![CDATA[New comment by voltagedivider in "5% of 666 Python repos had comma typo bugs (inc V8, TensorFlow and PyTorch)"]]></title><description><![CDATA[
<p>Agreed. I've mainly seen the first `append` version in code written by people who've just discovered comprehensions and code golf.</p>
]]></description><pubDate>Fri, 07 Jan 2022 19:08:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=29843345</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29843345</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29843345</guid></item><item><title><![CDATA[New comment by voltagedivider in "5% of 666 Python repos had comma typo bugs (inc V8, TensorFlow and PyTorch)"]]></title><description><![CDATA[
<p>You're right that both iterate through something but `for` loops and comprehensions aren't used as if they were interchangeable.<p>For example, you'll sometimes see people do bad stuff like this:<p><pre><code>  >>> lst = []
  >>> 
  >>> [lst.append(i + i) for i in range(10)]
  [None, None, None, None, None, None, None, None, None, None]
  >>> 
  >>> lst
  [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
  >>> 
</code></pre>
When they should be doing this:<p><pre><code>  >>> lst = []
  >>> 
  >>> for i in range(10):
  ...     lst.append(i + i)
  ... 
  >>> lst
  [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
  >>> 
</code></pre>
Or just this:<p><pre><code>  >>> lst = [i + i for i in range(10)]
  >>> 
  >>> lst
  [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
  >>></code></pre></p>
]]></description><pubDate>Fri, 07 Jan 2022 18:47:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=29843037</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29843037</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29843037</guid></item><item><title><![CDATA[New comment by voltagedivider in "5% of 666 Python repos had comma typo bugs (inc V8, TensorFlow and PyTorch)"]]></title><description><![CDATA[
<p>Exactly. That's why I asked about languages that <i>don't</i> require explicit typing. My point is that it's a feature of many languages rather than a Python idiosyncrasy.</p>
]]></description><pubDate>Fri, 07 Jan 2022 18:23:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=29842711</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29842711</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29842711</guid></item><item><title><![CDATA[New comment by voltagedivider in "5% of 666 Python repos had comma typo bugs (inc V8, TensorFlow and PyTorch)"]]></title><description><![CDATA[
<p>Isn't that common for all/most languages that don't require explicit typing?</p>
]]></description><pubDate>Fri, 07 Jan 2022 18:08:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=29842487</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29842487</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29842487</guid></item><item><title><![CDATA[New comment by voltagedivider in "Tell HN: Salary data is for sale"]]></title><description><![CDATA[
<p>Aren't NFTs essentially just file hashes/signatures that can be associated with a public/private key pair on a blockchain? If so, the link between the NFT and the key pair might be solid (as in cryptographically secure) but the link between the NFT and its "underlying asset" (which might be copyrightable) seems flimsy.<p>That being said, since both NFT ownership and our legal systems rely on consensus and majority opinion, it's not hard to imagine a corrupt society in which the opinion of judges is disregarded in favor of blockchain consensus.<p>Edit: you might be joking but it's an interesting question nonetheless because it highlights how various systems compete for legitimacy :)</p>
]]></description><pubDate>Fri, 07 Jan 2022 16:02:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=29840667</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29840667</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29840667</guid></item><item><title><![CDATA[New comment by voltagedivider in "Sonoma County farm strikes black truffle gold after 9 years of waiting"]]></title><description><![CDATA[
<p>> Do you know what the word blunted means?<p>I know of blunt statements and blunt/blunted knife blades but maybe I misunderstood your usage of the word. Care to explain?</p>
]]></description><pubDate>Fri, 07 Jan 2022 01:55:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=29833734</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29833734</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29833734</guid></item><item><title><![CDATA[New comment by voltagedivider in "Sonoma County farm strikes black truffle gold after 9 years of waiting"]]></title><description><![CDATA[
<p>Viagra doesn't make your penis bigger; it temporarily alleviates erectile dysfunction.</p>
]]></description><pubDate>Fri, 07 Jan 2022 00:44:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=29833042</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29833042</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29833042</guid></item><item><title><![CDATA[New comment by voltagedivider in "Mozilla Foundation pausing cryptocurrency donations"]]></title><description><![CDATA[
<p>> Much as I love Firefox, it's dead on mobile.<p>It's my primary browser on mobile and always has been. What am I missing?</p>
]]></description><pubDate>Thu, 06 Jan 2022 21:22:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=29830392</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29830392</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29830392</guid></item><item><title><![CDATA[New comment by voltagedivider in "Lawsuit filed alleging Google is paying Apple to stay out of the search business"]]></title><description><![CDATA[
<p>> no one invested "a ton of energy into security and privacy controls".<p>Anti-virus?</p>
]]></description><pubDate>Wed, 05 Jan 2022 21:52:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=29815534</link><dc:creator>voltagedivider</dc:creator><comments>https://news.ycombinator.com/item?id=29815534</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29815534</guid></item></channel></rss>