The note of computer language 1. When we located at the campus internet environmental, I can use the cmd to connect the server. ssh <username>@130.88.00.00 sftp 2. Download the code git clone http://github.com/<Project> 3. Access the dictory file cd <dictoryname> 4. View and Edit the file use nano editor nano -l <Filename> 5. Run the code Python3 <Filename> #the result will automatically store at server computer 4. Get the result #The result will located at /tmp/<username>, first I need get the file name to use SFTP service to download the File ls /tmp/<username> #SFTP get /tmp/<username>/<filename> #File will automaticly download to local computer, located at C:\Users\<username> 5. Other command 5.1 Delate the file #If the tmp file is not empty, use the code below to empty the tmp file rm -rf /tmp/<username> #rm means remove, use as rm <filename or dirctory>, rm ...