HackerTrans
TopNewTrendsCommentsPastAskShowJobs

voltagedivider

no profile record

comments

voltagedivider
·4 years ago·discuss
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.
voltagedivider
·4 years ago·discuss
> 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.

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.

> just because they want a discount

It never crossed my mind that people do this. That's lousy.
voltagedivider
·4 years ago·discuss
[dead]
voltagedivider
·4 years ago·discuss
Any chance they're trying to end the practice of tipping for the betterment of workers in the long run?
voltagedivider
·5 years ago·discuss
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?
voltagedivider
·5 years ago·discuss
I wonder what a canary from Moxie would look like these days.
voltagedivider
·5 years ago·discuss
Even simpler!
voltagedivider
·5 years ago·discuss
Agreed. I've mainly seen the first `append` version in code written by people who've just discovered comprehensions and code golf.
voltagedivider
·5 years ago·discuss
You're right that both iterate through something but `for` loops and comprehensions aren't used as if they were interchangeable.

For example, you'll sometimes see people do bad stuff like this:

  >>> 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]
  >>> 
When they should be doing this:

  >>> lst = []
  >>> 
  >>> for i in range(10):
  ...     lst.append(i + i)
  ... 
  >>> lst
  [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
  >>> 
Or just this:

  >>> lst = [i + i for i in range(10)]
  >>> 
  >>> lst
  [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]
  >>>
voltagedivider
·5 years ago·discuss
Exactly. That's why I asked about languages that don't require explicit typing. My point is that it's a feature of many languages rather than a Python idiosyncrasy.
voltagedivider
·5 years ago·discuss
Isn't that common for all/most languages that don't require explicit typing?
voltagedivider
·5 years ago·discuss
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.

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.

Edit: you might be joking but it's an interesting question nonetheless because it highlights how various systems compete for legitimacy :)
voltagedivider
·5 years ago·discuss
> Do you know what the word blunted means?

I know of blunt statements and blunt/blunted knife blades but maybe I misunderstood your usage of the word. Care to explain?
voltagedivider
·5 years ago·discuss
Viagra doesn't make your penis bigger; it temporarily alleviates erectile dysfunction.
voltagedivider
·5 years ago·discuss
> Much as I love Firefox, it's dead on mobile.

It's my primary browser on mobile and always has been. What am I missing?
voltagedivider
·5 years ago·discuss
> no one invested "a ton of energy into security and privacy controls".

Anti-virus?
voltagedivider
·5 years ago·discuss
voltagedivider
·5 years ago·discuss