Get SSH Key Fingerprint
Command:
$ ssh-keygen -lf /etc/ssh/ssh_host_rsa_key.pub
Adding tabs to the Facebook timeline.
Working with Facebook - as a dev - is a right royal pain in the butt. Well thanks to this dude’s post he solved the problem of integrating an app as a page tab. There was no obvious way to do this.
The kicker is that you need to post the following link in your browsers address bar once you have created the app
http://www.facebook.com/dialog/pagetab?app_id=YOUR-APP-ID&next=http://www.facebook.com
Yeah… really obvious. I know.
Designmodo
Very nice design
Git: merge all changes from another branch as a single commit
git checkout master
git merge —squash WIP
at this point everything is merged, possibly conflicted, but not committed. So I can now:
git add .
git commit -m “Merged WIP”
Page 1 of 6