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

help-circle









  • This should work. Add a file /home/username/.config/systemd/user/my_cool_service.service with this content:

    [Unit]
    Description=My cool service
    
    [Service]
    Type=oneshot
    ExecStart=/home/username/my_cool_script.sh
    
    [Install]
    WantedBy=default.target
    

    Now add the script /home/username/my_cool_script.sh.

    #!/bin/bash
    echo "Hello from my cool script."
    

    Enable and run the service.

    $ chmod +x /home/username/my_cool_script.sh
    $ systemctl --user daemon-reload
    $ systemctl --user enable my_cool_service.service
    # Optional:
    $ systemctl --user start my_cool_service.service 
    $ journalctl -e --user-unit=my_cool_service # You should see the echoed string from the script.
    

    The service should now run every time the user username logs in.



  • ME3 not quite sticking the landing is an understatement. I mostly remember the awful unskippable dream sequences, Shepard suddenly becoming utterly incompetent whenever that mall-ninja cerberus assassin pops up in a cinematic, and to top it of the nonsensical red-green-blue ending. I tried to replaying it last year but couldn’t get any further than the second mission because I just got annoyed.


  • Enderal and its not even close. It shows a world that is in a deep decline and an apocalypse that is all but inevitable but manages to still feel hopeful in a way. Throughout the game there is this theme of how even if everything might fade at some point your interpersonal actions are still meaningful. The Rhalata sidequest alone easily outmatches most games that where published by “real” game studios and the main story just seals the deal.











  • The second you allow slop generator use into your code base the quality takes a nosedive. People claim to review their slop but I have seen it often enough, all they are doing is hitting accept all without even reading half of the generated code. This isn’t “just a tool” this is technical debt as a service.

    Also Hackernews is ridiculous den of techbros, libertarians, AI maximalists and temporarily embarrassed founders who think they stand to gain the most from hyping up slop generators. Trusting them with anything related to AI is like asking the CEO of Microsoft if you should use Windows or Linux.