The lighting, the curves, the amazing lady….

Rather difficult to improve over this.

Written on September 24th, 2009 & filed under Posts from Afar

When cap deploy keeps asking for passwords even though you’ve set up your authorized_keys files, do two things:

First, check perms for the whole directory tree leading up to $HOME/.ssh:

server$ chmod go-w ~/
server$ chmod 700 ~/.ssh
server$ chmod 600 ~/.ssh/authorized_keys

Second, add the deploy user’s public key to the authorized_keys file. Test by ssh’ing to localhost. No password = good to go!

Written on September 22nd, 2009 & filed under SciTech

* Open the Error Console: Tools menu/Error Console
* In the Code text box paste this (it’s a single line):

Components.classes["@mozilla.org/browser/nav-history-service;1"].getService(Components.interfaces.nsPIPlacesDatabase).DBConnection.executeSimpleSQL(“VACUUM”);

* Press Evaluate. All the UI will freeze for a few seconds while databases are VACUUMed

Written on September 16th, 2009 & filed under SciTech