<?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>Eric Mason &#187; Personal</title>
	<atom:link href="http://ericmason.net/category/personal/feed/" rel="self" type="application/rss+xml" />
	<link>http://ericmason.net</link>
	<description>From Fort Lauderdale, Ruby, Linux, Photography, and Random Things</description>
	<lastBuildDate>Tue, 15 Nov 2011 20:22:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>VOIP Routing for Non-US, 10-Digit NANPA Numbers in Asterisk</title>
		<link>http://ericmason.net/2011/07/voip-routing-for-non-us-10-digit-nanpa-numbers-in-asterisk/</link>
		<comments>http://ericmason.net/2011/07/voip-routing-for-non-us-10-digit-nanpa-numbers-in-asterisk/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 16:08:10 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://ericmason.net/?p=182</guid>
		<description><![CDATA[I got my AT&#38;T bill this morning with $150 in long distance charges for calls to Canada. After cursing AT&#38;T under my breath I resolved not to let this happen again.  Knowing AT&#38;T charges exorbitant rates for international calls ($1.39/minute to Canada? &#8230; <a href="http://ericmason.net/2011/07/voip-routing-for-non-us-10-digit-nanpa-numbers-in-asterisk/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I got my AT&amp;T bill this morning with $150 in long distance charges for calls to Canada. After cursing AT&amp;T under my breath I resolved not to let this happen again.  Knowing AT&amp;T charges exorbitant rates for international calls ($1.39/minute to Canada? Really?) I have international calls set to route through a <a href="http://vitelity.net">VOIP provider</a> where I pay 1.39 CENTS to call Canada and the rest of the developed world.  As soon as you hit 011 on our phone system you&#8217;re automatically routed to VOIP.  The problem is, thanks to <a href="http://www.nanpa.com/">NANPA</a>, Canadian phone numbers, and some islands in the Caribbean, look just like US numbers, 1-XXX-XXX-XXXX, but charge like you&#8217;re calling Iran.  What to do?<span id="more-182"></span></p>
<p>There doesn&#8217;t seem to be any easy way to detect an international number within NANPA other than to make a list of the international area codes, so that&#8217;s what I did.  Based on <a href="http://www.allareacodes.com/canadian_area_codes.htm">this</a> and <a href="http://en.wikipedia.org/wiki/North_American_Numbering_Plan">this</a> I wrote a quick snippet of Ruby code to generate my dialplan rules:</p>
<pre class="brush: ruby; title: ; notranslate">
# Canada
codes = %w{204 250 289 306 403 416 418 450 506 514 519 604 613 647 705 709 778 780 807 819 867 902 905}
# Islands
codes += %w{809 441 787 939 340 670 671 684 599 721}
codes.each {|code| puts &quot;exten = _#{code}XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})\nexten = _1#{code}XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})&quot;};
</pre>
<p>I have my phone system set up to let me dial 10 digit numbers either with or without the initial 1, so there are two entries for each area code.  Here&#8217;s the result.</p>
<pre class="brush: plain; title: ; notranslate">
exten = _204XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1204XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _250XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1250XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _289XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1289XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _306XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1306XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _403XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1403XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _416XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1416XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _418XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1418XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _450XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1450XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _506XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1506XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _514XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1514XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _519XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1519XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _604XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1604XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _613XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1613XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _647XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1647XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _705XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1705XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _709XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1709XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _778XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1778XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _780XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1780XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _807XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1807XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _819XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1819XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _867XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1867XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _902XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1902XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _905XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1905XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _809XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1809XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _441XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1441XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _787XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1787XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _939XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1939XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _340XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1340XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _670XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1670XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _671XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1671XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _684XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1684XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _599XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1599XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
exten = _721XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN})
exten = _1721XXXXXXX,1,Macro(trunkdial,${Vitelity}/${EXTEN:1})
</pre>
<p>Now my calls to Canada and the islands go through the VOIP provider <a href="http://www.vitelity.net/">Vitelity</a>, where I pay 1/100 as much as I did with AT&amp;T.  Decent savings for adding a few entries to extensions.conf.</p>
<p>&nbsp;</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://ericmason.net/2011/07/voip-routing-for-non-us-10-digit-nanpa-numbers-in-asterisk/&via=ericmason&text=VOIP Routing for Non-US, 10-Digit NANPA Numbers in Asterisk&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://ericmason.net/2011/07/voip-routing-for-non-us-10-digit-nanpa-numbers-in-asterisk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Word Template for Window Envelopes</title>
		<link>http://ericmason.net/2010/12/microsoft-word-template-for-window-envelopes/</link>
		<comments>http://ericmason.net/2010/12/microsoft-word-template-for-window-envelopes/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 16:24:42 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://ericmason.net/?p=165</guid>
		<description><![CDATA[Here is a template for Word that will put the addresses in the right place when printed and placed in a #10 window envelope.  Here&#8217;s how to use it: Enter your return address and the recipient&#8217;s address in the boxes &#8230; <a href="http://ericmason.net/2010/12/microsoft-word-template-for-window-envelopes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is a template for Word that will put the addresses in the right place when printed and placed in a #10 window envelope.  Here&#8217;s how to use it:</p>
<ol>
<li>Enter your return address and the recipient&#8217;s address in the boxes at the top of the page.  Be sure to keep the address within the boxes.</li>
<li>Write your letter and print it.</li>
<li>Fold the letter along the line on the right side of the first page.  This will make sure that the folded letter is large enough so it doesn&#8217;t slide around in the envelope and move the addresses out of the windows.</li>
</ol>
<p><a href="http://ericmason.net/files/Letter_No10_Envelope.dotx">Download the template for Word 2007</a></p>
<p>Update: <a href="http://ericmason.net/files/Letter_No10_Envelope.dot">Letter_No10_Envelope.dot</a> &#8211; Word 97-2003 version</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://ericmason.net/2010/12/microsoft-word-template-for-window-envelopes/&via=ericmason&text=Microsoft Word Template for Window Envelopes&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://ericmason.net/2010/12/microsoft-word-template-for-window-envelopes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FaceFeeder Turns Your Facebook News Feed Into an Atom Feed</title>
		<link>http://ericmason.net/2010/09/facefeeder-turns-your-facebook-news-feed-into-an-atom-feed/</link>
		<comments>http://ericmason.net/2010/09/facefeeder-turns-your-facebook-news-feed-into-an-atom-feed/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 18:52:37 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://ericmason.net/?p=160</guid>
		<description><![CDATA[Here it is, my first Google App:  FaceFeeder.  I thought it would be nice to be able to see my Facebook news feed in Google Reader and there didn&#8217;t seem to be any way to do it, so I wrote &#8230; <a href="http://ericmason.net/2010/09/facefeeder-turns-your-facebook-news-feed-into-an-atom-feed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here it is, my first Google App:  FaceFeeder.  I thought it would be nice to be able to see my Facebook news feed in <a href="http://reader.google.com/">Google Reader</a> and there didn&#8217;t seem to be any way to do it, so I wrote a quick application called <a href="http://facefeeder.appspot.com/">FaceFeeder</a>.</p>
<p>FaceFeeder &#8211; <a href="http://facefeeder.appspot.com/">Turn your Facebook news feed into an Atom feed.</a></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://ericmason.net/2010/09/facefeeder-turns-your-facebook-news-feed-into-an-atom-feed/&via=ericmason&text=FaceFeeder Turns Your Facebook News Feed Into an Atom Feed&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://ericmason.net/2010/09/facefeeder-turns-your-facebook-news-feed-into-an-atom-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Problem with eFax</title>
		<link>http://ericmason.net/2010/05/efax-is-crap/</link>
		<comments>http://ericmason.net/2010/05/efax-is-crap/#comments</comments>
		<pubDate>Thu, 13 May 2010 19:53:36 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://ericmason.net/?p=154</guid>
		<description><![CDATA[Maybe I&#8217;m the last person to find this out, but just in case you&#8217;re about to go through the hassle of signing up for eFax, let me save you the trouble.  eFax is crap! Here&#8217;s why: Faxes Forced to be &#8230; <a href="http://ericmason.net/2010/05/efax-is-crap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Maybe I&#8217;m the last person to find this out, but just in case you&#8217;re about to go through the hassle of signing up for eFax, let me save you the trouble.  <strong>eFax is crap!</strong> Here&#8217;s why:</p>
<h3>Faxes Forced to be Included in Emails</h3>
<p>There&#8217;s no way to have eFax just notify you of an incoming fax.  They HAVE to send you the whole fax as an attachment.  What if you&#8217;re receiving a credit card number in a fax? Well tough luck, it&#8217;s getting sent unencrypted.</p>
<h3>Bad Customer Service</h3>
<p>eFax won&#8217;t help you with most customer service issues on the phone.  Instead, they expect you to use their online chat.  And the reps are very slow and unhelpful.  When you try to cancel your account, they make you go through a long survey and your account won&#8217;t be canceled until you fully answer all their questions.  And forget about getting a refund for unused service.  If your account just renewed for a year (with no notice) and you try to cancel, too bad, you&#8217;re not getting your money back.</p>
<h3>Can&#8217;t Keep Your Number</h3>
<p>You put your fax number on your business cards, on your website, in your email signature, maybe company letterhead, etc.   For whatever reason, maybe one the ones listed here, you decide to switch from eFax.  Get your credit card out, because you&#8217;re going to need new business cards.  eFax&#8217;s customer agreement says</p>
<blockquote><p>YOU FURTHER UNDERSTAND AND AGREE THAT <strong>YOU ARE NOT THE OWNER OF ANY eFAX NUMBER ASSIGNED TO YOU BY j2 GLOBAL</strong> &#8230;<strong> YOU ARE EXPRESSLY PROHIBITED</strong> FROM CAUSING OR ATTEMPTING TO CAUSE THE eFAX NUMBER ASSIGNED TO YOUR ACCOUNT TO BE TRANSFERRED TO ANY OTHER SERVICE PROVIDER, TELEPHONE CARRIER OR ANY OTHER PERSON OR ENTITY (ALSO SOMETIMES REFERRED TO AS “PORTING” THE TELEPHONE NUMBER). IN THE EVENT YOU ARE FOUND TO HAVE VIOLATED THIS PROHIBITION <strong>YOU AGREE TO IMMEDIATELY RETURN THE NUMBER TO j2 GLOBAL AND PAY TO j2 GLOBAL AN AMOUNT EQUAL TO $500 </strong>(OR THE EQUIVALENT IN LOCAL CURRENCY). YOU AUTHORIZE j2 GLOBAL TO CHARGE YOUR ACCOUNT CREDIT CARD OR TAKE ANY OTHER MEASURES REQUIRED TO COLLECT THIS PAYMENT.</p></blockquote>
<p>Other than that, eFax is OK.  :)</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://ericmason.net/2010/05/efax-is-crap/&via=ericmason&text=The Problem with eFax&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://ericmason.net/2010/05/efax-is-crap/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Got my Canon Rebel T2i &#8211; and VigLink</title>
		<link>http://ericmason.net/2010/05/got-my-canon-rebel-t2i-and-viglink/</link>
		<comments>http://ericmason.net/2010/05/got-my-canon-rebel-t2i-and-viglink/#comments</comments>
		<pubDate>Thu, 13 May 2010 14:25:33 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://ericmason.net/?p=151</guid>
		<description><![CDATA[I caved and bought the Canon Rebel T2i with a 10% off coupon from Best Buy.  And I let them talk me into getting their 4 year accidental damage warranty for another $200.  Which actually seems like a pretty decent &#8230; <a href="http://ericmason.net/2010/05/got-my-canon-rebel-t2i-and-viglink/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I caved and bought the <a href="http://www.amazon.com/Canon-T2i-Digital-3-0-Inch-18-55mm/dp/B0035FZJHQ/ref=sr_1_1?ie=UTF8&amp;s=electronics&amp;qid=1273759922&amp;sr=1-1">Canon Rebel T2i</a> with a 10% off coupon from <a href="http://www.bestbuy.com/site/Canon+-+EOS+Rebel+T2i+18.0-Megapixel+Digital+SLR+Camera+-+Black/9778635.p?id=1218171770784&amp;skuId=9778635">Best Buy</a>.  And I let them talk me into getting their 4 year accidental damage warranty for another $200.  Which actually seems like a pretty decent deal.  Think they&#8217;ll cover whatever lens I have attached if it breaks?</p>
<div class="wp-caption alignnone" style="width: 510px"><a href="http://www.bhphotovideo.com/c/product/675617-REG/Canon_4462B001_Canon_EOS_Rebel_T2i.html"><img class=" " title="Canon Rebel T2i" src="http://farm5.static.flickr.com/4018/4345686051_caf59b120f.jpg" alt="" width="500" height="192" /></a><p class="wp-caption-text">credit: chris runoff (flickr)</p></div>
<p>So yes, this is kind of a random post, but it serves a purpose.  I&#8217;ve embedded links to Amazon, Best Buy, and <a href="http://www.bhphotovideo.com/">B&amp;H</a> to test out <a href="http://www.viglink.com/?vgref=2205">VigLink</a>, which is supposed to make all your links into affiliate links.  They take a 25% cut but claim they negotiate better affiliate commissions to make up for it.  Sounds like a win-win and maybe a better way for bloggers to make money, as long as they don&#8217;t start shamelessly promoting products with stealth affiliate links.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://ericmason.net/2010/05/got-my-canon-rebel-t2i-and-viglink/&via=ericmason&text=Got my Canon Rebel T2i - and VigLink&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://ericmason.net/2010/05/got-my-canon-rebel-t2i-and-viglink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting iPhone 3GS Videos to play on Samsung Blu-ray Player</title>
		<link>http://ericmason.net/2009/10/converting-iphone-3gs-videos-to-play-on-samsung-blu-ray-player/</link>
		<comments>http://ericmason.net/2009/10/converting-iphone-3gs-videos-to-play-on-samsung-blu-ray-player/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 01:21:10 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://ericmason.net/?p=135</guid>
		<description><![CDATA[Wow, the iPhone 3GS takes nice videos!  I recently made a quick video of Murphy at the dog park and noticed that it looks great even full-screen on my 20&#8243; monitor at work.  I was curious how it would look &#8230; <a href="http://ericmason.net/2009/10/converting-iphone-3gs-videos-to-play-on-samsung-blu-ray-player/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wow, the iPhone 3GS takes nice videos!  I recently made a quick video of Murphy at the dog park and noticed that it looks great even full-screen on my 20&#8243; monitor at work.  I was curious how it would look on TV, but my Samsung BD-P3600 didn&#8217;t like the .mov file the iPhone created.  Here&#8217;s how I converted it:</p>
<pre>ffmpeg -i IMG_0270.MOV -vcodec libxvid -aspect 4:3 -b 4000k -ab 128k mdog.avi</pre>
<p>You will need <a href="http://oss.netfarm.it/mplayer-win32.php">ffmpeg for Windows</a>.  I used <a style="color: #00a9ff; text-decoration: none; background-color: inherit;" href="http://sourceforge.net/project/showfiles.php?group_id=205275&amp;package_id=248632&amp;release_id=689227">FFmpeg svn rev 19159</a></p>
<p>By the way, here&#8217;s the video:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/iE4g9HTMUFY&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/iE4g9HTMUFY&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://ericmason.net/2009/10/converting-iphone-3gs-videos-to-play-on-samsung-blu-ray-player/&via=ericmason&text=Converting iPhone 3GS Videos to play on Samsung Blu-ray Player&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://ericmason.net/2009/10/converting-iphone-3gs-videos-to-play-on-samsung-blu-ray-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you have my iPod?</title>
		<link>http://ericmason.net/2009/08/do-you-have-my-ipod/</link>
		<comments>http://ericmason.net/2009/08/do-you-have-my-ipod/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 19:50:57 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://ericmason.net/?p=131</guid>
		<description><![CDATA[This is a message for the person who found my iPod Nano on an American Airlines plane in May, or otherwise ended up with it. Unless your name is also Eric Mason, you have to know it&#8217;s not yours, since &#8230; <a href="http://ericmason.net/2009/08/do-you-have-my-ipod/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a message for the person who found my iPod Nano on an American Airlines plane in May, or otherwise ended up with it.  Unless your name is also Eric Mason, you have to know it&#8217;s not yours, since it has &#8220;Eric Mason&#8221; engraved on the back of it.  Please leave a comment here if you have it.</p>
<p><a href="http://www.flickr.com/photos/somewhereinak/2888713917/"><img class="alignnone" src="http://farm4.static.flickr.com/3239/2888713917_fe1f4e2a2f.jpg" alt="" width="225" height="300" /></a></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://ericmason.net/2009/08/do-you-have-my-ipod/&via=ericmason&text=Do you have my iPod?&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://ericmason.net/2009/08/do-you-have-my-ipod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boot EC2 Instances from an EBS volume</title>
		<link>http://ericmason.net/2009/08/boot-ec2-instances-from-an-ebs-volume/</link>
		<comments>http://ericmason.net/2009/08/boot-ec2-instances-from-an-ebs-volume/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 14:17:48 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://ericmason.net/?p=129</guid>
		<description><![CDATA[Shlomo Swidler has a great writeup on booting an EC2 instance from an EBS drive. In my case I wanted to run our development server only during business hours, and possibly only when someone actually needs it.  This way we &#8230; <a href="http://ericmason.net/2009/08/boot-ec2-instances-from-an-ebs-volume/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Shlomo Swidler has a great <a href="http://clouddevelopertips.blogspot.com/2009/07/boot-ec2-instances-from-ebs.html">writeup on booting an EC2 instance from an EBS drive</a>.  In my case I wanted to run our development server only during business hours, and possibly only when someone actually needs it.  This way we can save both money and time by running a faster instance type (think Rails unit tests), but only for 1/3 of the time.  Since the EBS volume persists across instances, any software upgrades and configuration changes will persist as well.</p>
<p>I&#8217;ve been thinking I should figure this out for a while, but it seems Mr. Swidler figured it out for me.  Thanks!</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://ericmason.net/2009/08/boot-ec2-instances-from-an-ebs-volume/&via=ericmason&text=Boot EC2 Instances from an EBS volume&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://ericmason.net/2009/08/boot-ec2-instances-from-an-ebs-volume/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cape Cod</title>
		<link>http://ericmason.net/2009/07/cape-cod/</link>
		<comments>http://ericmason.net/2009/07/cape-cod/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 18:57:22 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://ericmason.net/2009/07/cape-cod/</guid>
		<description><![CDATA[Tweet]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/ericmason/sets/72157621217759965/"><img alt="" src="http://farm3.static.flickr.com/2596/3713193907_3855ba9008.jpg?v=0" class="alignnone" width="500" height="375" /></a></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://ericmason.net/2009/07/cape-cod/&via=ericmason&text=Cape Cod&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://ericmason.net/2009/07/cape-cod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lay Family Reunion</title>
		<link>http://ericmason.net/2009/06/lay-family-reunion/</link>
		<comments>http://ericmason.net/2009/06/lay-family-reunion/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 04:58:50 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://ericmason.net/?p=125</guid>
		<description><![CDATA[Tweet]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/ericmason/sets/72157620752708670/"><img class="alignnone" title="Reunion" src="http://farm4.static.flickr.com/3600/3674418422_979b07f5f6.jpg?v=0" alt="" width="500" height="333" /></a></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://ericmason.net/2009/06/lay-family-reunion/&via=ericmason&text=Lay Family Reunion&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://ericmason.net/2009/06/lay-family-reunion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

