roastpotatothief

joined 4 years ago
[–] roastpotatothief@lemmy.ml 1 points 2 years ago (1 children)

Most people haven't. We all have a filter bubble.

Here is a first draft, my attempt to provide the missing context. Please leave comments on anything bad or missing you notice. https://lemmy.ml/post/4848742

[–] roastpotatothief@lemmy.ml 1 points 2 years ago

Background? Link?

[–] roastpotatothief@lemmy.ml 1 points 2 years ago

You make a lot of points. To explain all of those things, I would news to make a very long post. i think i will do that when i get time.

[–] roastpotatothief@lemmy.ml 1 points 2 years ago* (last edited 2 years ago) (3 children)

Some of the other comments have decent explanations.

where

[–] roastpotatothief@lemmy.ml 1 points 2 years ago (1 children)

Oh like a security for further borrowing? Could be.

[–] roastpotatothief@lemmy.ml 1 points 2 years ago* (last edited 2 years ago)

Any update on this?

I couldn't find any comment from the devs. Was there one?


There is an extra problem, not mentioned here. When there are subs with the same name, it is actually impossible to know of choose which sub I am posting to. Like here.

[–] roastpotatothief@lemmy.ml 8 points 2 years ago (1 children)

The fools talk much more than the wise. I wonder about just blocking most of the people I don't find interesting. Then I could only see writings from sensible and interesting people.

Maybe there is a technical solution, which doesn't require so much effort by the user.

[–] roastpotatothief@lemmy.ml 1 points 2 years ago (3 children)

How do you mean "a powerful tool"? Tool for what?

[–] roastpotatothief@lemmy.ml 1 points 2 years ago (5 children)

The argument is mostly valid. But the real point is that capital gains tax needs to change. That would solve the stated problem, without reducing home ownership.

As a result, a majority of the population is literally invested in seeing the value of homes always go up.

This is actually not true. In general, ome owners do not benefit from global house price increases.

[–] roastpotatothief@lemmy.ml 3 points 2 years ago

Yes block chains predate bitcoin and are very useful. Git uses them. A currency is a perfect use case for a block chain. You need to robustly store balances and transactions so they can't be tampered with.

I would say it's insane to have a currency which is not block chain based. Too easy to fiddle your finances.

0
submitted 2 years ago* (last edited 2 years ago) by roastpotatothief@lemmy.ml to c/music@lemmy.ml
0
submitted 2 years ago* (last edited 2 years ago) by roastpotatothief@lemmy.ml to c/music@lemmy.ml
 

The only differences are that tuples are immutable and that lists have extra methods.

Is there ever a strong need for list-type data to be immutable? Evough to justify a whole extra data-type in the language?

Should they release a python 4 with it removed?

The only thing I can think of is as a default function parameter. This function is okay:

def dothings(a=(1,2)):
    print(a)
    a = (a[0], 3)

But this function misbehaves the second time it is called:

def dothings(a=[1,2]):
    print(a)
    a[1] = 3

But IMO the "mutable arguments" thing is another bug to be fixed in a hypothetical python 4. And even in python 3 you just write the function the recommended way, so there is not such a big problem.

def dothings(a=None):
    if a is None:
        a = [1, 2]
    print(a)
    a[1] = 3

The Python devs are clever guys though. There must be some really important reason to maintain both types?

1
Bullshit Jobs - Wikipedia (en.m.wikipedia.org)
submitted 3 years ago* (last edited 3 years ago) by roastpotatothief@lemmy.ml to c/books@lemmy.ml
 

read it? is it worth a read?

it doesn't seem to mention the two most obvious types

  • agents - people whose only job is intermediating, forwarding emails between a business and a customer, but not letting then talk directly. like employment agents who won't reveal the name of the company, because they know you could just talk to each other directly: the agent knows he is useless.

  • police, military, bouncers - people who spend 99% of their time doing nothing, standing around on street corners. when they do anything, it is only to fight, beat or kill normal working/productive people.

view more: ‹ prev next ›