<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Gippy Pages</title>
	<atom:link href="http://top-frog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://top-frog.com</link>
	<description>Polluting the internet since 2004</description>
	<lastBuildDate>Thu, 16 May 2013 06:34:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>A few handy git aliases</title>
		<link>http://top-frog.com/2013/05/16/a-few-handy-git-aliases/</link>
		<comments>http://top-frog.com/2013/05/16/a-few-handy-git-aliases/#comments</comments>
		<pubDate>Thu, 16 May 2013 06:34:19 +0000</pubDate>
		<dc:creator>Shawn</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[alias]]></category>
		<category><![CDATA[branch]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[fetch]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[master]]></category>
		<category><![CDATA[origin]]></category>
		<category><![CDATA[pull]]></category>
		<category><![CDATA[push]]></category>

		<guid isPermaLink="false">http://top-frog.com/?p=2299</guid>
		<description><![CDATA[I finally got fed up with some repetitive Git tasks and decided to make a few aliases in my .gitconfig file. Here are the commands, they all assume that they&#8217;re run from a valid git repo: Push your current branch to your upstream repository How often do you repeat the git command to push your [...]]]></description>
				<content:encoded><![CDATA[<p>I finally got fed up with some repetitive Git tasks and decided to make a few aliases in my <code>.gitconfig</code> file. Here are the commands, they all assume that they&#8217;re run from a valid git repo:</p>
<h3>Push your current branch to your upstream repository</h3>
<p>How often do you repeat the git command to push your current branch by typing <code>git push origin [current-branch-name]</code> because you never remember to set up the branch to track? Does this sound easier?</p>
<p><div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-code">$ </span><span class="hl-identifier">git</span><span class="hl-code"> </span><span class="hl-identifier">pb</span></li></ol></div></div></p>
<p>Alternately, here, you can add a default push method to your <code>.gitconfig</code>:</p>
<p><div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-code">[push]</span></li>
<li><span class="hl-code">&nbsp;  default = current</span></li></ol></div></div></p>
<p>So that you can just call <code>git push</code> to and have git automatically assume you typed <code>git push origin [branch-name]</code></p>
<h3>Pull just the current branches updates</h3>
<p>With larger groups of developers it is easy for a <code>git pull</code> to fetch a lot of new refs that you don&#8217;t care about. This alias shortcuts <code>git pull origin [current-branch-name]</code>.</p>
<p><div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-code">$ </span><span class="hl-identifier">git</span><span class="hl-code"> </span><span class="hl-identifier">up</span></li></ol></div></div></p>
<p>A quick and easy update of just what you care about. Save big the <code>git pull</code> for lunch time or a coffee break.</p>
<h3>Open the current branch on GitHub</h3>
<p>We use GitHub Enterprise at work and going to look at the current branch/repo on the server is pretty common. So to make it super quick to get where you want to go this command will open up the GitHub server to the current repo and branch that you&#8217;re on. This works with self-hosted GitHub FI/Enterprise installs as well as public GitHub.</p>
<p><div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-code">$ </span><span class="hl-identifier">git</span><span class="hl-code"> </span><span class="hl-identifier">gh</span></li></ol></div></div></p>
<h3>Open up GitHub to a new Pull Request</h3>
<p>As a part of using GitHub Enterprise at work we&#8217;ve heavily adopted Pull Requests as the primary method of requesting code reviews and for pulling approved code in to master. However constantly finding the branch or manipulating browser history becomes tiresome. So this alias opens up GitHub to &#8216;<code>/owner/repoName/pulls/new/current-branch-name</code>&#8216; so that you can fill in a detailed pull request (you are filling out a pull request with a description and testing plan, right?).</p>
<p><div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-code">$ </span><span class="hl-identifier">git</span><span class="hl-code"> </span><span class="hl-identifier">pr</span></li></ol></div></div></p>
<h3>Git log graph on the Cli</h3>
<p>I don&#8217;t now about you, but I&#8217;ve not been able to get on board with the dedicated git apps for browsing and visualizing history trees, but once in a while I do want to look at the tree but don&#8217;t want to load an app to do it when a simple view on the cli will do. </p>
<p><div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-code">$ </span><span class="hl-identifier">git</span><span class="hl-code"> </span><span class="hl-identifier">lg</span></li></ol></div></div></p>
<div class="frame"><img src="http://top-frog.com/wp-content/uploads/2013/05/git-lg.gif?5681c5" alt="" title="git-lg" width="500" height="258" class="alignnone size-full wp-image-2313" /></div>
<p></p>
<h3>Ok, enough jabber, gimme the code</h3>
<p>Ok, its pretty straight forward. Just add this to your <code>.gitconfig</code>:</p>
<p><div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-brackets">[</span><span class="hl-identifier">alias</span><span class="hl-brackets">]</span><span class="hl-code"></span></li>
<li><span class="hl-code">&nbsp;  </span><span class="hl-identifier">lg</span><span class="hl-code"> = </span><span class="hl-reserved">log</span><span class="hl-code"> --</span><span class="hl-identifier">graph</span><span class="hl-code"> --</span><span class="hl-identifier">pretty</span><span class="hl-code">=</span><span class="hl-reserved">format</span><span class="hl-code">:</span><span class="hl-quotes">'</span><span class="hl-string">%Cred%h%Creset %C(yellow)%an%d%Creset %s %Cgreen(%cr)%Creset</span><span class="hl-quotes">'</span><span class="hl-code"> --</span><span class="hl-identifier">date</span><span class="hl-code">=</span><span class="hl-identifier">relative</span><span class="hl-code"></span></li>
<li><span class="hl-code">&nbsp;  </span><span class="hl-identifier">pb</span><span class="hl-code"> = </span><span class="hl-quotes">&quot;</span><span class="hl-string">!git push origin </span><span class="hl-special">\&quot;</span><span class="hl-string">$(git rev-parse --abbrev-ref HEAD)</span><span class="hl-special">\&quot;</span><span class="hl-quotes">&quot;</span><span class="hl-code"></span></li>
<li><span class="hl-code">&nbsp;  </span><span class="hl-identifier">up</span><span class="hl-code"> = </span><span class="hl-quotes">&quot;</span><span class="hl-string">!git pull origin </span><span class="hl-special">\&quot;</span><span class="hl-string">$(git rev-parse --abbrev-ref HEAD)</span><span class="hl-special">\&quot;</span><span class="hl-quotes">&quot;</span><span class="hl-code"></span></li>
<li><span class="hl-code">&nbsp;  </span><span class="hl-identifier">pr</span><span class="hl-code"> = </span><span class="hl-quotes">&quot;</span><span class="hl-string">!open </span><span class="hl-special">\&quot;</span><span class="hl-string">$(git remote -v | grep origin | grep push | cut -f 2 | cut -d </span><span class="hl-special">\&quot;</span><span class="hl-string"> </span><span class="hl-special">\&quot;</span><span class="hl-string"> -f 1 | sed -e </span><span class="hl-special">\&quot;</span><span class="hl-string">s|git@</span><span class="hl-special">\\</span><span class="hl-string">(.*</span><span class="hl-special">\\</span><span class="hl-string">):</span><span class="hl-special">\\</span><span class="hl-string">(.*</span><span class="hl-special">\\</span><span class="hl-string">).git|https://</span><span class="hl-special">\\</span><span class="hl-string">1/</span><span class="hl-special">\\</span><span class="hl-string">2|</span><span class="hl-special">\&quot;</span><span class="hl-string">)/pull/new/$(git rev-parse --abbrev-ref HEAD)</span><span class="hl-special">\&quot;</span><span class="hl-quotes">&quot;</span><span class="hl-code"></span></li>
<li><span class="hl-code">&nbsp;  </span><span class="hl-identifier">gh</span><span class="hl-code"> = </span><span class="hl-quotes">&quot;</span><span class="hl-string">!open </span><span class="hl-special">\&quot;</span><span class="hl-string">$(git remote -v | grep origin | grep push | cut -f 2 | cut -d </span><span class="hl-special">\&quot;</span><span class="hl-string"> </span><span class="hl-special">\&quot;</span><span class="hl-string"> -f 1 | sed -e </span><span class="hl-special">\&quot;</span><span class="hl-string">s|git@</span><span class="hl-special">\\</span><span class="hl-string">(.*</span><span class="hl-special">\\</span><span class="hl-string">):</span><span class="hl-special">\\</span><span class="hl-string">(.*</span><span class="hl-special">\\</span><span class="hl-string">).git|https://</span><span class="hl-special">\\</span><span class="hl-string">1/</span><span class="hl-special">\\</span><span class="hl-string">2|</span><span class="hl-special">\&quot;</span><span class="hl-string">)/tree/$(git rev-parse --abbrev-ref HEAD)</span><span class="hl-special">\&quot;</span><span class="hl-quotes">&quot;</span></li></ol></div></div></p>
<p>Are those ugly? Sure. Do they help? Yep!</p>
<p>I&#8217;m sure as time goes on I&#8217;ll figure out a few more. Or maybe the three of you that actually read this far have suggestions? Lemme know.</p>
]]></content:encoded>
			<wfw:commentRss>http://top-frog.com/2013/05/16/a-few-handy-git-aliases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Operation Shave the Wookiee, the Return</title>
		<link>http://top-frog.com/2013/01/27/operation-shave-the-wookiee-the-return/</link>
		<comments>http://top-frog.com/2013/01/27/operation-shave-the-wookiee-the-return/#comments</comments>
		<pubDate>Mon, 28 Jan 2013 03:32:23 +0000</pubDate>
		<dc:creator>Shawn</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[cancer]]></category>
		<category><![CDATA[fundraiser]]></category>
		<category><![CDATA[hair]]></category>
		<category><![CDATA[head]]></category>
		<category><![CDATA[raise]]></category>
		<category><![CDATA[shave]]></category>
		<category><![CDATA[st. baldricks]]></category>

		<guid isPermaLink="false">http://top-frog.com/?p=2274</guid>
		<description><![CDATA[Here we go again. St. Baldricks is 2 months away and I&#8217;m in once more. Its been 2 years since I last pitched in and I&#8217;ve got 12&#8243; of hair waiting to be shaved. On my head, you pervert. Last time was a success. After all was said and done and last minute donations tallied [...]]]></description>
				<content:encoded><![CDATA[<div class="frame"><img src="http://farm9.staticflickr.com/8374/8422727846_bc687beaa6_o.jpg" width="500" height="281" alt="shave-the-wookiee-the-return"></div>
<p>Here we go again.</p>
<p><a href="http://www.stbaldricks.org/why-we-exist">St. Baldricks</a> is 2 months away and I&#8217;m in once more. Its been 2 years since I last pitched in and I&#8217;ve got 12&#8243; of hair waiting to be shaved. </p>
<p>On my head, you pervert.</p>
<p><a href="http://top-frog.com/2011/03/11/operation-shave-the-wookiee-is-a-success/">Last time was a success.</a> After all was said and done and last minute donations tallied I managed to raise a little over $1200. Thanks to everyone who donated. It was much more than I was expecting.</p>
<p>And here I am. Ready to go again. On March 30, 2013, at the Children&#8217;s Hospital &#038; Research Center in Oakland, California, I&#8217;ll once again sacrifice a full head of hair in the interest of raising some dough for a good cause.</p>
<p><a href="http://www.stbaldricks.org/participants/mypage/588242/2013">Give me, er, the kids, money!</a> </p>
<p>Or join <a href="http://www.stbaldricks.org/teams/mypage/82145/2013">Team Wookiee</a>. I&#8217;d be thrilled to have teammates. I&#8217;ll need someone to celebrate with since my wife has already made it clear that I&#8217;ll be sleeping in the other room until at least some hair grows back. However, I&#8217;ve just been informed that if I raise at least $2,000 that she&#8217;ll actually sleep with me while the hair grows back.</p>
]]></content:encoded>
			<wfw:commentRss>http://top-frog.com/2013/01/27/operation-shave-the-wookiee-the-return/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Art at Stanford</title>
		<link>http://top-frog.com/2013/01/24/art-at-stanford/</link>
		<comments>http://top-frog.com/2013/01/24/art-at-stanford/#comments</comments>
		<pubDate>Fri, 25 Jan 2013 05:06:36 +0000</pubDate>
		<dc:creator>Shawn</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[campus]]></category>
		<category><![CDATA[cantor]]></category>
		<category><![CDATA[museum]]></category>
		<category><![CDATA[stanford]]></category>
		<category><![CDATA[x-e1]]></category>

		<guid isPermaLink="false">http://top-frog.com/?p=2251</guid>
		<description><![CDATA[The wife and I decided to take a trip down to Stanford last weekend to check out the Rodin Garden at the Cantor Arts Center on the Stanford campus. Now, I know that I went to a small school. My graduating class was measured in the hundreds. But, holy shit, the Stanford campus is huge [...]]]></description>
				<content:encoded><![CDATA[<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/8403687683/" title="Sequence 2 by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8055/8403687683_ac5727abc0.jpg" width="500" height="331" alt="Sequence 2" rel="http://farm9.staticflickr.com/8055/8403687683_ac5727abc0_b.jpg"></a></p>
<p>The wife and I decided to take a trip down to Stanford last weekend to check out the Rodin Garden at the <a href="http://museum.stanford.edu/">Cantor Arts Center</a> on the Stanford campus.</p>
<p>Now, I know that I went to a small school. My graduating class was measured in the hundreds. But, holy shit, the Stanford campus is huge and beautiful. Granted we saw most of it while trundling to and from the Cantor Center, but that was enough to show off how great a campus it is. And to have such a large, and free, museum on campus to boot just makes me feel like I need to outright take my parents to task for not having the ability to send me to a much better school than the rug-rat fest that I attended.</p>
<p> <img src="http://top-frog.com/wp/wp-includes/images/smilies/icon_wink.gif?5681c5" alt=';)' class='wp-smiley' />  Kidding. Mom, Dad, love you.</p>
<p>So, while we went to primarily check out the Rodin garden something else stole the show for both of us. Well, besides the campus, that is. And that was the sculpture/installation by Richard Serra named Sequence. The installation was designed to walk through. With wonderfully textured and rust-colored ~10&#8242; high walls it quickly engulfs you and lets you hide away in a small world that only consists of the gray floor, the red walls, and the blue sky. It was quite wonderful. Mr. Serra, if you&#8217;re reading this, I&#8217;d like one for my back yard. Can I get one about one fifth the size of that? Great! Thank you!</p>
<div style="text-align: center">
<a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/8403105359/" title="Sequence by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8236/8403105359_2b862982ab_q.jpg" width="150" height="150" alt="Sequence" rel="http://farm9.staticflickr.com/8236/8403105359_2b862982ab_b.jpg"></a>&nbsp;<a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/8404808478/" title="Sequence 3 by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8464/8404808478_e2573e741e_q.jpg" width="150" height="150" alt="Sequence 3" rel="http://farm9.staticflickr.com/8464/8404808478_e2573e741e_b.jpg"></a>
</div>
<p><small>I love you too, Stanford&hellip;</small></p>
]]></content:encoded>
			<wfw:commentRss>http://top-frog.com/2013/01/24/art-at-stanford/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Winters Day at the Beach with the Fuji X-E1</title>
		<link>http://top-frog.com/2013/01/09/a-winters-day-at-the-beach-with-the-fuji-x-e1/</link>
		<comments>http://top-frog.com/2013/01/09/a-winters-day-at-the-beach-with-the-fuji-x-e1/#comments</comments>
		<pubDate>Wed, 09 Jan 2013 07:56:35 +0000</pubDate>
		<dc:creator>Shawn</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[35mm]]></category>
		<category><![CDATA[aperture]]></category>
		<category><![CDATA[beach]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[Capture1]]></category>
		<category><![CDATA[fort funston]]></category>
		<category><![CDATA[fuji]]></category>
		<category><![CDATA[fujifilm]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[lightroom]]></category>
		<category><![CDATA[photograph]]></category>
		<category><![CDATA[san francisco]]></category>
		<category><![CDATA[Silkypix]]></category>
		<category><![CDATA[x-e1]]></category>

		<guid isPermaLink="false">http://top-frog.com/?p=2220</guid>
		<description><![CDATA[The wife and I decided to take the mutts for a walk on the beach this past weekend. We expected cold and dreary weather but were pleasantly greeted by partly cloudy skies and quite warm temperatures when the sun was out. All in all a good day to play with the new Fuji X-E1. In [...]]]></description>
				<content:encoded><![CDATA[<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/8355557065/" title="DSCF0544.jpg by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8231/8355557065_81aee9be34.jpg" width="500" height="350" alt="DSCF0544.jpg" rel="http://farm9.staticflickr.com/8231/8355557065_81aee9be34_b.jpg"></a></p>
<p>The wife and I decided to take the mutts for a walk on the beach this past weekend. We expected cold and dreary weather but were pleasantly greeted by partly cloudy skies and quite warm temperatures when the sun was out. All in all a good day to play with the new <a href="http://www.fujifilm.com/products/digital_cameras/x/fujifilm_x_e1/">Fuji X-E1</a>. In case you&#8217;re about to bolt, weary of more shots of my dogs, please venture forth, they&#8217;re not the feature of this post <img src="http://top-frog.com/wp/wp-includes/images/smilies/icon_wink.gif?5681c5" alt=';)' class='wp-smiley' />  Fair warning, though, I had every intention of going out and shooting for black and white images, so there&#8217;s very little color in these photos.</p>
<p><span id="more-2220"></span></p>
<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/8356620710/" title="DSCF0504.jpg by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8234/8356620710_7681320cd5.jpg" width="500" height="320" alt="DSCF0504.jpg" rel="http://farm9.staticflickr.com/8234/8356620710_7681320cd5_b.jpg"></a></p>
<p>I must say that I&#8217;m still getting used to this camera. How to hold it, shoot with it, and how best to use its autofocus. The HUGE difference of using a digital viewfinder as opposed to a traditional optical viewfinder. Having a viewfinder that adjusts to the shooting conditions almost feels like cheating.</p>
<p>The overall ergonomics of the camera are quite good but being a person who has big old monkey hands it can get a bit weird to hold sometimes. I&#8217;m waiting eagerly for the nice folks at <a href="http://www.matchtechnical.com/Pages/default.aspx">Match Technical</a> to wrap up production on a version of the Thumbs Up for the X-E1. (They&#8217;ve communicated that they should be available soon). After that I may entertain the thought of the grip accessory for the X-E1, though I&#8217;d prefer not to as the compact size of the X-E1 was one of the key factors in my decision to purchase it.</p>
<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/8358273022/" title="DSCF0549.jpg by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8235/8358273022_14a080c3f4.jpg" width="500" height="333" alt="DSCF0549.jpg" rel="http://farm9.staticflickr.com/8235/8358273022_14a080c3f4_b.jpg"></a></p>
<p>I really won&#8217;t be able to tell you here what you can&#8217;t read elsewhere, so I&#8217;m not gonna bore you with my version of a review. To tell the truth I was drawn to this camera for its sensor, its size, the lenses, and, yes, its design. So I&#8217;m in it more for the feel than the tech-specs. I&#8217;ve got tech-specs and plenty of fiddly-dials in my Canon setup. Though, really, the tech specs are quite good.</p>
<p>And the lenses are great. I bought the kit with the 18-55 f/2.8-4 zoom and also picked up the 35mm f/1.4. I have to say both are quite good. The zoom is quite surprising in its quality. I&#8217;ve been taught through years of kit purchases that the kit lens, 99% of the time, sucks. The 18-55 is part of the 1%. With fast focus, nice sharpness and pleasing out of focus areas (I refuse to type the &#8220;B&#8221; word) I&#8217;m quite smitten with it. The 35mm f/1.4 is fantastic. Though autofocus is a bit slow and noisy, and the lens hood is bothersome, the sharpness and quality of the images more than makes up for it. </p>
<p>With my Canon setups I&#8217;ve always wanted for more lenses. A lens for this, a lens for that. But I don&#8217;t feel that with this camera. That feeling is probably heavily weighted by the fact that I have many use cases covered with my Canon setup, but I still can&#8217;t help but feel different with the X-E1. Like it serves a different purpose. Like its more focused on engaging my brain on the act of photography and less on the obsession with technical perfection (not that I ever achieved that, really). I smile every time I get to change aperture via the aperture ring on the lens instead of via a dial. Maybe that also signifies that I&#8217;d have been more content with a Nikon kit as my main setup all these years? Maybe. (Its petty, but I really dislike the way Nikons look and feel)</p>
<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/8357209853/" title="DSCF0547.jpg by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8468/8357209853_611780fec7.jpg" width="500" height="370" alt="DSCF0547.jpg" rel="http://farm9.staticflickr.com/8468/8357209853_611780fec7_b.jpg"></a></p>
<p>My only regret is I wish Apple would get it in gear and release support for the X-Trans sensor already. They&#8217;ve had plenty of time to work on it as the X-Pro1 has been on the market for some time. Add to that the X-Pro1 and the X-E1 share a lot of internals, including the sensor, and I wonder if they&#8217;re not doing it or stuck. The sensor seems to be a rather unique challenge for raw processors. The in-camera raw processing is, at this time, the best converter available. I&#8217;ve been converting all the images in camera and then tweaking a bit in Aperture or Lightroom. </p>
<p>There isn&#8217;t really a good raw processor available at this time, either. I&#8217;m trying Adobe Lightroom because it claims support for this camera but the conversions are bad. The color is smeared and icky. Maybe Adobe can get it right eventually, but I&#8217;ve found that I really just don&#8217;t like Lightroom that much. I like what it offers but I can&#8217;t buy in to the UI. And forget Silkypix, the app that ships with the X-E1. It CAN do well but not consistently and the detail doesn&#8217;t compare to the in camera conversions. Capture1 is currently in beta to support the X-E1 and the results look good, so I&#8217;ll probably try that as well. But, really, I don&#8217;t want to switch processing applications. :sadface:</p>
<p>Apple? Please?</p>
<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/8356619494/" title="DSCF0546.jpg by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8227/8356619494_c7bc4f7670.jpg" width="500" height="333" alt="DSCF0546.jpg" rel="http://farm9.staticflickr.com/8227/8356619494_c7bc4f7670_b.jpg"></a></p>
<p>Another positive aspect is how good my back feels now that my bag is lighter. In the last year I&#8217;ve moved from a heavy bag that included a 15&#8243; MacBook Pro and a Canon 7D to a 13&#8243; MacBook Air and an X-E1. Even if I carry both lenses with me my bag is still about 6-10 pounds lighter depending on what lens I used on the 7D. It feels like 20. Its hard to believe that I carry so much power in such small packages. I rarely have the X-E1 on a strap because its light enough that I don&#8217;t want it and feel that it really just gets in the way.</p>
<p>In case you have a 2008-ish vintage Subaru Impreza WRX the X-E1 fits perfectly face down in the center console cup holder. Subaru ergonomics FTW.</p>
<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/8355558039/" title="DSCF0542.jpg by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8371/8355558039_d1a102cee0.jpg" width="500" height="306" alt="DSCF0542.jpg" rel="http://farm9.staticflickr.com/8371/8355558039_d1a102cee0_b.jpg"></a></p>
<p>Though I used the word regret earlier I used the word very lightly. There&#8217;s no buyers remorse. It was expensive but I don&#8217;t care. I&#8217;ve thought for a long time that I wanted a more simple camera with more traditional controls and it turns out that I was right. It wasn&#8217;t just a longing to get back what I enjoyed using so much when I first got going with photography I really did enjoy controlling aperture and shutter speed using dials.</p>
<p>The camera is far from perfect. The perfect camera is a white whale. This camera is a great camera. I kind of feel bad for my 7D. It hasn&#8217;t moved since I got the X-E1&hellip;</p>
<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/8355555719/" title="DSCF0545.jpg by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8188/8355555719_856169d409.jpg" width="500" height="361" alt="DSCF0545.jpg" rel="http://farm9.staticflickr.com/8188/8355555719_856169d409_b.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://top-frog.com/2013/01/09/a-winters-day-at-the-beach-with-the-fuji-x-e1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MacPorts, Homebrew and Mountain Lion</title>
		<link>http://top-frog.com/2012/07/26/macports-homebrew-and-mountain-lion/</link>
		<comments>http://top-frog.com/2012/07/26/macports-homebrew-and-mountain-lion/#comments</comments>
		<pubDate>Fri, 27 Jul 2012 03:25:41 +0000</pubDate>
		<dc:creator>Shawn</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[brew]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://top-frog.com/?p=2189</guid>
		<description><![CDATA[The inevitable happened today. Mountain Lion was installed in a couple of different places. Unfortunately one of those places was at work and on a development machine before we had a chance to test out Mountain Lion compatability. Predictably, issues arose. Not surprisingly, at least to me, Homebrew has the biggest issue, and an issue [...]]]></description>
				<content:encoded><![CDATA[<p>The inevitable happened today. Mountain Lion was installed in a couple of different places. Unfortunately one of those places was at work and on a development machine before we had a chance to test out Mountain Lion compatability. Predictably, issues arose. Not surprisingly, at least to me, Homebrew has the biggest issue, and an issue based on its core philosophy.</p>
<p>But first&hellip;</p>
<h2>XCode</h2>
<p>Prior to Mountain Lion the Xcode Command Line Tools could be downloaded separately from Xcode. This saved many of us the bandwidth and storage space required to install Xcode. As of the time of this writing I can only find the individually downloadable Command Line tools available for regular old Lion.</p>
<p>So that means a download of Xcode is required. Dag nabbit.</p>
<p>After downloading and installing Xcode open Xcode and go in to its Preferences, click on the Downloads tab and install the Command Line Tools.</p>
<p><b>Update:</b> As noted by Patrick Quinn-Graham in the comments below, the Command Line Tools are now showing up in Apple&#8217;s Developer portal. I recommend grabbing that if you don&#8217;t need the full Xcode suite.</p>
<p>After that is done head to the command line and accept the command line tools usage agreement.</p>
<div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-code">$ </span><span class="hl-identifier">sudo</span><span class="hl-code"> </span><span class="hl-identifier">xcodebuild</span><span class="hl-code"> -</span><span class="hl-identifier">license</span></li></ol></div></div>
<p>Press space a few times to get through the whole thing and then type &#8220;accept&#8221; when it prompts you to. This provided a fun distraction for both Homebrew and MacPorts as the errors delivered because of needing to accept the usage agreement in no way point to the root cause of the errors. And to add insult to injury this was not needed on every system that I&#8217;ve had to manage. I found this by blind luck.</p>
<p>We&#8217;re done with Xcode. We&#8217;re now ready to compile applications on Mountain Lion.</p>
<h2>MacPorts</h2>
<p>MacPorts survived the upgrade just fine. MySQL, PHP and Apache were all running when Mountain Lion restarted. But just to be safe I updated MacPorts. </p>
<div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-code">$ </span><span class="hl-identifier">sudo</span><span class="hl-code"> </span><span class="hl-identifier">port</span><span class="hl-code"> </span><span class="hl-identifier">selfupdate</span></li></ol></div></div>
<p>After the update almost everything that I had installed became listed as &#8220;outdated&#8221;. So, everything needed upgrading&hellip; :sigh:</p>
<div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-code">$ </span><span class="hl-identifier">sudo</span><span class="hl-code"> </span><span class="hl-identifier">port</span><span class="hl-code"> -</span><span class="hl-identifier">cup</span><span class="hl-code"> </span><span class="hl-identifier">upgrade</span><span class="hl-code"> </span><span class="hl-identifier">outdated</span></li></ol></div></div>
<p>But, all in all, done and done. Ok, eventually it was done after 6 hours of compiling.</p>
<h2>Homebrew</h2>
<p>Homebrew was harder. Homebrew&#8217;s base philosophy, a philosophy that everyone loves about it (well, except for me) is that it uses already installed system libraries to run. Today that proved to be a bad thing.</p>
<p>Apple removed support for X11 in Mountain Lion. This means that anything that was linking to a library that was supplied by X11 would now complain and die. This meant our custom compiled version of PHP at work. dylibs were missing which prevented PHP from running and header files could not be found which prevented an update to PHP from compiling.</p>
<p>The Homebrew folks saw it coming a while back. There are pull requests and changes in branches that deal with this issue. However the best I can tell not all of that has made it in to master and its still not ready to go.</p>
<p>There is a work around, and it relies on installing XQuartz to provide the required X11 libraries. This may not be required for everyone, but for those of us that run specific versions of software it means a headache. In our case, for PHP, it meant that libraries required for font and image handling were missing. And these are just the errors that came up first. I&#8217;m not sure how many other things that X11 provided were waiting to error out should we have tried to link in the parts as we found the errors.</p>
<p>First, download and install <a href="http://xquartz.macosforge.org/landing/">XQuartz</a>. After doing that symlink it in to where Homebrew expects X11 to be. We had folder there, presumably left over from the upgrade.</p>
<div class="hl-wrapper"><div class="hl-main"><ol class="hl-main"><li>&nbsp;<span class="hl-code">$ </span><span class="hl-identifier">cd</span><span class="hl-code"> /</span><span class="hl-identifier">usr</span><span class="hl-code"></span></li>
<li><span class="hl-code">&nbsp;$ </span><span class="hl-identifier">mv</span><span class="hl-code"> </span><span class="hl-identifier">X11</span><span class="hl-code"> </span><span class="hl-identifier">X11</span><span class="hl-code">.</span><span class="hl-identifier">bak</span><span class="hl-code"></span></li>
<li><span class="hl-code">&nbsp;$ </span><span class="hl-identifier">ln</span><span class="hl-code"> -</span><span class="hl-identifier">s</span><span class="hl-code"> /</span><span class="hl-identifier">opt</span><span class="hl-code">/</span><span class="hl-identifier">X11</span><span class="hl-code"> </span><span class="hl-identifier">X11</span></li></ol></div></div>
<p>Now, since this was an OS upgrade all of the config and ini files have been renamed and replaced. This means that the Apache conf and PHP ini files needed replacing. Fortunately for us we had a custom Homebrew Formula that handled this portion of the environment for us. So we just had to uninstall and reinstall that Formula to re-configure Apache and PHP how we had it. Your setup will of course be different.</p>
<h2>Conclusion</h2>
<p>So, overall, while my total time spent troublehsooting, updating and fixing a Homebrew install today took up a little more than 4 hours of my day, it was fixed and working. </p>
<p>While I&#8217;m still pissed at Homebrew for taking more of my brainpower today its 4 hour investment is a bit shorter than the time it took MacPorts to get up to date. </p>
<p>I have to say, though, that despite the longer compile time to update MacPorts I still prefer it for the sheer fact that it didn&#8217;t force me to pay attention to it to upgrade to ML. I decided to pay attention to it (and would have had to eventually anyway). I was able to address MacPorts on my time, not because something was horribly broken.</p>
]]></content:encoded>
			<wfw:commentRss>http://top-frog.com/2012/07/26/macports-homebrew-and-mountain-lion/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Alcatraz</title>
		<link>http://top-frog.com/2012/07/05/alcatraz/</link>
		<comments>http://top-frog.com/2012/07/05/alcatraz/#comments</comments>
		<pubDate>Fri, 06 Jul 2012 05:43:03 +0000</pubDate>
		<dc:creator>Shawn</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[alcatraz]]></category>
		<category><![CDATA[bird]]></category>
		<category><![CDATA[building]]></category>
		<category><![CDATA[cellhouse]]></category>
		<category><![CDATA[island]]></category>
		<category><![CDATA[prison]]></category>
		<category><![CDATA[roof]]></category>
		<category><![CDATA[sea gull]]></category>

		<guid isPermaLink="false">http://top-frog.com/?p=2176</guid>
		<description><![CDATA[Some friends came in from out of town and we ended up doing some tourist-like stuff. Unfortunately I was hacking up a lung so I was kinda just slothing around, but I was able to squeak out a few decent shots. Birds are abundant on the island and I caught this one is just about [...]]]></description>
				<content:encoded><![CDATA[<p>Some friends came in from out of town and we ended up doing some tourist-like stuff. Unfortunately I was hacking up a lung so I was kinda just slothing around, but I was able to squeak out a few decent shots.</p>
<p>Birds are abundant on the island and I caught this one is just about the perfect spot. It only would have been better if he were facing me.</p>
<div style="text-align: center">
<a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/7512745084/" title="Birdie in the Window by tehgipster, on Flickr"><img src="http://farm8.staticflickr.com/7264/7512745084_9fa68c28e5.jpg" width="439" height="500" alt="Birdie in the Window" rel="http://farm8.staticflickr.com/7264/7512745084_9fa68c28e5_b.jpg"></a>
</div>
<p>The buildings are in need of some upkeep which makes them very interesting to look at. Every piece of chipped paint, rust and bird poop helps create interesting textures.</p>
<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/7512745998/" title="Sally Port Roof Line by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8294/7512745998_2ac61f1e96.jpg" width="500" height="340" alt="Sally Port Roof Line" rel="http://farm9.staticflickr.com/8294/7512745998_2ac61f1e96_b.jpg"></a></p>
<p>Amazingly enough I had the whole recreation yard to myself to get a nice hero shot of the main cellhouse.</p>
<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/7512746618/" title="Alcatraz Cell House by tehgipster, on Flickr"><img src="http://farm9.staticflickr.com/8293/7512746618_9fc00cc543.jpg" width="500" height="301" alt="Alcatraz Cell House" rel="http://farm9.staticflickr.com/8293/7512746618_9fc00cc543_b.jpg"></a></p>
<p>Unfortunately now age is starting to get the best of me and I need to get the diopter settings straightened out because I&#8217;m noticing that my efforts to manually focus are meeting with less and less success. I don&#8217;t mind getting older but couldn&#8217;t it be nice and effect some other part of my body? Oh, wait, it already is&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://top-frog.com/2012/07/05/alcatraz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Post Password Token updated for WordPress 3.4</title>
		<link>http://top-frog.com/2012/06/20/post-password-token-updated-for-wordpress-3-4/</link>
		<comments>http://top-frog.com/2012/06/20/post-password-token-updated-for-wordpress-3-4/#comments</comments>
		<pubDate>Wed, 20 Jun 2012 06:51:49 +0000</pubDate>
		<dc:creator>Shawn</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[3.4]]></category>
		<category><![CDATA[3.5-a]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[post-password]]></category>
		<category><![CDATA[token]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://top-frog.com/?p=2170</guid>
		<description><![CDATA[The Post Password Token Plugin has been updated for compatibility with WordPress version 3.4 and newer (tested up to 3.5 alpha). In 3.4 the post-password cookie was updated to contain an encrypted value, something that was probably long overdue, and caused the PPT plugin to fail in authenticating the post. All is well now. Update [...]]]></description>
				<content:encoded><![CDATA[<p>The <a href="http://wordpress.org/extend/plugins/post-password-plugin/changelog/">Post Password Token Plugin</a> has been updated for compatibility with WordPress version 3.4 and newer (tested up to 3.5 alpha).</p>
<p>In 3.4 the post-password cookie was updated to contain an encrypted value, something that was probably long overdue, and caused the PPT plugin to fail in authenticating the post.</p>
<p>All is well now. Update your plugins and enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://top-frog.com/2012/06/20/post-password-token-updated-for-wordpress-3-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solar Eclipse</title>
		<link>http://top-frog.com/2012/05/21/solar-eclipse/</link>
		<comments>http://top-frog.com/2012/05/21/solar-eclipse/#comments</comments>
		<pubDate>Mon, 21 May 2012 06:06:01 +0000</pubDate>
		<dc:creator>Shawn</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[100-400]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[sun moon]]></category>

		<guid isPermaLink="false">http://top-frog.com/?p=2160</guid>
		<description><![CDATA[Just a few off the cuff shots. I tossed the 100-400 and the 1.4 extender on and THEN had to add my circular polarizer to get a decent exposure of 1/5000 @ f/11. And this was while I was also setting up a new grill. If anyone at Char Broil Grills is reading: Were you [...]]]></description>
				<content:encoded><![CDATA[<p>Just a few off the cuff shots. I tossed the 100-400 and the 1.4 extender on and THEN had to add my circular polarizer to get a decent exposure of 1/5000 @ f/11. And this was while I was also setting up a new grill.</p>
<p>If anyone at Char Broil Grills is reading: Were you stoned when you designed the T-22D?</p>
<p>Anyway. By the time the eclipse was in full swing most of the neighborhood was in the street hanging out, talking about it, and looking at my live view shots to see how it was progressing.</p>
<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/7239548704/" title="Eclipse 2 by tehgipster, on Flickr"><img src="http://farm6.staticflickr.com/5119/7239548704_fd21ab076a.jpg" width="500" height="333" alt="Eclipse 2" rel="http://farm6.staticflickr.com/5119/7239548704_fd21ab076a_b.jpg"></a></p>
<p>I know I took a chance using live view to shoot. But I made sure to work quickly. I was shooting handheld (why not at those speeds) so the sensor wasn&#8217;t being constantly blasted. That and it only made sense to take a few new pics every 5 minutes or so. Better a fried 7D than fried eyeballs.</p>
<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/7239548196/" title="Eclipse 1 by tehgipster, on Flickr"><img src="http://farm8.staticflickr.com/7244/7239548196_6f228121c2.jpg" width="500" height="333" alt="Eclipse 1" rel="http://farm8.staticflickr.com/7244/7239548196_6f228121c2_b.jpg"></a></p>
<p>I started off shooting in the back yard but was eventually obscured by houses uphill from us. Luckily I have trustworthy neighbors that I could trust to watch cars for me as I shot from the middle of the street <img src="http://top-frog.com/wp/wp-includes/images/smilies/icon_wink.gif?5681c5" alt=';)' class='wp-smiley' />  Though in retrospect I wish I had thought <a href="https://twitter.com/#!/selviano/status/204385356433465344">to look down</a></p>
]]></content:encoded>
			<wfw:commentRss>http://top-frog.com/2012/05/21/solar-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Peeled Bark</title>
		<link>http://top-frog.com/2012/03/26/peeled-bark/</link>
		<comments>http://top-frog.com/2012/03/26/peeled-bark/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 04:25:45 +0000</pubDate>
		<dc:creator>Shawn</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[17-55]]></category>
		<category><![CDATA[2.8]]></category>
		<category><![CDATA[bark]]></category>
		<category><![CDATA[canon]]></category>
		<category><![CDATA[image stabilized]]></category>
		<category><![CDATA[IS]]></category>
		<category><![CDATA[lens]]></category>
		<category><![CDATA[loose]]></category>
		<category><![CDATA[peel]]></category>
		<category><![CDATA[tree]]></category>

		<guid isPermaLink="false">http://top-frog.com/?p=2153</guid>
		<description><![CDATA[Trying out the new Canon 15-55 f/2.8 IS. I think I&#8217;m gonna like this lens. A lot. Like, A LOT.]]></description>
				<content:encoded><![CDATA[<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/7019555703/" title="Peeled bark by tehgipster, on Flickr"><img src="http://farm8.staticflickr.com/7207/7019555703_dc29f6a11d_z.jpg" width="484" height="640" alt="Peeled bark" rel="http://farm8.staticflickr.com/7207/7019555703_dc29f6a11d_b.jpg"></a></p>
<p>Trying out the new Canon 15-55 f/2.8 IS. I think I&#8217;m gonna like this lens. A lot.</p>
<p>Like, <b>A LOT</b>.</p>
]]></content:encoded>
			<wfw:commentRss>http://top-frog.com/2012/03/26/peeled-bark/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Subway Fiddler</title>
		<link>http://top-frog.com/2012/02/11/subway-fiddler/</link>
		<comments>http://top-frog.com/2012/02/11/subway-fiddler/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 02:16:19 +0000</pubDate>
		<dc:creator>Shawn</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[fiddle]]></category>
		<category><![CDATA[san francisco]]></category>
		<category><![CDATA[subway]]></category>

		<guid isPermaLink="false">http://top-frog.com/?p=2146</guid>
		<description><![CDATA[Found this interesting looking fellow playing for change in the Montgomery Station Bart. I tried to get the hustle and bustle of the activity around him to contrast with his relative camlness but ultimately couldn&#8217;t make it work the way I wanted.]]></description>
				<content:encoded><![CDATA[<p><a class="thickbox frame" href="http://www.flickr.com/photos/tehgipster/6859731697/" title="Subway Fiddler by tehgipster, on Flickr"><img src="http://farm8.staticflickr.com/7193/6859731697_51c678df99.jpg" width="500" height="333" alt="Subway Fiddler" rel="http://farm8.staticflickr.com/7193/6859731697_51c678df99_b.jpg"></a></p>
<p>Found this interesting looking fellow playing for change in the Montgomery Station Bart. I tried to get the hustle and bustle of the activity around him to contrast with his relative camlness but ultimately couldn&#8217;t make it work the way I wanted.</p>
]]></content:encoded>
			<wfw:commentRss>http://top-frog.com/2012/02/11/subway-fiddler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: top-frog.com @ 2013-05-18 15:40:56 by W3 Total Cache -->