• 85 Posts
  • 532 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle

  • adr1an@programming.devtoHumor@lemmy.worldWhatcha playing, Opa?
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    11 hours ago

    Thanks, now I can understand. I wouldn’t know about US demographics, but stil… I’ve lived in Argentina for 95% of my life and never heard this thing until I emigrated to the EU. Truly, I can hardly think we have more Germans than the rest of latinoamerica… We dodid have lots of europeans that came in between, and around, both world wars. The majority are from Spain and Italy.











  • adr1an@programming.devtoScience Memes@mander.xyzMental hell
    link
    fedilink
    English
    arrow-up
    12
    ·
    edit-2
    4 days ago

    It’s difficult to know if this might just be a correlation to age of onset, plus the effect of new project or work. Maybe other graduates of similar careers (i.e. chemists going into big pharma) that doesn’t go into PhD programmes would be a nice control. But there’s no curve there.

    Alas, I know academia is difficult. But I wouldn’t dare drawing conclusions without a proper comparison.


  • Create a user, and then a systemd unit for it, under ~/.config/systemd/user/ with contents like these:

    [Unit]
    Description=Caddy web server
    After=network.target
    
    [Service]
    ExecStart=/usr/local/bin/caddy run --config /path/to/Caddyfile --envfile /path/to/Envfile
    ExecReload=/usr/local/bin/caddy reload --config /path/to/Caddyfile --envfile /path/to/Envfile
    Restart=on-failure
    User=caddy
    Group=caddy
    
    [Install]
    WantedBy=default.target
    

    Adjust the paths in the arguments. It will require systemctl daemon-reload for such unit to be available for enabling and starting it…