<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>zeusville</title>
	<atom:link href="http://zeusville.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://zeusville.wordpress.com</link>
	<description>Random thoughts about work and life.</description>
	<lastBuildDate>Sat, 18 May 2013 11:24:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='zeusville.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>zeusville</title>
		<link>http://zeusville.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://zeusville.wordpress.com/osd.xml" title="zeusville" />
	<atom:link rel='hub' href='http://zeusville.wordpress.com/?pushpress=hub'/>
		<item>
		<title>what tag is this commit in?</title>
		<link>http://zeusville.wordpress.com/2013/05/17/what-tag-is-this-commit-in/</link>
		<comments>http://zeusville.wordpress.com/2013/05/17/what-tag-is-this-commit-in/#comments</comments>
		<pubDate>Fri, 17 May 2013 14:48:39 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1838</guid>
		<description><![CDATA[Thanks to jbowes for saving me time with git. I had a commit and wanted to find out what tag it was in. I tended to do the opposite, given a tag is this commit in it. And boy did I do it the hard way: git checkout TAG git checkout -b TAG # assuming [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1838&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Thanks to <a href="http://blog.repl.ca/">jbowes</a> for saving me time with git. I had a commit and wanted to find out what tag it was in. I tended to do the opposite, given a tag is this commit in it. And boy did I do it the hard way:</p>
<pre>
git checkout TAG
git checkout -b TAG # assuming there wasn't one already
tig # search for the commit in the list
</pre>
<p>That was cumbersome and a bit error prone. Now with a simple command I can find the tag more easily.</p>
<pre>
git describe --contains COMMIT_SHA
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1838/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1838/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1838&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2013/05/17/what-tag-is-this-commit-in/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting primary display</title>
		<link>http://zeusville.wordpress.com/2013/03/11/setting-primary-display/</link>
		<comments>http://zeusville.wordpress.com/2013/03/11/setting-primary-display/#comments</comments>
		<pubDate>Mon, 11 Mar 2013 13:55:18 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1980</guid>
		<description><![CDATA[When at home I hook up the laptop to an external monitor. For the most part it works great, plug it in and it works. I want the external monitor to be the primary. Pretty simple with xrandr --output DISPLAY --primary so I adapted my vij command to list out the monitors and present the [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1980&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>When at home I hook up the laptop to an external monitor. For the most part it works great, plug it in and it works. I want the external monitor to be the primary. Pretty simple with <code>xrandr --output DISPLAY --primary</code> so I adapted my <code><a href="http://zeusville.wordpress.com/2008/10/10/vij/">vij</a></code> command to list out the monitors and present the list to me.</p>
<pre>
#!/bin/sh

monitors=$(xrandr | grep " connected " | awk '{print $1}')
matches=$(echo $monitors | gawk '{print NF}')

case "$matches" in
    0)
       echo "No matches found"
       show=""
       ;;
    1)
       show=$monitors
       ;;
    *)
       echo
       echo "Multiple matches found..."
       i=1
       for option in $monitors
       do
          echo "$i: $option"
          i=`expr $i + 1`
       done
       echo "q: Quit"
       echo
       read -p "? " ans
       if [ "q" == "$ans" ]; then
          show=""
       else
          show=$(echo $monitors | gawk '{print $'$ans'}')
       fi
       ;;
esac

if [ "" != "$show" ]; then
   xrandr --output $show --primary
fi
</pre>
<p>When you run the script this is what you see:</p>
<pre>
$ bin/prim 

Multiple matches found...
1: LVDS1
2: VGA1
q: Quit

? 
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1980/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1980/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1980&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2013/03/11/setting-primary-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
		<item>
		<title>Gnome 3 why do you hate me?</title>
		<link>http://zeusville.wordpress.com/2013/03/04/gnome-3-why-do-you-hate-me/</link>
		<comments>http://zeusville.wordpress.com/2013/03/04/gnome-3-why-do-you-hate-me/#comments</comments>
		<pubDate>Mon, 04 Mar 2013 14:58:14 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1977</guid>
		<description><![CDATA[So my Gnome 3 (gnome-shell, Fedora 18) went to screensaver. When I unlocked it this is what my desktop looks like. How do I get out of this? My machine is running fine. I can ssh into it and it&#8217;s running normal but I can&#8217;t interact with the desktop. Quite annoying.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1977&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>So my Gnome 3 (gnome-shell, Fedora 18) went to screensaver. When I unlocked it this is what my desktop looks like.</p>
<p><a href="http://zeusville.files.wordpress.com/2013/03/lockup.png"><img src="http://zeusville.files.wordpress.com/2013/03/lockup.png?w=549&#038;h=205" alt="lockup" width="549" height="205" class="alignnone size-large wp-image-1978" /></a></p>
<p>How do I get out of this? My machine is running fine. I can ssh into it and it&#8217;s running normal but I can&#8217;t interact with the desktop. Quite annoying. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1977/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1977/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1977&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2013/03/04/gnome-3-why-do-you-hate-me/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>

		<media:content url="http://zeusville.files.wordpress.com/2013/03/lockup.png?w=549" medium="image">
			<media:title type="html">lockup</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy 13th Anniversary</title>
		<link>http://zeusville.wordpress.com/2013/02/26/happy-13th-anniversary/</link>
		<comments>http://zeusville.wordpress.com/2013/02/26/happy-13th-anniversary/#comments</comments>
		<pubDate>Tue, 26 Feb 2013 15:37:01 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">https://zeusville.wordpress.com/?p=1976</guid>
		<description><![CDATA[Another year has gone by and it&#8217;s better than ever (at least in my opinion)  Happy 13th Anniversary to my wife,  Elizabeth<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1976&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Another year has gone by and it&#8217;s better than ever (at least in my opinion)  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Happy 13th Anniversary to my wife,  <strong>Elizabeth</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1976/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1976/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1976&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2013/02/26/happy-13th-anniversary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
		<item>
		<title>Gasland</title>
		<link>http://zeusville.wordpress.com/2013/02/24/gasland/</link>
		<comments>http://zeusville.wordpress.com/2013/02/24/gasland/#comments</comments>
		<pubDate>Sun, 24 Feb 2013 05:37:01 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1969</guid>
		<description><![CDATA[Watching Gasland is depressing. While I like the idea of being energy independent and getting off of foreign oil, I don&#8217;t like the idea of fracking. It seems very short sighted and trying to solve the near term problem. What I wonder is what the hell have we been doing since the 1973 oil embargo? [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1969&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Watching <a href="http://www.gaslandthemovie.com/">Gasland</a> is depressing. While I like the idea of being energy independent and getting off of foreign oil, I don&#8217;t like the idea of <a href="http://en.wikipedia.org/wiki/Hydraulic_fracturing">fracking</a>. It seems very short sighted and trying to solve the near term problem.</p>
<p>What I wonder is what the hell have we been doing since the 1973<a href="http://en.wikipedia.org/wiki/1973_oil_crisis"> oil embargo</a>? Or even the panic in <a href="http://en.wikipedia.org/wiki/1979_energy_crisis">1979</a>. You would think that as a nation when we had to ration gas we would&#8217;ve learned and tried to solve the problem. But here it is 34 years later and we consume gas like it&#8217;s no tomorrow. Clearly we didn&#8217;t learn anything from our past. It&#8217;s quite sad actually.</p>
<p>I realize for every view point there&#8217;s a counter view point, the <a href="http://www.anga.us/critical-issues/the-truth-about-gasland#.USmjIIcYOqo">Natural Gas</a> industry has a different opinion on Gasland: </p>
<blockquote><p>Natural gas is a clean, abundant and domestic energy source that holds vast potential to promote cleaner air, grow local economies and enhance energy security in the United States and, increasingly, around the world.  The natural gas community is committed to the safe and responsible development of this energy source, and we welcome questions about the film Gasland because it gives us the opportunity to set the record straight in a fact-based way.</p></blockquote>
<p>Personally I think they&#8217;re full of it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Many will blame the Administration for not doing more but clearly the people to blame are the special interest groups that actually run this country. We have this belief that WE THE PEOPLE are in charge, we&#8217;re so wrong. I think the problem isn&#8217;t Congress or the Executive branch, but the <a href="http://en.wikipedia.org/wiki/Lobbying">lobbyist</a> that have our leaders ears (or more likely other parts of their bodies).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1969/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1969/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1969&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2013/02/24/gasland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy 6th Birthday Iliana!</title>
		<link>http://zeusville.wordpress.com/2013/02/14/happy-6th-birthday-iliana/</link>
		<comments>http://zeusville.wordpress.com/2013/02/14/happy-6th-birthday-iliana/#comments</comments>
		<pubDate>Thu, 14 Feb 2013 13:51:02 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1963</guid>
		<description><![CDATA[Today is Valentine&#8217;s Day and Iliana&#8217;s birthday!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1963&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Today is Valentine&#8217;s Day and Iliana&#8217;s birthday!<br />
<img src="http://farm9.staticflickr.com/8249/8472626815_355aff4fbc.jpg" width="500" height="375" alt="IMAG1744"></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1963/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1963&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2013/02/14/happy-6th-birthday-iliana/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>

		<media:content url="http://farm9.staticflickr.com/8249/8472626815_355aff4fbc.jpg" medium="image">
			<media:title type="html">IMAG1744</media:title>
		</media:content>
	</item>
		<item>
		<title>Gnome 3 and themes are a disappointment</title>
		<link>http://zeusville.wordpress.com/2013/02/13/gnome-3-and-themes-are-a-disappointment/</link>
		<comments>http://zeusville.wordpress.com/2013/02/13/gnome-3-and-themes-are-a-disappointment/#comments</comments>
		<pubDate>Wed, 13 Feb 2013 16:17:35 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1952</guid>
		<description><![CDATA[Getting a nice dark theme on a Linux desktop is probably one of the most difficult things I&#8217;ve had to do on a computer. I can install a machine from scratch, get virtualized systems working, connect to a SAMBA share, even get my Linux desktop to talk to a network printer. But can I get [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1952&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Getting a nice dark theme on a Linux desktop is probably one of the most difficult things I&#8217;ve had to do on a computer. I can install a machine from scratch, get virtualized systems working, connect to a SAMBA share, even get my Linux desktop to talk to a network printer. But can I get a dark network theme across the board? No way!</p>
<p>I recently upgraded from Fedora 16 to Fedora 18. Well not really an upgrade, more of a fresh install of Fedora 18 but kept my existing home directory. I enabled dark themes using the <a href="https://live.gnome.org/GnomeTweakTool">Gnome Tweak Tool</a>. I thought this would take care of it but it only seems to work for some applications: <a href="http://projects.gnome.org/evolution/">Evolution</a>, <a href="https://live.gnome.org/Nautilus">Nautilus</a>, <a href="http://help.gnome.org/users/gnome-terminal/stable/">Gnome Terminal</a> all seem to look just fine. But anything not included with Gnome 3 looks like rubbish.</p>
<p>Here&#8217;s the <a href="https://live.gnome.org/GnomeTweakTool">Gnome Tweak Tool</a>. It looks pretty nice in a dark theme.<br />
<a href="http://zeusville.files.wordpress.com/2013/02/theme-tweaktool.png"><img src="http://zeusville.files.wordpress.com/2013/02/theme-tweaktool.png?w=549&#038;h=489" alt="theme-tweaktool" width="549" height="489" class="alignnone size-large wp-image-1956" /></a></p>
<p>As does the <a href="http://help.gnome.org/users/gnome-terminal/stable/">Gnome Terminal</a>, especially with the transparency on the window.<br />
<a href="http://zeusville.files.wordpress.com/2013/02/dark-terminal.png"><img src="http://zeusville.files.wordpress.com/2013/02/dark-terminal.png?w=549&#038;h=343" alt="dark-terminal" width="549" height="343" class="alignnone size-large wp-image-1953" /></a></p>
<p>But any other application is horrendous. Checkout <a href="https://www.google.com/intl/en/chrome/browser/">Google Chrome</a> on the same machine.</p>
<p><a href="http://zeusville.files.wordpress.com/2013/02/theme-chrome.png"><img src="http://zeusville.files.wordpress.com/2013/02/theme-chrome.png?w=549&#038;h=424" alt="theme-chrome" width="549" height="424" class="alignnone size-large wp-image-1954" /></a></p>
<p>And <a href="http://www.mozilla.org/en-US/thunderbird/">Thunderbird</a> is also a mess, I was able to get the message window be white on black, but there is no easy way to change the look and feel of <a href="http://www.mozilla.org/en-US/thunderbird/">Thunderbird</a>. All of the themes are &#8216;cutesy&#8217; trying to add splash graphics and what not. See <a href="https://addons.mozilla.org/en-US/thunderbird/themes/">Thunderbird themes</a> for examples.</p>
<p><a href="http://zeusville.files.wordpress.com/2013/02/theme-thunderbird.png"><img src="http://zeusville.files.wordpress.com/2013/02/theme-thunderbird.png?w=549&#038;h=375" alt="theme-thunderbird" width="549" height="375" class="alignnone size-large wp-image-1955" /></a></p>
<p>And <a href="http://xchat.org/">XChat</a> is unusable at the moment with the white text on white background in the text entry box.</p>
<p><a href="http://zeusville.files.wordpress.com/2013/02/xchat-white.png"><img src="http://zeusville.files.wordpress.com/2013/02/xchat-white.png?w=549&#038;h=293" alt="xchat-white" width="549" height="293" class="alignnone size-large wp-image-1957" /></a></p>
<p>I&#8217;ve gotten to the point where I gave up on Thunderbird and <a href="http://xchat.org/">XChat</a> and started using <a href="http://www.mutt.org/">mutt</a> and <a href="http://www.irssi.org/">irssi</a> since the terminal theme works. But I have to say mutt is ok but I prefer Thunderbird&#8217;s folders and notifications. <a href="http://www.irssi.org/">irssi</a> is actually quite workable so if I can&#8217;t get the themes fixed in <a href="http://xchat.org/">XChat</a> I can live with <a href="http://www.irssi.org/">irssi</a>.</p>
<p>But this really shouldn&#8217;t be that difficult, why do app designer think people want whitewashed apps, it&#8217;s 2013 and we still can&#8217;t get themes working.</p>
<p>&lt;/rant&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1952/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1952/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1952&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2013/02/13/gnome-3-and-themes-are-a-disappointment/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>

		<media:content url="http://zeusville.files.wordpress.com/2013/02/theme-tweaktool.png?w=549" medium="image">
			<media:title type="html">theme-tweaktool</media:title>
		</media:content>

		<media:content url="http://zeusville.files.wordpress.com/2013/02/dark-terminal.png?w=549" medium="image">
			<media:title type="html">dark-terminal</media:title>
		</media:content>

		<media:content url="http://zeusville.files.wordpress.com/2013/02/theme-chrome.png?w=549" medium="image">
			<media:title type="html">theme-chrome</media:title>
		</media:content>

		<media:content url="http://zeusville.files.wordpress.com/2013/02/theme-thunderbird.png?w=549" medium="image">
			<media:title type="html">theme-thunderbird</media:title>
		</media:content>

		<media:content url="http://zeusville.files.wordpress.com/2013/02/xchat-white.png?w=549" medium="image">
			<media:title type="html">xchat-white</media:title>
		</media:content>
	</item>
		<item>
		<title>First book of 2013</title>
		<link>http://zeusville.wordpress.com/2013/02/07/first-book-of-2013/</link>
		<comments>http://zeusville.wordpress.com/2013/02/07/first-book-of-2013/#comments</comments>
		<pubDate>Thu, 07 Feb 2013 15:29:03 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1948</guid>
		<description><![CDATA[I got a Kindle Paperwhite this past Christmas. I&#8217;m not much of a book reader but for 2013 I wanted to read more. As a James Bond fan (I own the Blu-ray box set too and the recent Amazon James Bond book sale ($1.99 each for the Kindle versions), I bought all 14 books. I [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1948&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I got a <a href="http://www.amazon.com/Kindle-Paperwhite-Touch-light/dp/B007OZNZG0/ref=sr_tr_sr_1?s=digital-text&amp;ie=UTF8&amp;qid=1360250648&amp;sr=1-1&amp;keywords=kindle+paperwhite">Kindle Paperwhite</a> this past Christmas. I&#8217;m not much of a book reader but for 2013 I wanted to read more. As a James Bond fan (I own the Blu-ray box set too <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and the recent Amazon James Bond book sale ($1.99 each for the Kindle versions), I bought all 14 books. I know not that interesting, but I FINALLY finished the first book: <a href="http://www.amazon.com/gp/product/B008L40NT0/ref=kinw_myk_ro_title">&#8220;Casino Royale&#8221;</a>.</p>
<p>The one thing I noticed about Bond in &#8220;Casino Royale&#8221; was that he wasn&#8217;t as ruthless as he was in the movies. I guess they have to have a lot more killing in the movies to keep folks interested, and it could have been the time when the book was written, 1953. If you are a James Bond fan,<br />
I recommend checking out the books.</p>
<p>Next book is an actual paperback, also a gift, titled <a href="http://www.amazon.com/gp/aw/d/1449302440/ref=mp_s_a_1?qid=1360251424&amp;sr=8-1&amp;pi=SL75">&#8220;Team Geek A Software Developer&#8217;s Guide to Working Well with Others&#8221;</a> so far so good. It&#8217;s quite entertaining.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1948/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1948/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1948&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2013/02/07/first-book-of-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
		<item>
		<title>Apply github pull requests as patches</title>
		<link>http://zeusville.wordpress.com/2013/02/01/apply-github-pull-requests-as-patches/</link>
		<comments>http://zeusville.wordpress.com/2013/02/01/apply-github-pull-requests-as-patches/#comments</comments>
		<pubDate>Fri, 01 Feb 2013 16:35:19 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1938</guid>
		<description><![CDATA[Our team uses Github&#8217;s pull requests as a code review process, which requires a fair number of requests that need to be tested. Github has a really cool feature where if you put the .patch extension to the url it will show you a diff that can be passed to git am. So given a [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1938&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="https://github.com/candlepin/">Our team</a> uses Github&#8217;s <a href="https://help.github.com/articles/using-pull-requests">pull requests</a> as a code review process, which requires a fair number of requests that need to be tested. Github has a <a href="https://help.github.com/articles/using-pull-requests#merging-a-pull-request">really cool feature</a> where if you put the <code>.patch</code> extension to the url it will show you a diff that can be passed to <code>git am</code>.</p>
<p>So given a pull request 162 (<a href="https://github.com/candlepin/candlepin/pull/162">https://github.com/candlepin/candlepin/pull/162</a>) you can use <code>curl</code> to download the patch and then pipe it to <code>git am</code>. Once you&#8217;re done reviewing, simply revert your branch back using <code>git reset --hard origin/master</code>.</p>
<p>I added some functions to my <code>.bashrc</code> for the projects I review most often, here&#8217;s the snippet:</p>
<pre>
# apply the given pull request from the given project as a patch
# arg: project (i.e. candlepin/subscription-manager/etc
# arg: pull request number
__github ()
{
    curl https://github.com/candlepin/$1/pull/$2.patch | git am
}

# apply the given pull request for candlepin
# arg: pull request number
cppull ()
{
    __github "candlepin" $1
}

# apply the given pull request for subscription-manager
# arg: pull request number
submanpull ()
{
    __github "subscription-manager" $1
}
</pre>
<h3>Summary</h3>
<ul>
<li><code>curl <a href="https://github.com/candlepin/candlepin/162.patch" rel="nofollow">https://github.com/candlepin/candlepin/162.patch</a> | git am</code></li>
<li>TEST PATCH</li>
<li><code>git reset --hard origin/master</code></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1938/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1938&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2013/02/01/apply-github-pull-requests-as-patches/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
		<item>
		<title>I&#8217;m sick of the gun debates</title>
		<link>http://zeusville.wordpress.com/2013/01/11/im-sick-of-the-gun-debates/</link>
		<comments>http://zeusville.wordpress.com/2013/01/11/im-sick-of-the-gun-debates/#comments</comments>
		<pubDate>Fri, 11 Jan 2013 05:14:30 +0000</pubDate>
		<dc:creator>jmrodri</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://zeusville.wordpress.com/?p=1936</guid>
		<description><![CDATA[Personally, I wish no one had guns but sadly that&#8217;s not reality. Given the second amendment, I understand why people want their guns, and I&#8217;m ok with them owning some: pistols, rifles, even shotguns. Now I don&#8217;t see any reason to own AR-15 type rifles. I hear many gun owners whine about losing their guns, [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1936&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Personally, I wish no one had guns but sadly that&#8217;s not reality. Given the second amendment, I understand why people want their guns, and I&#8217;m ok with them owning some: pistols, rifles, even shotguns. Now I don&#8217;t see any reason to own AR-15 type rifles.</p>
<p>I hear many gun owners whine about losing their guns, as if an assault weapon ban would actually remove <strong>ALL</strong> of their guns. Fear not you&#8217;ll get to keep some.</p>
<p>The &#8216;guns don&#8217;t kill people, people do&#8217; arguments are annoying too. Usually followed with arguments that cars can kill people, hammers are weapons too. But what these other items have in common is they ALL have real alternatives uses, i.e. a car is meant to transport people from one place to another, a hammer is meant to bang a nail in. You know what doesn&#8217;t have an alternative purpose? <strong>GUNS</strong>. You know what they&#8217;re meant for? <strong>TO KILL SOMETHING</strong>.</p>
<p>Another argument that drives me nuts are hunters. &#8216;Oh I need my guns to hunt&#8217;. Ok you can have your rifle, but you don&#8217;t need an AR-15 to hunt. Unless you just want to kill something and shred it. Besides if you&#8217;re a real hunter you&#8217;d be out there with a bow or hell hunt that animal with a spear and a knife.</p>
<p>And recently there was this video of a 911 call where a wife defends herself with a gun. Again, no one is trying to take ALL of your guns away. So that&#8217;s not really a good example of why we need guns. Besides for every example of someone defending themselves with a gun, there are 10 other examples of DEATHs.</p>
<p>And why doesn&#8217;t anyone that quotes the second amendment ever include the first part of it &#8220;A well regulated militia,&#8221;?</p>
<p>I will agree with my gun toting friends that gun control isn&#8217;t the only answer, and that mental illness and other factors need to be looked into. But unlike them, I still think we need gun control, specifically bans on assault weapons like the AR-15.</p>
<p>&lt;/rant&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zeusville.wordpress.com/1936/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zeusville.wordpress.com/1936/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zeusville.wordpress.com&#038;blog=419120&#038;post=1936&#038;subd=zeusville&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://zeusville.wordpress.com/2013/01/11/im-sick-of-the-gun-debates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/9b8b8a3f02a847f77a37ff41fc510ce6?s=96&#38;d=&#38;r=PG" medium="image">
			<media:title type="html">jmrodri</media:title>
		</media:content>
	</item>
	</channel>
</rss>
