• 0 Posts
  • 26 Comments
Joined 2 years ago
cake
Cake day: June 21st, 2023

help-circle










  • Honest question, what are the incentives for instance operators to play nice, so to speak? And not just recreate new oligarch safe havens?

    It seems like each instance is a miniature zone of centralization and it’s still incumbent on individuals to create their own circles of influence. For better or worse that’s how we get hivemind echo chambers and I’m not sure it’s even in human nature to seek anything else.

    Alternatively we have to rescue our friends and families when they start to fall for BS and educate them aggressively on improving the sourcing of their information.



  • Python developer here. Venv is good, venv is life. Every single project I create starts with

    python3 -m venv venv

    source venv/bin/activate

    pip3 install {everything I need}

    pip3 freeze > requirements.txt

    Now write code!

    Don’t forget to update your requirements.txt using pip3 freeze again anytime you add a new library with pip.

    If you installed a lot of packages before starting to develop with virtual environments, some libraries will be in your OS python install and won’t be reflected in pip freeze and won’t get into your venv. This is the root of all evil. First of all, don’t do that. Second, you can force libraries to install into your venv despite them also being in your system by installing like so:

    pip3 install --ignore-installed mypackage

    If you don’t change between Linux and windows most libraries will just work between systems, but if you have problems on another system, just recreate the whole venv structure

    rm -rf venv (…make a new venv, activate it) pip3 install -r requirements.txt

    Once you get the hang of this you can make Python behave without a lot of hassle.

    This is a case where a strength can also be a weakness.







  • Huh, you’re right. I didn’t know about that. From Wikipedia:

    The Chinese startup claims to have the miniature device in the pilot testing stage. Unveiled in January 2024, it is allegedly generating 100 microwatts of power and a voltage of 3V and has a lifetime of 50 years without any need for charging or maintenance.

    Wonder if it microwaves your balls when it’s in your pocket too.

    Either way we can dream of a future where we never have to plug in to charge again.