Joined October 2012
·
Achievements
60 Karma
640 Total ProTip Views
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
Raven
Have at least one original repo where some form of shell script is the dominant language
I think the remote option needs to be uppercase for starters. Also this opens up ssh access to your work host to world. You can limit this to localhost on your DO vm with:
sudo ssh -n -R 127.0.0.1:8022:localhost:22 username@your.digitalocean.com
The following command then would be
ssh -o ProxyCommand="ssh username@your.digitalocean.com nc localhost 8022" companyusername@companyofficecomputer
You need netcat installed on the DO host obviously.