Archive for February, 2009

photogriffy updated to v0.2

February 10th, 2009

photogriffy.net was upgraged to v0.2, this is a pretty major update. I’ve changed the backend to be based entirely on the Flickr API. I was able to crank it all out with rails and the flickraw gem over the course of a few hours. There are still a lot of features I want to add and a bunch of formatting to do, but the site works as it stands. Rails truly is an amazing prototyping framework.

This is part of a larger update to the way I post my photos to the web. It’s getting a bit scattered with some photos posted to AMDavidson.com, some to AMDavidson.me, some to Flickr, and even a few to Twitpic with very little planning or organization.

So, I’m now working towards putting everything on Flickr and then basing my other websites on that content so the content is unified between the sites and doesn’t require bouncing around the web to places unknown to see it all.

github? we don’t need no stinking github…

February 2nd, 2009

I use git for all my projects… I love the ability to commit changes when I’m on an airplane or stuck somewhere without internet access. However, I still like to be able to push my git project to a remote server for backup and accessibility, and I’m not going to pay for github. Don’t get me wrong, github is fine for public projects and collaborative development, but for my personal development stuff, it’s an unnecessary expense.

Well, I always forget how to setup a remote master so that I can push and pull and keep a backup on a remote server. Here are my quick notes…. for a detailed explanation see Tim Lucas’s tutorial.

On server:

1
2
mkdir /srv/git/whatever
git init /srv/git/whatever

On local machine:

1
2
git remote add origin ssh://host/srv/git/whatever
git push origin master

And you’re all set!