• 0 Posts
  • 203 Comments
Joined 10 months ago
cake
Cake day: August 25th, 2023

help-circle
  • bjorney@lemmy.catoAI@lemmy.mlFlying cars they said
    link
    fedilink
    arrow-up
    1
    ·
    20 hours ago

    My company has two full time staff members running point on customer service. Directing people to the 5 bullet point FAQ page is about 85% of their job.

    I dabbled with setting up an AI classifier to do this for them, and while it would remove 99% of those FAQ emails, the remaining 1% of the time it was so catastrophically wrong it made us press pause on the whole thing.










  • Going by time when you start out may just be a more realistic way to set goals you can stick to when you don’t know your pace? Once you settle into your pace, you should be able to map out some routes that will give you an X minute workout (give or take)

    One thing I learned embarrassingly recently while training for a race way outside of my comfort zone - slow the hell down. If you start off running fast you are just front-loading the lactic acid buildup in your legs, which will make the back half of your run harder - if you are tracking your runs with a Fitbit/Garmin/phone, make a conscious effort to keep a consistent pace - even if it feels like you are running in slow motion at the start, you will find it much easier to run longer, and your overall pace will be faster as well.


  • I didn’t enjoy running until I worked myself up to doing longer distances, like 8k+ runs - before then it was a painful chore I felt obligated to do, now I go stir crazy if I don’t get out for a run at least twice a week.

    That being said, even now, runs are a slog until I get into my groove, which happens around the ~3k or 15-20 minute mark, but once I get there I’m happy to keep going for another 10-20k

    You mention going by time and not distance - I assume you are on a treadmill? Personally I can’t stand treadmills, it’s monotonous, and there isn’t as much air movement around you, so it’s harder to thermoregulate.








  • There are like 10,000 different solutions, but I would just recommend using what’s built in to python

    If you have multiple versions installed you should be able to call python3.12 to use 3.12, etc

    Best practice is to use a different virtual environment for every project, which is basically a copy of an existing installed python version with its own packages folder. Calling pip with the system python installs it for the entire OS. Calling it with sudo puts the packages in a separate package directory reserved for the operating system and can create conflicts and break stuff (as far as I remember, this could have changed in recent versions)

    Make a virtual environment with python3.13 -m venv venv the 2nd one is the directory name. Instead of calling the system python, call the executable at venv/bin/python3

    If you do source venv/bin/activate it will temporarily replace all your bash commands to point to the executables in your venv instead of the system python install (for pip, etc). deactivate to revert. IDEs should detect the virtual environment in your project folder and automatically activate it