• 0 Posts
  • 158 Comments
Joined 1 year ago
cake
Cake day: June 21st, 2023

help-circle
  • I guess this device needed to connect to some remotely hosted server that enabled its functionality. And the company was losing money and hoping that sales would eventually pick up enough to make them profitable. But their latest investor decided not to put any more money in, and the company ran out of cash and can’t pay its bills anymore.

    The entrepreneur thought he could get more investor cash and ran the business in such a way that it would fall off a cliff if he didn’t. And… He failed to secure more financing.

    I have mixed feelings about products like this… If the device somehow needed to host an entire internet’s worth of data to function, it certainly wouldn’t have cost only $800. But when you buy a product that depends on the ongoing viability of the seller, you’re in a position of caveat emptor - You better vet them out yourself, especially if they’re new.

    Hopefully the founders feel some emotional attachment to their product and the trust bestowed upon them by their unknowing customers, and release whatever on the back end makes the thing work so that motivated customers could reactivate their devices somehow.


  • Hah, I installed Postiz just yesterday, interesting to see this thread. It’s like buffer or one of the other paid tools to schedule your social media posts and track engagement. Of course, of particular interest to our community, Postiz is self hosted.

    It doesn’t have as many features yet as the major SaaS businesses, but the software is looking good and quite usable right now. I’m sure the more people who use it and support the developer, the more this tool can grow.

    For example you can plug in your OpenAI API key and get an LLM chat interface inside the software while writing social posts. But I don’t think it learns your style or creates posts using any kind of system prompt yet unless you type it in each time.

    Another thing I couldn’t figure out so far is how to limit which social media channels individual users can see. For example my business has several different units and there’s a different marketing team on each unit, so they shouldn’t be able to post into other channels.

    If you’re in the business of needing to post regularly on a lot of channels I think postiz is worth checking out.



  • nucleative@lemmy.worldtoTechnology@lemmy.worldBluesky hits 20 million users
    link
    fedilink
    English
    arrow-up
    12
    arrow-down
    1
    ·
    22 days ago

    Me too but here’s one useful function:

    Perhaps you are aware there is an ongoing event, say for example a football game, or an election, or an outage of your email service provider. You go to one of these “scream into the void” social sites, search on the topic, and learn what people are saying about it. Maybe someone knows what’s really going on, maybe some of those people have some interesting insights and you engage with them, not unlike you and I are engaging right now. Others can observe, perhaps contribute, and after the event has concluded, everyone goes their own way. Hopefully in the end the interactions are beneficial for all.





  • 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.