JustTesting

joined 2 years ago
MODERATOR OF
[–] [email protected] 1 points 6 months ago (1 children)

NG+, take away their money and have them start over again, but without help from their rich parents or with the odds stacked against them somehow.

[–] [email protected] 1 points 7 months ago

Idk, i recently stumbled on his stand-up comedy from the 90s and that was already pretty borderline and cringe. At least to me it looked like jre today is a pretty natural evolution of that.

[–] [email protected] 2 points 7 months ago

One question that'd be interesting to know the answer to is where it ends up at. I could imagine microplastics from the garbage island mostly staying around the island, whereas ones from tires will end up all over the environment.

[–] [email protected] 9 points 7 months ago

That part of the ocean circulation is on track to stop in the next 50 years anyways, so might as well get a chile bridge out of it?

[–] [email protected] 7 points 7 months ago

Well, kinda hard to order when there's no internet, so thanks china?

[–] [email protected] 8 points 8 months ago* (last edited 8 months ago)

In der Schweiz ist so gut wie alles bargeldlos mittlerweile. Berghütte auf 3000m, Bauernhof Selbstbedienungsladen, die eine kleine Tierpension usw.

Auf dem Weihnachtsmarkt hatten die Glühweinstände sogar schon grosse "kein Bargeld" Schilder. Immerhin kann man sonst an den meisten Orten noch bar zahlen.

[–] [email protected] 6 points 8 months ago (2 children)

Why not link to the original?

[–] [email protected] -1 points 8 months ago

Also a housing bubble and real estate being one of the few investment vehicles available to regular chinese.

[–] [email protected] 2 points 8 months ago* (last edited 8 months ago) (2 children)

You misunderstand, the first two commands are just one time setup to install a specific python version and then to create an env using that version. After that all you need is `pyenv activate myenv´ to drop you into that env, which will use the correct python version and make sure everything is isolated from other environments you might have.

You can also just create an env with the system python version, but the question was specifically about managing multiple versions of python side by side and this makes that super easy.

You could also combine it with direnv to automatically drop you into the correct environment based on the folder you are in, so you don't have to type anything after the initial setup.

[–] [email protected] 3 points 8 months ago

But a lot of european countries are pushing pretty hard to not borrow and have a zero balance or positive budget. So e.g. Switzerland don't sell that many bonds and yield on a lot of them is 0.5%, maybe 2% on long term ones vs around 4% for US ones.

[–] [email protected] 9 points 8 months ago* (last edited 8 months ago) (4 children)

pyenv and pyenv-virtualenv together solves this for me. Virtualenv with specific python versions that work together well with other tools like pip or poetry.

It boils down to something like

$ pyenv install 3.12.7
$ pyenv virtualenv 3.12.7 myenv
$ pyenv activate myenv

and at that point you can do regular python stuff like pip installing etc.

view more: ‹ prev next ›