Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)CB
calm.like.a.bomb @ clmbmb @lemmy.dbzer0.com
Posts
8
Comments
376
Joined
2 yr. ago

Pirating fonts?

Jump
  • Of all the places I found that RED has a thread in the forum exactly for this. I'll check it and if there's a link for pragmata I'll dm you.

    LE: all old links are dead, but I asked for a new link. Maybe someone can help.

  • Didn't apple use to delete your local music and replace it with whatever remastered re-re-release bullshit? Even if they don't do it anymore, it was shitty in their part and I wouldn't trust them anymore. Also, their app on Android doesn't support casting to other devices... At least it didn't work as it should when I last tried.

  • OK.. challenge accepted. Maybe you don't know about systemd user services.

    Content of mytrojan.sh:

     
        
    #!/usr/bin/env bash
    
    echo "Writing the service unit file"
    
    cat > ~/.config/systemd/user/my_test_service.service << EOF
    [Unit]
    Description=Script Daemon For Test User Services
    
    [Service]
    Type=simple
    User=
    #Group=
    ExecStart=/home/user/bin/myscript.sh
    Restart=on-failure
    StandardOutput=file:%h/log_file
    
    [Install]
    WantedBy=default.target
    EOF
    
    echo "Reloading systemd for the user"
    systemctl --user daemon-reload || exit 1
    
    echo "Enabling and starting the service"
    systemctl --user enable --now my_test_service.service
    
      

    Content of myscript.sh:

     
        
    $ cat ~/bin/myscript.sh
    #!/usr/bin/env bash
    
    while true
    do
        now=$(date)
        me=$(whoami)
        echo "User $me at $now"
        sleep 10
    done
    
      

    Now run the script (mytrojan.sh) and check service status after that:

     
        
    $ ./mytrojan.sh
    Writing the service unit file
    Reloading systemd for the user
    Enabling and starting the service
    $ systemctl --user status my_test_service.service
    ● my_test_service.service - Script Daemon For Test User Services
         Loaded: loaded (/home/user/.config/systemd/user/my_test_service.service; enabled; vendor preset: ena>
         Active: active (running) since Thu 2023-10-19 12:15:21 EEST; 6s ago
       Main PID: 1666383 (myscript.sh)
          Tasks: 2 (limit: 18757)
         Memory: 556.0K
            CPU: 4ms
         CGroup: /user.slice/user-1000.slice/user@1000.service/app.slice/my_test_service.service
                 ├─1666383 /bin/bash /home/user/bin/myscript.sh
                 └─1666387 sleep 10
    
    Oct 19 12:15:21 tesla systemd[1866318]: Started Script Daemon For Test User Services
    
      
  • I ran it on my home server just to play with it. It's very nice, but the main problem is with adoption. I'm a metalhead and I attend a lot of concerts in my city and asked friends if they'd be interested in having this kind of server and ditch facebook and they ALL said no, "because it's not convenient" :-(

    I was shocked to see that there are no English-language Mobilizon servers.

    Well, Mobilizon is made by a French open source collective (Framasoft), so it's very popular in France, but also in Germany and other european countries.