His portfolio reflects years consumed with trekking the globe, but photographer Jauder Ho only rediscovered his love for the art several years ago. Taking advantage of an opportunity for a vacation for the first time in over a decade, Jauder Ho ended up taking a trip to Japan including a trek up Mount Fuji. That followed by the road trip of a lifetime driving across the States had a profound effect on how he perceives the world. Since then, Jauder Ho has seen the world shot by shot, each one serving as a reminder of changing moments in time. In his portfolio, Jauder Ho juxtaposes long exposure shots of beautiful scenery with pictures focused on details that explain more to the story. Jauder Ho strives to take portraits that describe the feelings of his subjects and reflect his ability to arouse emotions from the viewer. Combining skills acquired from continual photography with what it takes to see life on stills, Jauder Ho has created a body of work that reflects the world both great and small. Here, Jauder Ho brings you selected content from his personal collection as well as sharing interesting items found from the Internet. Identica

Pushing to multiple repos using git

While poking around the Palm Pre, there is now a git repo available on gitorious that you can use then use quilt to manage patches to your rooted Pre.

See http://predev.wikidot.com/applying-patches for additional details.

However, I also wanted to have my own repo to play with, while making additional changes and whatnot to things. This meant that I somehow had to be able to push to multiple repos at the same time. One way is to issue multiple git push commands but after some head scratching and googling, I have the following setup.

My .git/config now looks like this:

[core]
	repositoryformatversion = 0
	filemode = true
	bare = false
	logallrefupdates = true
[branch "master"]
	remote = origin
	merge = refs/heads/master
[remote "origin"]
	url = git@gitorious.org:webos-internals/modifications.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[remote "all"]
	url = git@gitorious.org:webos-internals/modifications.git
	url = git@github.com:jauderho/webos-hacks.git

So all I have to do is a “git push all master” to push to both repos.