Yesterday was the first day of February Album Writing Month, so of course I kicked things off by sinking three hours into writing a script that I could have found on the Internet somewhere. See, last week I cleaned out my GMail inbox. Since I haven’t done that, like, ever, that meant reading a lot of old and unimportant mail - like, for example, the July 2008 DreamHost newsletter, which mentioned their Entire Account Backup service, which gives you a downloadable copy of all your data for a given account. I love backups, so in the interest of being able to archive that newsletter, I kicked off a backup right then and there.
(more…)
posted by erik at 9:48 am
For my two readers, an update: Yesterday we launched a new web site for Barefoot Coffee. I’m really excited about it because it’s the first time I’ve been involved with something like this from start to finish (although it’s not really finished - I’m just in denial about the Phase 2 document I haven’t read yet).
It’s also the first time in several years I’ve worked as a truly independent contractor. The team was very small: Graphic design by Conrad Altmann; vision and many, many words by Andy Newbom; and technical implementation by me. We used Radiant, which is mostly a joy to work with, especially once you get a couple of useful extensions installed. The markup’s pretty clean, the CSS is somewhat comprehensible, and I wrote a custom Radiant extension and some jQuery scripts for a couple of things that weren’t easy to do out of the box. I’m proud of this project.
What else is going on: A couple of Rails applications for a tiny startup; version 2 of the Tin Cat web site; and an academic project that’s suffering from neglect since I noticed the recent drop in my bank balance. Plus, you know, the band, and an intermittent life.
I’m hoping to start posting here someday. We’ll see.
posted by erik at 4:47 pm
A few months ago, I had to move a project I was working on to a new production environment, and I had some trouble getting Capistrano to deploy our code. The problem was basically this: (more…)
posted by erik at 1:11 am
If you’ve just installed WordPress, say, for example, at http://echographia.com/blog, and then you started checking out the options, and you accidentally changed the WordPress address, say, for example, to http://echographia.com/, and now your CSS is all missing and if you try to change the settings you get redirected to a login script that doesn’t exist… and if you can get direct access to the SQL database… try something like this:
show tables;
Note the table whose name ends with options. I’m on a DreamHost one-click install of Wordpress, so I don’t know what it’s called in a standard installation. Let’s just say it’s called options.
update options set option_value = 'http://www.echographia.com/blog' where option_name = 'siteurl';
posted by erik at 11:10 pm
If you’re getting this error:
ERROR: http://gems.datamapper.org does not appear to be a repository
ERROR: While executing gem … (Gem::RemoteFetcher::FetchError)
bad response Not Found 404 (http://gems.datamapper.org/yaml)
then do this:
gem sources --remove http://gems.datamapper.org
posted by erik at 10:58 pm