<?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>MichaelStrutton.com &#187; Misc</title>
	<atom:link href="http://michaelstrutton.com/blog/category/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://michaelstrutton.com/blog</link>
	<description>A blog about something...</description>
	<lastBuildDate>Wed, 22 Jul 2009 14:26:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Comcast iPhone App missing the technology</title>
		<link>http://michaelstrutton.com/blog/2009/07/05/comcast-iphone-app-missing-the-technology/</link>
		<comments>http://michaelstrutton.com/blog/2009/07/05/comcast-iphone-app-missing-the-technology/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 18:30:00 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[comcast]]></category>
		<category><![CDATA[dvr]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[tivo]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=186</guid>
		<description><![CDATA[Comcast has created an iPhone App called Comcast TV Listings (iTunes Link). The application contains a searchable listing of TV programming not unlike i.TV (iTunes Link). While they uniquely offer up the OnDemand listings, I think Comcast is missing the boat here. They claim future updates to this application will bring photos, and actor information [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://michaelstrutton.com/blog/wp-content/uploads/2009/07/p_480_320_0933A40F-2004-4976-A42F-5465D580D6E5.jpeg"><img class="size-full wp-image-364 alignright" src="http://michaelstrutton.com/blog/wp-content/uploads/2009/07/p_480_320_0933A40F-2004-4976-A42F-5465D580D6E5.jpeg" alt="" width="200" height="300" /></a>Comcast has created an iPhone App called <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=298960157&amp;mt=8" target="_blank">Comcast TV Listings</a> (iTunes Link). The application contains a searchable listing of TV programming not unlike <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=290338603&amp;mt=8" target="_blank">i.TV</a> (iTunes Link). While they uniquely offer up the OnDemand listings, I think Comcast is missing the boat here. They claim future updates to this application will bring photos, and actor information and the latest entertainment new (like we need to hear anymore about Michael Jackson).</p>
<p>I think Comcast could do their cusotmers and product offering a huge service by focusing on the technology and not the content. A Comcast application for my iPhone should allow me to schedule my DVR, while I&#8217;m away (like Tivo). It would allow me to manage parental controls so I can let the teen watch the semi-educational war movie while I&#8217;m still at the office. It would allow me to remote control my set top box. A Comcast app for my iPhone would let me stream media from my iPhone to my TV and from my TV to my iPhone.</p>
<p>Hey Comcast! Are you listening? You have the fattest pipe, internet in the home, and a set top box on every TV. You can do better than a TV guide. Just a thought.</p>
<p>What do you think? Leave a comment below and let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2009/07/05/comcast-iphone-app-missing-the-technology/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>URL Encoding and Decoding from the command line</title>
		<link>http://michaelstrutton.com/blog/2009/06/15/url-encoding-and-decoding-from-the-command-line/</link>
		<comments>http://michaelstrutton.com/blog/2009/06/15/url-encoding-and-decoding-from-the-command-line/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 17:43:16 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[url encoding]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=132</guid>
		<description><![CDATA[I needed a simple way to URL encode a bunch of data, and in the past I&#8217;ve also needed to generate this on the fly in my shell scripts. Not finding a simple solution I wrote my own utility using PHP. If you aren&#8217;t aware of running PHP from the CLI it can be handy, [...]]]></description>
			<content:encoded><![CDATA[<p>I needed a simple way to URL encode a bunch of data, and in the past I&#8217;ve also needed to generate this on the fly in my shell scripts. Not finding a simple solution I wrote my own utility using PHP. If you aren&#8217;t aware of running <a title="PHP CLI" href="http://us.php.net/manual/en/features.commandline.php" target="_blank">PHP from the CLI</a> it can be handy, and in my case PHP includes the functions urlencode and urldecode.</p>
<p>This was tested and used on Mac running Leopard. I&#8217;m certain it will work fine on most flavors of unix, provided you adjust the path to PHP and it&#8217;s running to <a title="PHP CLI" href="http://us.php.net/manual/en/features.commandline.php" target="_blank">support the CLI</a>.</p>
<div>You can download the zip version of this file here <a title="URLCODER source file" href="http://michaelstrutton.com/urlcoder.zip">urlcoder.zip</a></div>
<div><strong>From the help:</strong></div>
<blockquote>
<div>
<div><strong>Usage</strong>: urlcoder.php [-option]</div>
<div>This program takes input from STDIN or a file and encodes or decodes the data for use in URLs</div>
<div>Options:</div>
<div>-f  filename to de/encode if no file name is given input will be taken from STDIN.</div>
<div>-e  Encode the input.</div>
<div>-d  Decode the input.</div>
<div>-v  Show the version.</div>
<div>-h  Show this help.</div>
<div><strong>Usage Note</strong>: running the command without a file or piping input will leave the application running, and entering data with a carriage return at the prompt will process based on your en/decode option.</div>
<div>This program uses the PHP urldecode and urlencode functions. From the PHP Manual:</div>
<div>urlencode &#8211; Returns a string in which all non-alphanumeric characters except -_. have been replaced with a percent (%) sign followed by two hex digits and spaces encoded as plus (+) signs. It is encoded the same way that the posted data from a WWW form is encoded, that is the same way as in application/x-www-form-urlencoded media type. This differs from the » RFC 1738 encoding (see rawurlencode()) in that for historical reasons, spaces are encoded as plus (+) signs.</div>
</div>
</blockquote>
<p><strong>Examples</strong>:</p>
<blockquote>
<pre>urlcoder -e -f filename.txt
grep -o search datasource | urlcoder -e
echo "mike strutton" | urlcoder -e
urlcoder -e
(input strings manually followed by enter)</pre>
</blockquote>
<p>If you don&#8217;t frequent the Terminal (or unix shell), you will need to extract the zip file, saving it somewhere in your path, and modify the file to  it to be executable (chmod +x urlcoder). If you don&#8217;t understand this, then I highly doubt you have any use for a urlcoder anyway.</p>
<p>Questions, comments, variations? Drop a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2009/06/15/url-encoding-and-decoding-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8230;and I feel fine.</title>
		<link>http://michaelstrutton.com/blog/2008/09/09/and-i-feel-fine/</link>
		<comments>http://michaelstrutton.com/blog/2008/09/09/and-i-feel-fine/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 22:07:19 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[steve jobs]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=127</guid>
		<description><![CDATA[Sorry I haven&#8217;t taken the time to blog. There&#8217;s lots going on and my personal todo list is growing out of control. This post will let you know that I&#8217;m still here, and test my ability to blog in less than 5 min. As for a topic I have none. As for this post here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry I haven&#8217;t taken the time to blog. There&#8217;s lots going on and my personal todo list is growing out of control. This post will let you know that I&#8217;m still here, and test my ability to blog in less than 5 min.</p>
<p>As for a topic I have none. As for this post here&#8217;s a couple of interesting thoughts and links for today:</p>
<ol>
<li>New iPods are out. Check out the Apple store for more details. The new shake to shuffle seems novel and I like the new Touches.</li>
<li>iPhone 2.1 is almost here. Check back on this topic around friday.</li>
<li>The above comes from a very skinny Steve-note announced today. Coverage available at <a href="http://www.tuaw.com/2008/09/09/lets-rock-the-liveblog/" target="_blank">TUAW</a>.</li>
<li>I heard someone say that Steve&#8217;s weight and the prices of AAPL&#8217;s stock go hand in hand. (if you coined this please sound off in the comments). </li>
<li>Is it the end of the world as we know it. (<a title="Financial Times" href="http://www.ft.com/cms/s/0/9a759e22-7e9f-11dd-b1af-000077b07658.html" target="_blank">Financial Times article</a>).  Thinking of the REM song&#8230;</li>
<li>I&#8217;m coding an app for work. More on that in future post. </li>
</ol>
<p>OK, that&#8217;s it for now, back to the daily grind. BTW, total editing time 6 min. Fail. Sound off in the comments below. Tell me whatcha thinking.</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2008/09/09/and-i-feel-fine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple iPhone 2.0.1 update available on iTunes</title>
		<link>http://michaelstrutton.com/blog/2008/08/04/apple-iphone-201-update-available-on-itunes/</link>
		<comments>http://michaelstrutton.com/blog/2008/08/04/apple-iphone-201-update-available-on-itunes/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 00:14:19 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone 2.0]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=91</guid>
		<description><![CDATA[Apple just posted the iPhone 2.0.1 update. As usual they have a non-desrcript &#8220;bug fixes&#8221; listed for the notes. To get the latest, fire up iTunes with your iPhone connected and hit Check for Updates!  Let me know if this fixes the slow sync and neverending backup problems with iPhone 2.0. I&#8217;m also curious about Bluetooth compatibility [...]]]></description>
			<content:encoded><![CDATA[<p>Apple just posted the iPhone 2.0.1 update. As usual they have a non-desrcript &#8220;bug fixes&#8221; listed for the notes. To get the latest, fire up iTunes with your iPhone connected and hit Check for Updates! </p>
<p>Let me know if this fixes the slow sync and <a title="prior blog post" href="/blog/2008/07/13/solution-iphone-20’s-annoying-backup-on-sync/" target="_blank">neverending backup problems</a> with iPhone 2.0. I&#8217;m also curious about Bluetooth compatibility in Visual Voicemail. My Plantronics headset quit working with VVM. </p>
<p>As always I&#8217;ll post my own experience and notes here. Share yours with a comment below.</p>
<p>(thanks to Jon Lee for alerting me of this news just moments ago)</p>
<p><strong>Update</strong>: The download is 242.3 MB</p>
<p><strong>Update (again):</strong> the install took &lt;10 min. I The iPhone seems a little more responsive especially in the contacts and keyboard. I updated WordPress, and played with a handful of app, before attempting a sync. The backup seemed to take &lt;5 min, although I had already completed a 2+hour backup earlier today. I think the verdict is still out on this. As for my bluetooth, it&#8217;s a no go. My Plantronics 520 reamins unavailable in Visual Voicemail.</p>
<p><strong>Update (again, again):</strong> I have since synced my iPhone 3 times, once after updating/installing 5 applications over the air (not through iTunes). Each sync has completed a backup in just a few minutes. For now, I&#8217;m thinking the iPhone 2.0.1 update has greatly improved the slow backup on sync issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2008/08/04/apple-iphone-201-update-available-on-itunes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Vitrue Launches Redesigned Site</title>
		<link>http://michaelstrutton.com/blog/2008/08/04/vitrue-launches-redesigned-site/</link>
		<comments>http://michaelstrutton.com/blog/2008/08/04/vitrue-launches-redesigned-site/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 18:45:42 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Online Video (UGC)]]></category>
		<category><![CDATA[Social Tools]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[vitrue]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=87</guid>
		<description><![CDATA[Vitrue (www.vitrue.com), the company I work for, launched a redesigned site last Friday. It&#8217;s been in the works for sometime now, since just after I started with the company in March. By no means does it take that long to build a site, but when you are busy with new customers and a recent acquisition it&#8217;s easy to get distracted. [...]]]></description>
			<content:encoded><![CDATA[<p>Vitrue (<a title="Vitrue's Website" href="http://www.vitrue.com" target="_blank">www.vitrue.com</a>), the company I work for, launched a redesigned site last Friday. It&#8217;s been in the works for sometime now, since just after I started with the company in March. By no means does it take that long to build a site, but when you are busy with new customers and a <a title="Vitrue Acquires UGENmedia" href="/blog/2008/06/25/vitrue-acquires-ugenmedia/" target="_self">recent acquisition</a> it&#8217;s easy to get distracted. The new site is clean and easy to navigate, and highlights some of the work we have done with our clients. </p>
<p>Anyway, I was part of the project and as you can tell, I&#8217;m really thrilled with the outcome. My role included launching a CMS, creating/packaging the video content and a handful of HTML. I&#8217;m also a participant in the <a title="Vitrue's Company Blog" href="http://www.vitrue.com/blog" target="_blank">company blog</a>. Feel free to drop by and participate in our social media marketing conversations. And, congratulations to the rest of the team who had their hands in this project. Great Job!</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2008/08/04/vitrue-launches-redesigned-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Dear Sister&#8230;</title>
		<link>http://michaelstrutton.com/blog/2008/07/02/my-dear-sister/</link>
		<comments>http://michaelstrutton.com/blog/2008/07/02/my-dear-sister/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 17:42:33 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Online Video (UGC)]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[UGC]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=21</guid>
		<description><![CDATA[I can&#8217;t  believe I missed out on the Dear Sister parody from SNL last year. Thanks to Jon Lee for sharing that nugget of time killer beauty. The wonders of YouTube related videos had Michelle and I consuming many of the double parodies like Pirates of the Caribbean, Lost, The Tudors and a classic episode of [...]]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t  believe I missed out on the Dear Sister parody from SNL last year. Thanks to Jon Lee for sharing that nugget of time killer beauty. The wonders of YouTube related videos had Michelle and I consuming many of the double parodies like <a title="Dear Sister: Pirates of the Caribbean" href="http://www.youtube.com/watch?v=i41W029tRbk" target="_blank">Pirates of the Caribbean</a>, <a title="Dear Sister: Lost" href="http://www.youtube.com/watch?v=sMhO8Y4FyBU&amp;feature=related" target="_blank">Lost</a>, <a title="Dear Sister: Tudors" href="http://www.youtube.com/watch?v=epw7OvLH73o" target="_blank">The Tudors</a> and a classic episode of <a title="Dear Sister: Three's Company" href="http://www.youtube.com/watch?v=xMhmL_bAzn8" target="_blank">Three&#8217;s Company</a>. If you too have no clue about Dear Sister, then read on. Oh, and stick around for my very own stab at the double parody. <span id="more-21"></span></p>
<p>Dear Sister is an SNL parody of the final scene of The O.C.&#8217;s second-season finale. In the original O.C. scene Marissa shoots Trey to save Ryan. The scene is over the top drama with using a called Hide and Seek by Imogen Heap. In the SNL parody a series of violent act are repeated using the slow motion and the aforementioned song. The popularity of the parody inspired <a title="Dear Sister Saerch on YouTube" href="http://www.youtube.com/results?search_query=dear+sister&amp;search_type=&amp;aq=f" target="_blank">1000s of double parodies</a> to be posted. To get the full affect watch the following in order:</p>
<p><strong>Original O.C. scene:</strong></p>
<p><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="src" value="http://www.youtube.com/v/3umNk9nVxbQ&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/3umNk9nVxbQ&amp;hl=en" allowfullscreen="true"></embed></object> </p>
<p><strong>SNL Parody &#8211; Dear Sister:</strong></p>
<p> <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="src" value="http://www.youtube.com/v/JD9iJgFBxbE&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/JD9iJgFBxbE&amp;hl=en" allowfullscreen="true"></embed></object></p>
<p>Likewise I was inspired to create my own double parody. But I quickly found all the obvious parodies had been done. Yup there&#8217;s, <a title="Dear Sister: Sopranos" href="http://www.youtube.com/watch?v=iZm0wJePkp8" target="_blank">Sopranos</a>, <a title="Dear Sister: Scarface" href="http://www.youtube.com/results?search_query=dear+sister+scarface&amp;search_type=&amp;aq=f" target="_blank">Scarface</a>, <a title="Dear Sister: Matrix" href="http://www.youtube.com/watch?v=LGHSczA1nag" target="_blank">Matrix</a>, and even the <a title="Dear Sister: Lion King" href="http://www.youtube.com/watch?v=8-RjZuDDNJo" target="_blank">Lion King</a>. The list is amazing. That left me with no choice but to seek fresh content. Thanks to an well timed ad on YouTube I found no one had used the Hancock movie trailer. My edits took &lt; 10 min, far less than I spent thinking about what to parody.</p>
<p>Enjoy: </p>
<p><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="src" value="http://www.youtube.com/v/6JhPULoKaxY&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/6JhPULoKaxY&amp;hl=en" allowfullscreen="true"></embed></object><br />
 </p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2008/07/02/my-dear-sister/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Honey, you&#8217;re in charge of technology&#8230;</title>
		<link>http://michaelstrutton.com/blog/2008/05/30/honey-youre-in-charge-of-technology/</link>
		<comments>http://michaelstrutton.com/blog/2008/05/30/honey-youre-in-charge-of-technology/#comments</comments>
		<pubDate>Fri, 30 May 2008 15:41:05 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[digital photography]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[macbook pro]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=17</guid>
		<description><![CDATA[The article title is exactly what Michelle, my wife, said regarding packing for our annual family beach trip. What she really means is any missing batteries, camera chargers, laptops, etc. will be my fault! So here&#8217;s my technology list for the family vacation at the beach: Nikon Digital SLR, extra battery, charger, case and lenses. Wife&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>The article title is exactly what Michelle, my wife, said regarding packing for our annual family beach trip. What she really means is any missing batteries, camera chargers, laptops, etc. will be my fault!</p>
<p>So here&#8217;s my technology list for the family vacation at the beach:</p>
<ul>
<li><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FNikon-10-2MP-Digital-18-55mm-3-5-5-6G%2Fdp%2FB0012OGF6Q%3Fie%3DUTF8%26s%3Delectronics%26qid%3D1212157971%26sr%3D8-4&#038;tag=michastrut-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">Nikon Digital SLR</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, extra battery, charger, case and lenses.</li>
<li>Wife&#8217;s <a href="http://www.amazon.com/gp/search?ie=UTF8&#038;keywords=casio%20ex-s10&#038;tag=michastrut-20&#038;index=blended&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">Casio Exilim EX-S10</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> point and shoot, w/charger</li>
<li>2 old point and shoot cameras &#8211; good for beach and kid&#8217;s usage</li>
<li>Sony <a href="http://www.amazon.com/gp/search?ie=UTF8&#038;keywords=sony%20dv%20camcorder&#038;tag=michastrut-20&#038;index=blended&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">Digital DV camcorder</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, charger, DV tapes and bag (probably don&#8217;t need since point and shoots will do good enough)</li>
<li>Bagful of rechargeable AA and AAA batteries with chargers</li>
<li>iPhone wall chargers</li>
<li>2 <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FApple-MacBook-MB074LL-Display-SuperDrive%2Fdp%2FB0015YUHF8%3Fie%3DUTF8%26s%3Delectronics%26qid%3D1212158389%26sr%3D8-6&#038;tag=michastrut-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">MacBook Pros</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, with chargers</li>
<li>Portable backup of home/business data (<a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FWestern-Digital-Studio-Esata-FW400%2Fdp%2FB000WGM1L8%3Fie%3DUTF8%26s%3Delectronics%26qid%3D1212158485%26sr%3D1-3&#038;tag=michastrut-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">WD MyBook Studio</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />) &#8211; just for safety not likely to use </li>
<li>Firewire cable (hard drive, or linking the MacBooks for fast data transfers)</li>
<li>Spare <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FD-Link-WBR-1310-Wireless-G-Router%2Fdp%2FB000FIQBM8%3Fie%3DUTF8%26s%3Delectronics%26qid%3D1212158587%26sr%3D1-1&#038;tag=michastrut-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">D-Link Wireless router</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> (condo has ethernet we can blast wifi to the pool from our balcony)</li>
<li>Extra ethernet cable to config router</li>
<li>Work&#8217;s external hard drive (I&#8217;m certain I will be working through vacation need to edit some videos)</li>
<li><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FApple-iPod-classic-Black-Generation%2Fdp%2FB000JLKIHA%3Fie%3DUTF8%26s%3Delectronics%26qid%3D1212158659%26sr%3D8-1&#038;tag=michastrut-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">Video iPods</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> and (can use iPhone charging cables)</li>
<li>Video cable for iPods</li>
<li>Re-encode 25+ kid&#8217;s movies from media server for iPod (thanks <a href="http://www.techspansion.com/visualhub/">VisualHub</a>)</li>
<li>Charge &amp; replace batteries for <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FAudiovox-MVIRHS-Wireless-Infrared-Headset%2Fdp%2FB000069E2N%3Fie%3DUTF8%26s%3Delectronics%26qid%3D1212158769%26sr%3D8-2&#038;tag=michastrut-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">wireless headphones</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> (we use the iPod as a mobile media server for the in-car LCD panel)</li>
<li>Get <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FiHome-Portable-Stereo-Speaker-Shuffle%2Fdp%2FB000OOEKJO%3Fie%3DUTF8%26s%3Delectronics%26qid%3D1212158965%26sr%3D1-2&#038;tag=michastrut-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">portable iHome</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> (water resistant, beach ready version)</li>
<li>Sync old iPod Nanos with current music for use with portable iHome (better to lose/damage old nano then Video iPod or iPhone while on the beach)</li>
<li>Remind kid&#8217;s to pack chargers, headphones and games for their <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fb%3Fie%3DUTF8%26node%3D11076561%26pf%5Frd%5Fm%3DATVPDKIKX0DER%26pf%5Frd%5Fs%3Dbrowse%26pf%5Frd%5Fr%3D014ENWM5BAKDPS8B7N0Y%26pf%5Frd%5Ft%3D101%26pf%5Frd%5Fp%3D401284001%26pf%5Frd%5Fi%3D11075831&#038;tag=michastrut-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">Nintendo DSs</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></li>
<li>Grab the latest Netflix DVDs (hope it&#8217;s something good)</li>
<li>Find s-video cable/adapter for MacBook Pro (can always serve a makeshift DVD player)</li>
<li>Find audio cable (headphone to RCA) to use with MacBook Pro and/or iPods</li>
<li><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2FSandisk-Secure-Digital-SDSDH-4096-BlueProton%2Fdp%2FB000PUTPXI%3Fie%3DUTF8%26s%3Delectronics%26qid%3D1212161895%26sr%3D1-23&#038;tag=michastrut-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=9325">USB SDHC card reader</a><img src="http://www.assoc-amazon.com/e/ir?t=michastrut-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> (for all the cameras &#8211; no need to bring 3 different USB cables)</li>
</ul>
<p>What I&#8217;m I forgetting? Let me know with a comment&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2008/05/30/honey-youre-in-charge-of-technology/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GDocs Spreadsheet Live Forms &#8211; bit me</title>
		<link>http://michaelstrutton.com/blog/2008/05/16/gdocs-spreadsheet-live-forms-bit-me/</link>
		<comments>http://michaelstrutton.com/blog/2008/05/16/gdocs-spreadsheet-live-forms-bit-me/#comments</comments>
		<pubDate>Fri, 16 May 2008 14:43:12 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Social Tools]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[google docs]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=15</guid>
		<description><![CDATA[As you will see in my prior post and update, I was trying to use a new feature in a Google Docs Spreadsheet that allows you to capture data from a form and have it auto populate a spreadsheet. The idea is a really cool concept, except that it requires some form of authentication, maybe because I [...]]]></description>
			<content:encoded><![CDATA[<p>As you will see in my prior post and update, I was trying to use a new feature in a Google Docs Spreadsheet that allows you to capture data from a form and have it auto populate a spreadsheet. The idea is a really cool concept, except that it requires some form of authentication, maybe because I was using my company google apps account. I also tried publishing my spreadsheet publicly but that still didn&#8217;t open the form to the public. If I figure out a solution I&#8217;ll post back here. If you have any suggestion leave a comment.</p>
<p>Oh, and I apologize for anyone coming to my blog in the last 24 hours and getting redirected to login at my companies Google Apps account&#8230; Whoops ;-) </p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2008/05/16/gdocs-spreadsheet-live-forms-bit-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vitrue on Bernaisesource</title>
		<link>http://michaelstrutton.com/blog/2008/05/07/vitrue-on-bernaisesource/</link>
		<comments>http://michaelstrutton.com/blog/2008/05/07/vitrue-on-bernaisesource/#comments</comments>
		<pubDate>Wed, 07 May 2008 12:13:29 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Online Video (UGC)]]></category>
		<category><![CDATA[Social Tools]]></category>
		<category><![CDATA[atlanta]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=13</guid>
		<description><![CDATA[Dan Greenfield over at Bernaisesource has written a nice piece on Vitrue (my employer), Reggie Bradford (my CEO), Social Media (my industry), and Atlanta (my hometown). I worked with Dan for many years at EarthLink, he&#8217;s a sharp guy and is vastly becoming Atlanta&#8217;s social media PR guru. When I caught wind that Dan would [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" style="float: right;" src="http://amadeo.blog.com/repository/330130/1189880.105.p.tn.jpg" alt="Dan Greenfield" />Dan Greenfield over at <a href="http://bernaisesource.blog.com/" target="_blank">Bernaisesource</a> has <a href="http://bernaisesource.blog.com/3078838/" target="_blank">written a nice piece on Vitrue</a> (my employer), Reggie Bradford (my CEO), Social Media (my industry), and Atlanta (my hometown). I worked with Dan for many years at EarthLink, he&#8217;s a sharp guy and is vastly becoming Atlanta&#8217;s social media PR guru.</p>
<p>When I caught wind that Dan would be stopping by to interview Reggie, I grabbed my video camera in hopes to archive the event for Vitrue. More on that later&#8230; Dan covers many topics with Reggie including his background, Vitrue&#8217;s platform and the importance of brand safety.</p>
<p>Dan also recently <a href="http://bernaisesource.blog.com/2965314/" target="_self">interviewed Paul Stamatiou</a> whom I worked with at <a href="http://skribit.com" target="_blank">Skribit.com</a>, the creation of Atlanta&#8217;s first Startup Weekend.</p>
<p>Nice work. Keep it up Dan!</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2008/05/07/vitrue-on-bernaisesource/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Brightkite &amp; Twitter (it&#8217;s not chocolate &amp; peanut butter)</title>
		<link>http://michaelstrutton.com/blog/2008/05/01/brightkite-twitter-its-not-chocolate-peanut-butter/</link>
		<comments>http://michaelstrutton.com/blog/2008/05/01/brightkite-twitter-its-not-chocolate-peanut-butter/#comments</comments>
		<pubDate>Thu, 01 May 2008 12:13:36 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Social Tools]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Brightkite]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=12</guid>
		<description><![CDATA[The other day Jeff Pabian (local blogger and friend), sent me an invite to Brightkite. Ironically he also posted a review of Brightkite on his blog. Hes&#8217;s done a great job explaining what Brighkite does and the potential value. I for one haven&#8217;t experienced the local connection he describes. I either don&#8217;t have enough friends or [...]]]></description>
			<content:encoded><![CDATA[<p>The other day Jeff Pabian (local blogger and friend), sent me an invite to Brightkite. Ironically he also posted a review of<a href="http://www.rawspinach.org/2008/04/30/wheres-waldo-now-you-can-know/" target="_blank"> Brightkite on his blog</a>. Hes&#8217;s done a great job explaining what Brighkite does and the potential value. I for one haven&#8217;t experienced the local connection he describes. I either don&#8217;t have enough friends or the demographics of my rural suburbs don&#8217;t line up. As a Twitter user, I was thrilled to see Brightkite&#8217;s integration. That is, until I used it. <span id="more-12"></span></p>
<p>Brightkite is location based social networking tool. It allows you to &#8220;check in&#8221; to a location/address, post a comment or photo (tied to that location), and connect with others nearby. If you enable Twitter integration each event is automatically posted to Twitter. Example:</p>
<p style="padding-left: 30px;"><strong>Brightkite</strong>: check in @ work<br />
<strong>Twitter</strong>: I&#8217;m at 101 Marietta St NW, Atlanta, GA 30303, USA (101 Marietta St Nw, Atlanta, GA, 30303, US) &#8211; <a href="http://bkite.com/001vF">http://bkite.com/001vF</a></p>
<p>Ok, I gotta admit the Google maps is kinda cool. But what&#8217;s with listing the address twice? Honestly is the address relevant to anyone who may be reading my Twitter? In my example above I used a &#8220;Placemark&#8221; (bookmark) called &#8220;work&#8221;. My Twitter post should simply be &#8220;I&#8217;m at work &lt;map link&gt;.&#8221; If I check in to another address without a placemark, it should just show &#8220;I&#8217;m at city/state + map link.&#8221; I&#8217;ve heard a few grumbles from my twittpeeps about the uselessness of the check in data in Twitter, and formated the way it is, I tend to agree. </p>
<p>In addition to improving the check in details, Brightkite should allow you to combine a message with a location. Such as &#8220;@work looking for lunch.&#8221; This can help cut down on the Twittlitter.</p>
<p>For the record you can achieve an abbreviated post (city/state) if you raise your privacy preferences. But then you lose the ability to show everyone your specific location and this doesn&#8217;t address the lack of placemark integration with Twitter.  </p>
<p>OK, enough of the shortcomings, let&#8217;s talk about a useful Brightkite/Twitter feature, Photo uploads.  With my registration came a private email address to send photos. Emailed pictures are placed in my Brightkite profile, as well as post to my Twitter stream. The subject line of the email becomes the Twitter message. The message text and link are separated with a hyphen. The other day I attempted to photo stream my commute home and subsequent trip to the store. You can see <a href="http://www.brightkite.com/people/strutton?prefs%5Bnone%5D=1&amp;prefs%5Bphotos%5D=1&amp;commit=Apply">the log in my Brightkite profile</a>. In addition this made for mildly entertaining Twitter story that looked like this:</p>
<ul>
<li><em>Driving home &#8211; CNN &#8211; - Photo: http://bkite.com/001nO</em></li>
<li><em>I&#8217;m at Douglasville, GA 30134, USA (Douglasville, GA, 30134, US) &#8211; http://bkite.com/001oa</em></li>
<li><em>Driving &#8211; Mall &#8211; Photo: http://bkite.com/001on</em></li>
<li><em>Truck almost ran me off rd. &#8211; Photo: http://bkite.com/001ou</em></li>
<li><em>I&#8217;m at Villa Rica, GA 30180, USA (Villa Rica, GA, 30180, US) &#8211; http://bkite.com/001ox</em></li>
<li><em>Getting off highway. Sunset. &#8211; Photo: http://bkite.com/001oB</em></li>
<li><em>My &#8216;hood &#8211; Photo: http://bkite.com/001oD</em></li>
<li><em>Home now. Hope u enjoyed my ride. &#8211; Photo: http://bkite.com/001oH</em></li>
<li><em>Back on the rd. again need dinner &amp; groceries.</em></li>
<li><em>Guess what took this pic? &#8211; Photo: http://bkite.com/001oU</em></li>
<li><em>Here now &#8211; Photo: http://bkite.com/001oY</em></li>
<li><em>My sub under construction &#8211; Photo: http://bkite.com/001p5</em></li>
<li><em>Publix makes the best subs in my town &#8211; Photo: http://bkite.com/001pa</em></li>
<li><em>My BP is a little high. Stress. &#8211; Photo: http://bkite.com/001pr</em></li>
</ul>
<p>I also love the Find Your Friends feature. Simply input your Twitter account and it searches the account for friends. </p>
<p><strong>Other notes about Brightkite:</strong></p>
<p>Obvioulsy the Google maps integration is key for location based social networking. See: <a href="http://www.brightkite.com/people/strutton/places?map=true">My past locations on Google Maps</a>, <a href="http://www.brightkite.com/people/strutton/friends?map=true">My friends on Google Maps</a>, they should do the same for the photos.</p>
<p>For you iPhone users and anyone who may prefer email over SMS&#8230; It&#8217;s not obviously documented but you can update Brightkite via email. Just use the same private address assigned for photo uploads. Put your SMS commands into the subject line. This is handy for me, as I do not have unlimited SMS but do have unlimited internet/email.</p>
<p>I think the future looks bright for Brightkite, and I&#8217;m looking forward to seeing integration with triangulation and GPS.  I also understand they are developing a native iPhone application too. </p>
<p>Right now <a href="http://www.brightkite.com" target="_blank">Brightkite</a> is an invitation only Beta. If you would like an invite, leave a comment on this page. I have a few available. </p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2008/05/01/brightkite-twitter-its-not-chocolate-peanut-butter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Line Out ≠ Mic Input</title>
		<link>http://michaelstrutton.com/blog/2008/04/30/line-out-%e2%89%a0-mic-input/</link>
		<comments>http://michaelstrutton.com/blog/2008/04/30/line-out-%e2%89%a0-mic-input/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 12:13:21 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Online Video (UGC)]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[gear]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=10</guid>
		<description><![CDATA[When I started this blog post my intentions were to solicit help from the community, however before I finished writing, I found my answer. I&#8217;m hoping this makes its way into the abyss of the Google indexes and helps someone like me in the future. This week I have to do a video shoot at the [...]]]></description>
			<content:encoded><![CDATA[<p>When I started this blog post my intentions were to solicit help from the community, however before I finished writing, I found my answer. I&#8217;m hoping this makes its way into the abyss of the Google indexes and helps someone like me in the future.</p>
<p>This week I have to do a video shoot at the office. During our test shots, I decided I didn&#8217;t like the audio quality I was getting from the camera and the wireless mic. So, I decided to incorporate my home studio gear and run some additional tests.<span id="more-10"></span></p>
<p><strong>The gear:<span style="font-weight: normal;"> <br />
</span><span style="font-weight: normal;">Canon VIXIA HV30 (HDV to tape with microphone input)<br />
MOTU Traveler (multi track mixer/firewire interface)<br />
Numerous Microphones (condensers, bullets and wireless lavalier)<br />
Audio-Technica ATR288W (wireless tx/rx kit)<br />
MacBook Pro</span></strong></p>
<p><strong><span style="font-weight: normal;">My intentions were to mix the audio from multiple microphones using the MOTO as a mixer and piping a cable back into the camera&#8217;s microphone input. I know you recording pros are probably asking why I didn&#8217;t take each mic to a digital track via firewire? After all that&#8217;s what the MOTU does best. Well, I don&#8217;t have the software tools necessary (limited to iLife &#8217;08) to capture video and multi audio tracks at the same time. I guess I could attempt to simultanously record in GarageBand and capture video in iMovieHD (or &#8217;08), but syncing would then be an issue. You get the point.</span></strong></p>
<p>For the life of me I couldn&#8217;t figure out why the audio sounded great via the Headphone on the MOTU, but crap from the Headphone on the HV30. After hours of fiddling with knobs and levels, I had just about given up, when I decided to take the mixed audio and run it into the wireless trasmitter/receiver then into the HV30. Bingo! Everything sounds great, but why?</p>
<p>As it turns out Line Level is not the same as Mic Level. Line level (technically +4dBu) is a standard level used by many pieces of audio equipment like DVDs, Tape Decks, and in my case a Mixer. Mic Level on the other hand assumes the signal is much weaker and boosts/amplifies it. This explains why my line level audio was so distorted. Apparently the wireless kit accepts both Mic and Line Levels, and then outputs the correct Mic Level.</p>
<p>If you are in need of piping mixed audio into your camera&#8217;s Mic Input, you will likely need to convert the signal. There are sources for this like <a href="http://beachtek.com" target="_blank">BeachTek</a> (no affiliation and never used them) or a wireless kit like the one I used.</p>
<p>BTW, I don&#8217;t claim to be an expert at this I&#8217;m just a mass consumer of technology. If you see an error, leave a comment. If you have something to add, leave a comment. If you have read this far, leave a comment. If you are alive, leave a comment. </p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2008/04/30/line-out-%e2%89%a0-mic-input/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The inaugural post&#8230;</title>
		<link>http://michaelstrutton.com/blog/2008/04/27/the-inaugural-post/</link>
		<comments>http://michaelstrutton.com/blog/2008/04/27/the-inaugural-post/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 13:56:42 +0000</pubDate>
		<dc:creator>strutton</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Online Video (UGC)]]></category>
		<category><![CDATA[Social Tools]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[UGC]]></category>

		<guid isPermaLink="false">http://michaelstrutton.com/blog/?p=5</guid>
		<description><![CDATA[I&#8217;m back and here for another round! It&#8217;s been a couple of years since I last authored a blog, but I&#8217;m looking forward to this next phase of my digital life. I suppose my first entry should be about me and what I plan to do here. So keep reading and I&#8217;ll dive into it. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://michaelstrutton.com/blog/wp-content/uploads/2008/04/mike.jpg"><img class="alignright alignnone size-thumbnail wp-image-6" style="float: right;" title="Mike" src="http://michaelstrutton.com/blog/wp-content/uploads/2008/04/mike-150x150.jpg" alt="" width="150" height="150" /></a>I&#8217;m back and here for another round! It&#8217;s been a couple of years since I last authored a blog, but I&#8217;m looking forward to this next phase of my digital life. I suppose my first entry should be about me and what I plan to do here. So keep reading and I&#8217;ll dive into it.<span id="more-5"></span></p>
<p>I&#8217;m not a new comer to the blogosphere or social media. My past includes authoring to the now vanished <a href="http://web.archive.org/web/20051212224913/www.protectionblog.com/abt_r_blggrs.html" target="_blank">EarthLink Protection blog</a> (2005), and I recently helped cofound <a href="http://skribit.com" target="_blank">Skribit, Inc</a>., a community engagement tool for blogger. In recent months, I helped setup my Wife&#8217;s company <a href="http://blog.wrappedinthemoment.com" target="_blank">blog</a>. Actually 10+ years ago (1998 to be exact) I started my first &#8220;web log&#8221;. Yeah, I&#8217;m no Dave Winer, but I did maintain a <a href="http://www.mindspring.com/~strutton" target="_blank">webpage that logged</a> the pregnancy and arrival of my first child Cameron.</p>
<p>Today I work for a video-centric social media company called <a href="http://www.vitrue.com" target="_blank">Vitrue</a>, (for the record: <span style="text-decoration: underline;">the views and opinions on this site are my own and not those of my employer</span>). I have 12+ years working with software, web, and internet technologies and there&#8217;s bound to be some overlap between my blog and career. But if you are interested in Vitrue&#8217;s position check our <a href="http://www.vitrue.com/blog/" target="_blank">their blog</a>.</p>
<p>What to expect from me? Well that&#8217;s going to evolve over time. My passions include technology, gadgets, anything Apple, UGC video (<a href="http://youtube.com/strutton">YouTube</a> &amp; <a href="http://gallery.mac.com/strutton1">.Mac Gallery</a>), and music (guitar). I&#8217;m not an avid gamer, but own the major consoles, RockBand is hot right now. I wired my home with gigabit ether to stream video to 5+ set-top boxes, audio too. I setup a homegrown NAS with 3+TB of storage. I use Macs, and love my iPhone. Given my recent employment, I imagine I will be spending more time in the social side of the net, videos in particular. In the end, I hope this blog will engage a readership, promote healthy conversations and impress some friends and family. <img src='http://michaelstrutton.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>In addition to the personal interest above&#8230; I have two boys Cameron and Ryan, a beautiful wife Michelle, and her two kids Nick and Kara. We&#8217;re a modern day Brady Bunch minus Alice, although Michelle really wants to hire Alice. This summer we will celebrate our 2nd anniversary. My wife created this <a href="http://www.struttons.com" target="_blank">family web site</a> with iWeb and a .Mac account (I think it&#8217;s a little outdated).</p>
<p>So if you made it this far, drop me a comment and say so. If nothing else say hello. Until next time&#8230;</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://michaelstrutton.com/blog/2008/04/27/the-inaugural-post/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
