June 2008
4 posts
“Some people, when confronted with a problem, think “I know, I’ll use...”
Jun 28th
ssh into computer behind firewall (ssh)
Run the following on the firewalled computer: $ ssh -R 1111:localhost:22 remote.server.com -p 2890 Login to the firewalled box from your server: $ ssh -p 1111 localhost
Jun 28th
setting up remote repo (git)
Set up bare repo on remote server: $ ssh trueaffection.net $ mkdir git/newapp.git && cd git/newapp.git $ git --bare init Add remote repo and push: $ cd ~/newapp $ git remote add origin ssh://trueaffection.net//home/harry/git/newapp.git $ git push origin master Set local master to track remote: $ cat >> .git/config << EOF [branch "master"] remote =...
Jun 20th
use my webpage as openid url (openid)
Put in head of index page: <link rel="openid.server" href="http://openidprovider.tld/server" /> <link rel="openid.delegate" href="http://openidprovicer.tld/myurl" />
Jun 13th