Posts Tagged ‘programming’

Gallery2Flickr sucks

Wednesday, March 29th, 2006

Ok, perhaps its unfair to say that the utility sucks.  It is the only peice of software available that can migrate your photos from gallery to flickr and it just doesnt do it very well.  I dont know how many people use it, but it took me 2 hours of messing with this utility so I could do about 2 hours of work to migrate my pictures.  Time I COULD have been using to take NEW pictures.

So, if I get a chance I think I will update the script and add a little much needed documentation.  Maybe even add a little front end for the sad little thing.  I mean, it works, but so does a one legged panda on a unicycle.  Its just sad to watch it go.

Subversion, not just for programming

Tuesday, January 24th, 2006

I'm an avid fan of version control system such as subversion and cvs; the ability to have every change you make to your files automatically backed up is... addictive.

Most developers keep their source code and resources in a repository of some sort, but I hypothosized that this mechanism would work equally well with any other type of data. I figured that if it keeps my code safe, why can't it keep all my other documents safe too? Instead of making weekly/monthly backups, I just automatically backup everytime something is changed. In addition this repository would allow me to easily access the most recent version of each of my documents from anywhere.

I decided to try it out for a couple months to see how it worked. I merged my documents from all 3 of the computers that I regularly work on into one repository. This was simple enough. Before I started working each day, I would just pull an update from the repo, and each time I updated a file or added a new resource I made a commit and kept on working. Some added benefits from this repo is that there is now never any fear of deleting files or making large changes.

The only downside to this system is its lack of integration. Perhaps with some customization of tortoiseSVN and some extra scripts I could further simplify the process. Whatever the necessary steps are though, I have decided this is a worthwhile investment. As far as I know there is no commercial product that provides this functionality. It would be appealling to see a product that allows you to manage your documents on an individual basis all across your system; integrated seemlessly into the desktop.

I urge anyone thats experienced with VCSs to try this and see how it works for them.