• 1 Post
  • 41 Comments
Joined 1 year ago
cake
Cake day: October 23rd, 2023

help-circle


  • One suggestion is to look at getting any useful docker container up and running first to get a feel for it, then pivot towards heavier lifts. Self-hosting emails is going to be a headache as others have said, and monero nodes sounds like it could be a technical as well but that’s admittedly an uneducated guess.

    You can look at the recent selfh.st poll for the most popular docker containers, see if any strike your interest and start there.











  • Getting cheatsheets via curl cheat.sh/INSERT_COMMAND_HERE

    No install necessary, Also, you can quickly search within the cheatsheets via ~. For example if you copy curl cheat.sh/ls~find will show all the examples of ls that use find. If you remove ~find, then it shows all examples of ls.

    I have a function in my bash alias for it (also piped into more for readability):

    function cht() { curl cheat.sh/"$1"?style=igor|more }