• 21 Posts
  • 127 Comments
Joined 2 years ago
cake
Cake day: April 21st, 2024

help-circle
  • I didn’t know that Kratom could be this addictive and I agree that regulation seems to be necessary. I remember experimenting a bit with legal highs as a teenager. Kratom tea was one of the things I tried. The effects are obviously quite nice. It greatly improved my mood and it felt like there was a warmth radiating from within my body. So, I can see why people can get addicted to Kratom. Thankfully Kratom extracts weren’t easily available at the time. I had to brew tea from the leafs which has an intense bitter taste. It was bad enough to deter me from buying it again. I guess I can consider that a bullet dodged.


  • My number one reason for using systemd timers is just that I find it more readable than cron. Usually I want to run things daily, weekly or monthlyand systemd timers make that very easy.

    Here is an example:

    backup.timer

    [Unit]
    Description=Run backup database daily
    
    [Timer]
    OnCalendar=daily
    RandomizedDelaySec=10
    
    [Install]
    WantedBy=timers.target
    

    backup.service

    [Unit]
    Description=Backup database
    
    [Service]
    Type=oneshot
    ExecStart=/bin/bash /path/to/backupscript.sh
    

    Another great feature is that the output of the script is logged to journald which is very convenient when you are troubleshooting why your backup failed last night.





  • Overall this seems to be the most reasonable approach to the whole issue so far.

    Parents set up a child account on the device. The OS enforces what applications are available and that browsers are launched in some kind of child mode. The browser communicates to websites that the user is underage, for example by sending a http header. Websites check that header and can decide if they allow this user or not.

    With this approach I see no glaring privacy issues compared to the recent push for digital ID laws and nobody will have to call their ISP to enable porn mode.