Skip to content

Instantly share code, notes, and snippets.

@timelessnesses
Created February 25, 2022 17:10
Show Gist options
  • Save timelessnesses/a80cbf481541e70383c4faec194ae9ed to your computer and use it in GitHub Desktop.
Save timelessnesses/a80cbf481541e70383c4faec194ae9ed to your computer and use it in GitHub Desktop.
tilde.club

Tilde.club Tutorial

How it works?

It is a very big community with a server that have many users that user can play and tinkering around

Registeration

  1. Go to tilde.club
  2. Click at Sign-up
  3. Put everything it says
  4. When you reached public ssh key. You have 2 ways
  • You can grab one at your user directory depend on your os

Windows way

If you are on windows. Here's how to get one.

  1. Go to your user directory. It always be C:\Users\<username>
  2. Find .ssh folder

Condition

  • If you can't find .ssh folder you might need to generate keypair for it Try run ssh in command prompt.
    If it is found then proceed to generate keypair.
    Else go to Microsoft website for how to install ssh
Generate Keypair
  1. Run ssh-keygen
  2. Proceed to put informations
  3. You're done! Now find .ssh folder again

  • Or make your own new one by go to Generate Keypair topic again but when it ask for path type your custom path and go to that custom path

  1. Open up .ssh folder.
  2. Grab that id_rsa.pub then copy paste it in box
  3. Submit it then administrator will look it up and they will create a linux account for you :)

How to host stuff in the tilde.club?

If you tired of replit, maybe tilde.club may solve your issue!

  1. Make a venv and install everything into it then access it's virtual enviroment console OR if you have poetry do poetry install && poetry shell for accessing it
  2. Run this command nohup <command to run> &
  3. You can check if everything runs fine by look at nohup.out
  4. Notices that you can't access your server due to tilde.club reasons
  5. Notices that you can't exit the shell with exit command because it says that there's running job. You can completely safely close terminal

How to end a nohup process

  1. Run killall <process name you want to kill
    Enjoy!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment