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.
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.
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.
In addition to all the other comments, pumping warm water into natural bodies of water can also be bad for the environment.
i know of one nuclear powerplant that does this and it’s pretty bad for the coral population there.
You could give helix a try, feature/functionality wise it’s almost vim, but with 0 config needed and all commands easily discoverable which is closer to nano.
As someone who really tried to get into modal editors, both emacs and vim, for years, it was the first one where i was reasonably fast after a short time and it was easy to discover the keybindings.
It’s the most common communication tool for friends and family in much of europe
I love my Glove80, had it for about a year now and couldn’t be happier.
For anyone interested in alt layouts, https://getreuer.info/posts/keyboards/alt-layouts/index.html is one of the best introductions out there. Also https://lemmy.world/c/ergomechkeyboards is a nice resource on fancy keyboards.
There was a recent paper that argues ‘bullshitting’ is the most apt analogy. I.e. telling something to satisfy the other person without caring about the truth content of what you say
Uhm, this came out as part of a law suit against them by the record industry? So they are in the process of being sued.
While not surprising, the admission, which was made as part of court proceedings responding to a massive recording industry lawsuit against the company, shows yet again that many AI tools are trained on, essentially, anything that companies can get their hands on.
It’s not. A single miner often has like 4 GPUs running at 100% load, 24/7 and I doubt someone will build a 100 Megawatt facility with thousands of computers to get fallout tokens.
Though it is the same thing in the sense of running computer to generate worthless digital tokens. The main difference in that sense is that fallout tokens do actually have a use(in game)!
Have you tried Jellyfin? It’s a FOSS fork of emby, so pretty much a drop in replacement and it’s been working very well for me.
Personally I use jellyfin as a backend, with the web interface and jellyfin app as frontend. Plus Kodi as an additional frontend for my beamer, with the Kodi Jellyfin plugin and Yatse remote to make it feel more like a TV.
one way to do this from within python itself would be to use the site module with pth files to monkeypatch the code in question. This would amount to patching it each time it gets started, not modifying the python file permanently, and without having to touch the original python code at all.
This write-up goes into more details and also links to this (unmaintained) tool for doing so.
You can get Fusion360 to work okay-ish in Wine. Probably not good enough for professional use but for my hobby use case it works well enough (sometimes a bit laggy but usable). this does most of the heavy lifting in getting it installed.
there’s a lot of stuff you can do, and you can end up with something usable, though not great, at least not in my experience. NVidia’s drivers are to blame, they don’t really work well with opengl and have lots of issues (and also regressions).
The 550 beta driver is ok-ish, steam flickers but I can play games. Drivers before 535 also somewhat worked, though it really depends on your GPU.
But I don’t think you will have it working acceptably without some work.
Here’s some pointers on stuff to try:
XWAYLAND_NO_GLAMOR=1
, WLR_RENDERER=vulkan
, LIBVA_DRIVER_NAME=nvidia
, GBM_BACKEND=nvidia-drm
(for the drm above), __GLX_VENDOR_LIBRARY_NAME=nvidia
The above is meant more as hints than something to copy paste, so use at your own risk. You can of course always just install a second DE with X11 and log into that for gaming and use your regular DE for everything else
You can set a hook to do it automatically or use this, but I agree that this should be default behaviour
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.