<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ianneubert.com</title>
	
	<link>http://www.ianneubert.com/wp</link>
	<description>the official &lt;b&gt;blog&lt;/b&gt; for &lt;i&gt;everything&lt;/i&gt; ian</description>
	<lastBuildDate>Wed, 14 Jul 2010 20:25:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ianneubert" /><feedburner:info uri="ianneubert" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Use SSH to get tail of log file</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/HdWDeJqpaXw/</link>
		<comments>http://www.ianneubert.com/wp/2010/07/14/use-ssh-to-get-tail-of-log-file/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 17:40:33 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=474</guid>
		<description><![CDATA[Ever wanted to take the last 1000 lines of a log file from your remote server and then copy that to your local machine to use in a nicer text editor? Now you can! This single command will grab the last X lines from a remote file, remove any ANSI color codes, and then compress [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to take the last 1000 lines of a log file from your remote server and then copy that to your local machine to use in a nicer text editor?</p>
<p>Now you can! This single command will grab the last X lines from a remote file, remove any ANSI color codes, and then compress the output right on to your local computer.</p>
<p>Just replace the green text with your information and you&#8217;re all set.</p>
<p><code>ssh <span style="color: #008000;">username</span>@<span style="color: #008000;">my.server.com</span> "tail -n <span style="color: #008000;">3000</span> <span style="color: #008000;">/var/log/mylogfile.log</span> | sed -r 's/\x1B\[([0-9]{1,3}((;[0-9]{1,3})*)?)?[m|K]//g' | bzip2" &gt; <span style="color: #008000;">/my/local/file.log.bz2</span></code></p>
<p>The log will be trimmed, cleaned, and compressed all on the remote server before transport.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=HdWDeJqpaXw:bJJGx7gBT9o:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=HdWDeJqpaXw:bJJGx7gBT9o:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=HdWDeJqpaXw:bJJGx7gBT9o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=HdWDeJqpaXw:bJJGx7gBT9o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=HdWDeJqpaXw:bJJGx7gBT9o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=HdWDeJqpaXw:bJJGx7gBT9o:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=HdWDeJqpaXw:bJJGx7gBT9o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2010/07/14/use-ssh-to-get-tail-of-log-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2010/07/14/use-ssh-to-get-tail-of-log-file/</feedburner:origLink></item>
		<item>
		<title>Ruby RVM Rocks!</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/1T-QsG5sonA/</link>
		<comments>http://www.ianneubert.com/wp/2010/04/23/ruby-rvm-rocks/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 15:14:03 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=465</guid>
		<description><![CDATA[I just now got around to installing RVM on my Mac. I wish I had done it a lot sooner! RVM let&#8217;s you install multiple Ruby versions side by side. You can easily install a new ruby version just by typing: rvm install ruby-1.8.7-p160 or rvm install 1.9.2-preview1 And you can quickly switch between versions [...]]]></description>
			<content:encoded><![CDATA[<p>I just now got around to installing <a href="http://rvm.beginrescueend.com/">RVM</a> on my Mac. I wish I had done it a lot sooner!</p>
<p>RVM let&#8217;s you install multiple Ruby versions side by side. You can easily install a new ruby version just by typing:</p>
<pre><code>rvm install ruby-1.8.7-p160</code></pre>
<p>or</p>
<pre><code>rvm install 1.9.2-preview1</code></pre>
<p>And you can quickly switch between versions by typing this:</p>
<pre><code>rvm ruby-1.8.7-p249</code></pre>
<p>Note that you will need to install gems independantly in each of your ruby environments. But they make it easy with <a href="http://rvm.beginrescueend.com/gemsets/basics/">gemsets</a>. Also note, that if you want to preserve your custom ENV settings on your Mac, you should place the bash source line into your .profile file and not to .bashrc as it notes.</p>
<p>Have fun!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=1T-QsG5sonA:SOJ4lGpyn98:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=1T-QsG5sonA:SOJ4lGpyn98:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=1T-QsG5sonA:SOJ4lGpyn98:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=1T-QsG5sonA:SOJ4lGpyn98:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=1T-QsG5sonA:SOJ4lGpyn98:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=1T-QsG5sonA:SOJ4lGpyn98:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=1T-QsG5sonA:SOJ4lGpyn98:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2010/04/23/ruby-rvm-rocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2010/04/23/ruby-rvm-rocks/</feedburner:origLink></item>
		<item>
		<title>Holy Optimizations Batman!</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/lEL39myVB5s/</link>
		<comments>http://www.ianneubert.com/wp/2010/02/20/holy-optimizations-batman/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 20:09:27 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=461</guid>
		<description><![CDATA[I previously published a Ruby script that essentially duplicates an Amazon S3 bucket. I use it to copy my production bucket into a testing bucket that I can then use in my staging environment, without fear of killing off something important. Hydra, the multithreaded fire breather Anyway, this script used to take around 18 minutes [...]]]></description>
			<content:encoded><![CDATA[<p>I <a href="http://www.ianneubert.com/wp/2009/02/03/s3-ruby-tools/">previously published</a> a <a href="http://github.com/ianneub/aws_ruby_tools/blob/master/duplicate_bucket.rb">Ruby script</a> that essentially duplicates an Amazon S3 bucket. I use it to copy my production bucket into a testing bucket that I can then use in my staging environment, without fear of killing off something important.</p>
<div class="mceTemp mceIEcenter">
<dl id="attachment_462" class="wp-caption aligncenter" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://www.ianneubert.com/wp/wp-content/uploads/2010/02/Hydra.jpg"><img class="size-medium wp-image-462" title="Hydra" src="http://www.ianneubert.com/wp/wp-content/uploads/2010/02/Hydra-300x199.jpg" alt="Hydra, the multithreaded fire breather" width="300" height="199" /></a></dt>
<dd class="wp-caption-dd">Hydra, the multithreaded  fire breather</dd>
</dl>
</div>
<p>Anyway, this script used to take around 18 minutes to complete a full copy of a bucket with about 2,000 keys. What a pain when I had to run this script multiple times for some testing!</p>
<p>So I finally got around to rewriting it today, and wow, what an improvement!</p>
<p>I upgraded the delete and copy operations to run multithreaded, and boy does it fly.</p>
<p>On my main bucket (with about 2,000 keys) it now only takes about <strong>1.5 minutes</strong> to complete! That&#8217;s <strong>12x faster</strong> than it used to be!</p>
<p>So if you are looking for a multithreaded Amazon S3 bucket copier or duplicator, <a href="http://github.com/ianneub/aws_ruby_tools/blob/master/duplicate_bucket.rb">check it out</a>!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=lEL39myVB5s:ai9XTNKbvDM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=lEL39myVB5s:ai9XTNKbvDM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=lEL39myVB5s:ai9XTNKbvDM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=lEL39myVB5s:ai9XTNKbvDM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=lEL39myVB5s:ai9XTNKbvDM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=lEL39myVB5s:ai9XTNKbvDM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=lEL39myVB5s:ai9XTNKbvDM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2010/02/20/holy-optimizations-batman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2010/02/20/holy-optimizations-batman/</feedburner:origLink></item>
		<item>
		<title>New rubygem: ianneub-right_aws</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/buULEatDkPA/</link>
		<comments>http://www.ianneubert.com/wp/2009/04/07/new-rubygem-ianneub-right_aws/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 17:52:10 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=420</guid>
		<description><![CDATA[Continuing my new trend of publishing code that I use, I&#8217;ve released a new fork of RightScale&#8217;s right_aws ruby gem. This gem makes accessing Amazon&#8217;s S3, EC2, and other web services a piece of cake through ruby. One problem with (at least) the latest release of right_aws is that it tries to connect to the [...]]]></description>
			<content:encoded><![CDATA[<p>Continuing my new trend of publishing code that I use, I&#8217;ve released a new fork of <a href="http://www.rightscale.com">RightScale&#8217;s</a> <a href="http://rightscale.rubyforge.org/">right_aws</a> ruby gem. This gem makes accessing Amazon&#8217;s S3, EC2, and other web services a piece of cake through ruby.</p>
<p>One problem with (at least) the latest release of right_aws is that it tries to connect to the Amazon API at the bucket_name.s3.amazonaws.com. This causes the connections to the API to thrash when you are working with more than one bucket. I&#8217;ve taken out the code that makes that connection so that it will now only connect to s3.amazonaws.com/bucket_name by default.</p>
<p>You can find the code on <a href="http://github.com/ianneub/right_aws/tree">GitHub</a>. And see extra documentaion <a href="http://wiki.github.com/ianneub/right_aws">here</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=buULEatDkPA:LPOuR-oLvLQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=buULEatDkPA:LPOuR-oLvLQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=buULEatDkPA:LPOuR-oLvLQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=buULEatDkPA:LPOuR-oLvLQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=buULEatDkPA:LPOuR-oLvLQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=buULEatDkPA:LPOuR-oLvLQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=buULEatDkPA:LPOuR-oLvLQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2009/04/07/new-rubygem-ianneub-right_aws/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2009/04/07/new-rubygem-ianneub-right_aws/</feedburner:origLink></item>
		<item>
		<title>Microsoft / Xbox Live customer service call</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/4UgYeA7KigA/</link>
		<comments>http://www.ianneubert.com/wp/2009/03/03/microsoft-xbox-live-customer-service-call/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 01:05:26 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=417</guid>
		<description><![CDATA[I just had a funny call to Microsoft, well to Xbox.com support, that really just gives some insight into what Microsoft culture is like. So what I want to do is stop having them automatically renew my credit card for Xbox Live Gold Service ($49.99/yr). I go to their website and poke around the account [...]]]></description>
			<content:encoded><![CDATA[<p>I just had a funny call to Microsoft, well to Xbox.com support, that really just gives some insight into what Microsoft culture is like.</p>
<p>So what I want to do is stop having them automatically renew my credit card for Xbox Live Gold Service ($49.99/yr). I go to their website and poke around the account settings page, and come to find out that I can&#8217;t do that online, I have to call and talk to someone. Fine.</p>
<p>I call Xbox Live at 800-469-9269 and go their voice menu prompt system and choose the &#8220;Accounts &amp; Billing&#8221; -&gt; &#8220;Other account questions&#8221;. Apparently I went to the wrong place. After explaining what I wanted to do the CSR said I had to be transfered, I guess I <em>am</em> cancelling my subscription, instead of just turning off auto renew.</p>
<p>The first problem started here, it wasn&#8217;t too obvious where I needed to go in their menu system. The second problem was immeadate: the CSR asked me to verify my account information, screen name, email, address, phone, last 4 digits on my credit card.</p>
<p>He then transfers me to the billing who procedes to ask me the same questions again&#8230; waste of time there. <em>Starting to get annoyed.</em></p>
<p>Now after I explain again that I want to stop the auto billing &#8220;feature&#8221;, he asks me if he can give me some Microsoft points to keep my subscription. <em>Further annoyed.</em></p>
<p>I say no, that I don&#8217;t want to have my card auto billed. So he asks me why I want to stop the auto renewal, and I reply that its more than $20 cheaper to buy the Xbox Live Gold Cards then to have them auto charge my card.</p>
<p>So he suggests that I reduce my plan to the $7.99/mo plan because it is less expensive. Ugh! I just want to stop the dang auto renewal. So by this point <em>I&#8217;m over it</em>, I ask him to just remove my auto renew plan and be done with it.</p>
<p>About time. By the way, that wasted 15 minutes of time. Add another 10 minutes for this rant.</p>
<p>Thank you Microsoft! If that had been Apple or some other customer focused company I could have done the whole thing online in 30  seconds.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=4UgYeA7KigA:7SyTdXKzAdw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=4UgYeA7KigA:7SyTdXKzAdw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=4UgYeA7KigA:7SyTdXKzAdw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=4UgYeA7KigA:7SyTdXKzAdw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=4UgYeA7KigA:7SyTdXKzAdw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=4UgYeA7KigA:7SyTdXKzAdw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=4UgYeA7KigA:7SyTdXKzAdw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2009/03/03/microsoft-xbox-live-customer-service-call/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2009/03/03/microsoft-xbox-live-customer-service-call/</feedburner:origLink></item>
		<item>
		<title>S3 Ruby Tools</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/xFdjvnMPgIk/</link>
		<comments>http://www.ianneubert.com/wp/2009/02/03/s3-ruby-tools/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 22:03:07 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=409</guid>
		<description><![CDATA[I just published some more code on github today. This new repo contains some ruby code that I use to manipulate my Amazon S3 buckets. Right now there are just two simple scripts, one deletes a whole bucket, the other copies everything from one bucket to another, with an optional prefix to limit what is [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I just published some more <a href="http://github.com/ianneub/s3_ruby_tools/tree/master">code on github</a> today. This new repo contains some ruby code that I use to manipulate my <a href="http://aws.amazon.com/s3/">Amazon S3</a> buckets.</p>
<p>Right now there are just two simple scripts, one deletes a whole bucket, the other copies everything from one bucket to another, with an optional prefix to limit what is copied.</p>
<p>I&#8217;ve been using these scripts for a few months now, they are very stable and do some basic error handling.</p>
<p>Here is the <a href="http://github.com/ianneub/s3_ruby_tools/blob/master/README.markdown">README file</a>.<img class="size-medium wp-image-414 aligncenter" title="AWS Logo" src="http://www.ianneubert.com/wp/wp-content/uploads/2009/02/pbaws_logo_300px.jpg" alt="AWS Logo" width="300" height="122" /></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=xFdjvnMPgIk:NbZhFmdVxKo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=xFdjvnMPgIk:NbZhFmdVxKo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=xFdjvnMPgIk:NbZhFmdVxKo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=xFdjvnMPgIk:NbZhFmdVxKo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=xFdjvnMPgIk:NbZhFmdVxKo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=xFdjvnMPgIk:NbZhFmdVxKo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=xFdjvnMPgIk:NbZhFmdVxKo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2009/02/03/s3-ruby-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2009/02/03/s3-ruby-tools/</feedburner:origLink></item>
		<item>
		<title>My message to President Obama</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/7Hh_C5BeqI0/</link>
		<comments>http://www.ianneubert.com/wp/2009/01/23/my-message-to-president-obama/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 17:51:20 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=403</guid>
		<description><![CDATA[Not that it will do anything, but I&#8217;m learning that you can&#8217;t just sit on the sidelines&#8230; I think that it is extremely wrong to support those groups supporting abortion with my taxpayer money. I am strongly opposed to abortion as it is the destruction of potential human life. I do not want my money [...]]]></description>
			<content:encoded><![CDATA[<p>Not that it will do anything, but I&#8217;m learning that you can&#8217;t just sit on the sidelines&#8230;</p>
<blockquote><p>I think that it is extremely wrong to support those groups supporting abortion with my taxpayer money. I am strongly opposed to abortion as it is the destruction of potential human life. I do not want my money wasted on groups or organizations that will suggest, tolerate, or engage in this disregard for human life.</p></blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=7Hh_C5BeqI0:Hakl3ssvnOU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=7Hh_C5BeqI0:Hakl3ssvnOU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=7Hh_C5BeqI0:Hakl3ssvnOU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=7Hh_C5BeqI0:Hakl3ssvnOU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=7Hh_C5BeqI0:Hakl3ssvnOU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=7Hh_C5BeqI0:Hakl3ssvnOU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=7Hh_C5BeqI0:Hakl3ssvnOU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2009/01/23/my-message-to-president-obama/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2009/01/23/my-message-to-president-obama/</feedburner:origLink></item>
		<item>
		<title>Leap Second!</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/WPg9z6kkN2Q/</link>
		<comments>http://www.ianneubert.com/wp/2008/12/31/leap-second/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 00:29:42 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=401</guid>
		<description><![CDATA[In case you missed the leap second today, here is a YouTube video from the Eastern Time Zone: Here are some links to more info about leap seconds: NIST USNO Wikipedia]]></description>
			<content:encoded><![CDATA[<p>In case you missed the leap second today, here is a YouTube video from the Eastern Time Zone:<br />
<object width="425" height="344" data="http://www.youtube.com/v/rld1tmOi4fs&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/rld1tmOi4fs&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<p>Here are some links to more info about leap seconds:</p>
<ul>
<li><a href="http://tf.nist.gov/timefreq/pubs/bulletin/leapsecond.htm">NIST</a></li>
<li><a href="http://tycho.usno.navy.mil/leapsec.html">USNO</a></li>
<li><a href="http://en.wikipedia.org/wiki/Leap_second">Wikipedia</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=WPg9z6kkN2Q:CsSDum5_Ezw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=WPg9z6kkN2Q:CsSDum5_Ezw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=WPg9z6kkN2Q:CsSDum5_Ezw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=WPg9z6kkN2Q:CsSDum5_Ezw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=WPg9z6kkN2Q:CsSDum5_Ezw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=WPg9z6kkN2Q:CsSDum5_Ezw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=WPg9z6kkN2Q:CsSDum5_Ezw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2008/12/31/leap-second/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2008/12/31/leap-second/</feedburner:origLink></item>
		<item>
		<title>New Xbox 360 Experience mini-review</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/4sfbHmTm8f0/</link>
		<comments>http://www.ianneubert.com/wp/2008/11/20/new-xbox-360-experience-mini-review/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 18:24:46 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=355</guid>
		<description><![CDATA[The new Xbox 360 Experience was released yesterday and I got to spend a little bit of time playing with it. Overall I think the new look is OK, but it seems harder to get to important things like the DVD tray and XBL profile information. In place of that easy access are a bunch [...]]]></description>
			<content:encoded><![CDATA[<p>The new Xbox 360 Experience was released yesterday and I got to spend a little bit of time playing with it. Overall I think the new look is OK, but it seems harder to get to important things like the DVD tray and XBL profile information. In place of that easy access are a bunch of ads trying to peddle marketplace wares. Pretty crappy trade off.</p>
<p>Don&#8217;t get me started about how lame the new avatar system is either. In a blatant ripoff of the Wii&#8217;s Mii feature, the 360 now makes us setup an avatar to be associated with our XBL account. If I wanted to play a cutesie, made-for-4th-graders console I&#8217;d had bought a Wii already.</p>
<div class="wp-caption aligncenter" style="width: 160px"><img title="IANster Xbox 360 avatar" src="http://avatar.xboxlive.com/avatar/IANster/avatar-body.png" alt="IANsters Xbox 360 avatar" width="150" height="300" /><p class="wp-caption-text">IANster&#39;s Xbox 360 avatar</p></div>
<p>The only thing that saves the new Xbox 360 Experience from being a total waste is that we can now stream Netflix Watch Instantly content to our 360. I tested this with a couple of different shows and had mixed results. First I watched the movie <a href="http://www.netflix.com/WiMovie/Enchanted/70060014?trkid=226890">Enchanted</a>, and was disappointed to see that it was presented in 4:3 Full Screen mode, and was only in 2 channel stereo. Yuck. The second title I watched was the first episode of <a href="http://www.netflix.com/WiMovie/Jericho_Season_1_Pilot/70107773?trkid=226889">Jericho</a>. Thankfully this was at least in wide screen, but again it was only in 2 channel stereo. Both titles were noticeably compressed and looked worse than even watching them on a bad satellite TV channel.</p>
<p>While this probably isn&#8217;t the fault of the Xbox 360 or Microsoft, it still isn&#8217;t the best experience, and I doubt that I will be paying for XBL Gold Membership if this is the only feature worth using and it remains half-baked.</p>
<p>UPDATE: Here is more info on the <a href="http://blog.netflix.com/2008/11/encoding-for-streaming.html">Netflix stream encoding process</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=4sfbHmTm8f0:4OQhbXKlfBg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=4sfbHmTm8f0:4OQhbXKlfBg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=4sfbHmTm8f0:4OQhbXKlfBg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=4sfbHmTm8f0:4OQhbXKlfBg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=4sfbHmTm8f0:4OQhbXKlfBg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=4sfbHmTm8f0:4OQhbXKlfBg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=4sfbHmTm8f0:4OQhbXKlfBg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2008/11/20/new-xbox-360-experience-mini-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2008/11/20/new-xbox-360-experience-mini-review/</feedburner:origLink></item>
		<item>
		<title>Earthquake Drill – SoCal Shake Out</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/a_lIOsBeDuA/</link>
		<comments>http://www.ianneubert.com/wp/2008/11/13/earthquake-drill-socal-shake-out/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 18:08:28 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=349</guid>
		<description><![CDATA[I just participated in the great Southern California Shake Out earthquake drill. It might seem lame to be an adult practicing duck, cover, and hold, but I think it was a good thing. I found a large, heavy, set of drawers next to my desk that is on rollers. I&#8217;d bet that it would be [...]]]></description>
			<content:encoded><![CDATA[<p>I just participated in the great <a href="http://www.shakeout.org">Southern California Shake Out</a> earthquake drill. It might seem lame to be an adult practicing duck, cover, and hold, but I think it was a good thing. I found a large, heavy, set of drawers next to my desk that is on rollers. I&#8217;d bet that it would be moving around during a large earthquake and could be a big potential hazard.</p>
<p>So if you haven&#8217;t practiced duck, cover, and hold since you were in school. Now might be a good time. You might also want to checkout your overall emergency preparedness plan.</p>
<p style="text-align: center;"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/opXZY1zZ8xk&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/opXZY1zZ8xk&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=a_lIOsBeDuA:NS2XiMpnmXY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=a_lIOsBeDuA:NS2XiMpnmXY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=a_lIOsBeDuA:NS2XiMpnmXY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=a_lIOsBeDuA:NS2XiMpnmXY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=a_lIOsBeDuA:NS2XiMpnmXY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=a_lIOsBeDuA:NS2XiMpnmXY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=a_lIOsBeDuA:NS2XiMpnmXY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2008/11/13/earthquake-drill-socal-shake-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2008/11/13/earthquake-drill-socal-shake-out/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.230 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-14 12:25:53 -->
