<?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>MNteractive.com &#187; Darrel Austin</title>
	<atom:link href="http://mnteractive.com/archive/author/darrel/feed" rel="self" type="application/rss+xml" />
	<link>http://mnteractive.com</link>
	<description>Minnesota's Interaction Design, Information Architecture, and User Experience Design Community</description>
	<lastBuildDate>Thu, 29 Dec 2011 17:38:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>IE6, Transparent PNGs, Background positioning AND hover effects.</title>
		<link>http://mnteractive.com/archive/ie6-transparent-pngs-background-positioning-and-hover-effects</link>
		<comments>http://mnteractive.com/archive/ie6-transparent-pngs-background-positioning-and-hover-effects#comments</comments>
		<pubDate>Tue, 11 Aug 2009 04:17:41 +0000</pubDate>
		<dc:creator>Darrel Austin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://mnteractive.com/?p=1365</guid>
		<description><![CDATA[Last month YouTube announced that they&#8217;ll no longer be supporting IE6. This is welcome news to anyone that has to still deal with IE6. Not sure if that is enough ammo to convince your team to abandon IE6 yet, but it&#8217;s a step closer. As IE6 fades into the background, I tend to use transparent [...]]]></description>
			<content:encoded><![CDATA[<p>Last month YouTube announced that they&#8217;ll <a href="http://www.techcrunch.com/2009/07/14/youtube-will-be-next-to-kiss-ie6-support-goodbye/">no longer be supporting IE6</a>. This is welcome news to anyone that has to still deal with IE6. Not sure if that is enough ammo to convince your team to abandon IE6 yet, but it&#8217;s a step closer. </p>
<p>As IE6 fades into the background, I tend to use transparent PNGs more and more often. A common use is as part of a rollover sprite using a positioned anchor tag to manipulate various jQuery visual interactions. </p>
<p>Of course, I then finally remember to take a peak in IE6 and cringe and realize I&#8217;m pushing the limits and usually slap in some conditional comments and feed up a GIF for IE6.</p>
<p>jQuery has certainly made dealing with IE6 easier, as a lot of the built in UI widgets and plugins make the effort to deal with the IE6 discrepancies. </p>
<p>There are also several PNG-fix plugins for jQuery to deal with IE6: pngFix, iepngfix, ifxPng, etc. These are nice, but I hadn&#8217;t found one that dealt with background positioning when using transparent pngs.</p>
<p>Today, by accident, I came across a solution. Angus Turnbull who runs TwinHelix.com has had a great PNG Fix script file that goes way back which I&#8217;ve used numerous times. Somehow I missed the news but about a year ago, <a href="http://www.twinhelix.com/css/iepngfix/">Angus came out with Version 2 of his great script</a>. The big update includes the ability to position a transparent PNG file in IE, which is what is needed to make the CSS sprite rollovers.</p>
<p>GREAT! One catch&#8230;IE still has an issue with positing the PNG when called in the CSS via a hover state. Sometimes it works, and sometimes it doesn&#8217;t. Angus then suggested a solution that seems obvious in hindsight: add a simple addClass call via jQuery to swap the CSS class on hover. For whatever reason, IE6 is cool with that and moves the position of the PNG image for you.</p>
<p>In summary:</p>
<ul>
<li><a href="http://www.twinhelix.com/test/">Grab the IEPNGFix files from TwinHelix</a></li>
<li>Add the &#8216; img, div, input { behavior: url(&#8220;iepngfix.htc&#8221;) }&#8217; line to your CSS file. (Read the included instructions for specifics.)</li>
<li>For the hover effect, provided you are already using jQuery elsewhere on your site (and these days, who isn&#8217;t?) add a function to swap out a class name for IE6:<br />
<code><br />
       if ($.browser.msie &#038;&#038; $.browser.version == 6 ) {<br />
               $(".yourLinkClass").hover(function() {<br />
                       $(this).addClass("fixingIEhover");<br />
               }, function() {<br />
                       $(this).removeClass("fixingIEhover");<br />
               });<br />
       };</code></li>
<li>Add one extra declaration in your CSS file (likely your separate IE6.css file)  to position the background for the new class you created &#8216;fixingIEhover&#8217;. </li>
</ul>
<p>I have to imagine someone more observant already came across this type of solution. And maybe there&#8217;s already a jQuery plugin that DOES do all of the above. If there is, let me know! Otherwise, I hope this helps those of us left that still have to tolerate IE6 for a tad bit longer to make it just a bit easier. </p>
]]></content:encoded>
			<wfw:commentRss>http://mnteractive.com/archive/ie6-transparent-pngs-background-positioning-and-hover-effects/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Facebook Feature</title>
		<link>http://mnteractive.com/archive/1363</link>
		<comments>http://mnteractive.com/archive/1363#comments</comments>
		<pubDate>Wed, 29 Jul 2009 03:52:56 +0000</pubDate>
		<dc:creator>Darrel Austin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://mnteractive.com/archive/1363</guid>
		<description><![CDATA[Dear Facebook: Please add this feature. Thank you.]]></description>
			<content:encoded><![CDATA[<p>Dear Facebook:</p>
<p>Please add this feature. Thank you. </p>
<p><a href="http://mnteractive.com/wp-content/uploads/2009/07/facebook-feature.jpg"><img src="http://mnteractive.com/wp-content/uploads/2009/07/facebook-feature.jpg" alt="facebook feature" title="facebook feature" width="688" height="156" class="alignnone size-full wp-image-1362" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mnteractive.com/archive/1363/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hire me. I&#8217;m a ROCK STAR! Woooo! ROCK ON!</title>
		<link>http://mnteractive.com/archive/hire-me-im-a-rock-star-woooo-rock-on</link>
		<comments>http://mnteractive.com/archive/hire-me-im-a-rock-star-woooo-rock-on#comments</comments>
		<pubDate>Thu, 30 Apr 2009 04:54:12 +0000</pubDate>
		<dc:creator>Darrel Austin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://mnteractive.com/?p=1289</guid>
		<description><![CDATA[As a recently laid off web builder, I&#8217;ve been keeping an eye on the Craigslist job postings on a daily basis. Sometimes this leads to interesting job leads. Sometimes it&#8217;s pure entertainment. One trend I&#8217;ve noticed&#8230; &#8220;I&#8217;m looking for a rock star freelance visual designer to work with me on several projects&#8230;&#8221; &#8220;&#8230;is seeking rock [...]]]></description>
			<content:encoded><![CDATA[<p>As a recently laid off web builder, I&#8217;ve been keeping an eye on the Craigslist job postings on a daily basis. Sometimes this leads to interesting job leads. Sometimes it&#8217;s pure entertainment. One trend I&#8217;ve noticed&#8230;</p>
<ul>
<li>&#8220;I&#8217;m looking for a rock star freelance visual designer to work with me on several projects&#8230;&#8221;</li>
<li>&#8220;&#8230;is seeking rock star Graphic Designers to work in various parts of the Twin Cities&#8230;&#8221;</li>
<li>&#8220;&#8230;and rock star developers to create comprehensive design systems&#8230;&#8221;</li>
<li>&#8220;&#8230;for a rock star front end freelancer to help us keep our clients happy and their businesses growing&#8230;&#8221;</li>
<li>&#8220;&#8230;maintaining a rock star appearance and pleasing smell&#8230;.&#8221;</li>
</ul>
<p>When I find a potential job lead, I then write a personal cover letter and send it in. Of course, that&#8217;s not what rock stars do. We&#8217;re too busy to deal with individual contacts like that. So I thought I&#8217;d go ahead and do a &#8216;open cover letter&#8217; to all those looking for rock star web pros!</p>
<p>Dear Babe or Dude:</p>
<p>I am writing in response to your job posting looking for a Rock Star web genius. I believe I would be a good fit for your organization as I have really awesome hair and look pretty good in jeans. I&#8217;ve been building web sites for 10 years and have been hooked on heroin for the past 4. I enjoy a good jam that doesn&#8217;t necessarily go anywhere but none of the wussy &#8216;jazz fusion&#8217; or &#8216;flash intro page&#8217; crap. Meetings are fine as long as a bong is being passed and we don&#8217;t start before noon. I do ask that you adhere to my employment rider that is attached in lieu of a resume. Do note that I will not accept green M-n-M&#8217;s on the premises at any times. I look forward to your $10,000 advance at which time I will definitely begin maybe thinking about doing some web work for you. </p>
<p>Rock on. Hendrix Rules! UX 4EVER! Peace out. Later.</p>
]]></content:encoded>
			<wfw:commentRss>http://mnteractive.com/archive/hire-me-im-a-rock-star-woooo-rock-on/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>CrowdSpring for design = crappy ROI</title>
		<link>http://mnteractive.com/archive/crowdspring-for-design-crappy-roi</link>
		<comments>http://mnteractive.com/archive/crowdspring-for-design-crappy-roi#comments</comments>
		<pubDate>Fri, 06 Feb 2009 20:10:56 +0000</pubDate>
		<dc:creator>Darrel Austin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://mnteractive.com/?p=1195</guid>
		<description><![CDATA[Forbes recently ran a oxymoronishly titled article about CrowdSpring: The Creativity of Crowds. Ugh. Design contests. Whatever&#8230;I&#8217;ll roll my eyes and go on to the next link&#8230; But then a twitter conversation kicked off with someone asking for some advice on their CrowdSpring sourced logos. And that got me thinking about how these design contest [...]]]></description>
			<content:encoded><![CDATA[<p>Forbes recently ran a oxymoronishly titled article about CrowdSpring:  <a href="http://www.forbes.com/forbes/2009/0216/062.html">The Creativity of Crowds</a>. Ugh. Design contests. Whatever&#8230;I&#8217;ll roll my eyes and go on to the next link&#8230;</p>
<p>But then a twitter conversation kicked off with someone asking for some advice on their CrowdSpring sourced logos. And that got me thinking about how these design contest sites are all still thriving like crazy.</p>
<p>Yes, there&#8217;s the typical arguments against these sites such as: they are taking advantage of designers&#8230;it cheapens the industry&#8230;they&#8217;re full of copyright infringed sources&#8230;it&#8217;s slave labor, etc. All valid, sure, but none of those arguments ever seem to convince anyone to not use those sites to source design, or for designers to not submit to such sites.</p>
<p>The bigger issue that I see is that it&#8217;s simply just a bad purchase. I tried to work up some math and a detailed explanation full of examples, but hopefully I can get my point across better via a simple analogy:</p>
<p>You are hungry. You have $10. You can either:</p>
<p>a) Go to Old Country Buffet</p>
<p>or</p>
<p>b) Grab a sandwich at the <a href="http://www.birchwoodcafe.com/">Birchwood Cafe</a>*</p>
<p>(* = insert whichever yummy, fresh, tasty, organic, local, made-to-order, fave sandwich shop you prefer)</p>
<p>(Point being one place is going to give you a lot of options, none of which are really worth the $10 you are spending)</p>
]]></content:encoded>
			<wfw:commentRss>http://mnteractive.com/archive/crowdspring-for-design-crappy-roi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Type Twin Cities</title>
		<link>http://mnteractive.com/archive/type-twin-cities</link>
		<comments>http://mnteractive.com/archive/type-twin-cities#comments</comments>
		<pubDate>Wed, 04 Feb 2009 17:07:39 +0000</pubDate>
		<dc:creator>Darrel Austin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://mnteractive.com/?p=1064</guid>
		<description><![CDATA[(Haven&#8217;t been posting in a while. Thought I&#8217;d clean out some old posts that were stuck in &#8216;draft limbo&#8217;) I thought I&#8217;d try and start a series of posts that point out interesting designers and artists around town that I&#8217;ve stumbled upon via my web travels. I thought I&#8217;d start with a list of type-related [...]]]></description>
			<content:encoded><![CDATA[<p>(Haven&#8217;t been posting in a while. Thought I&#8217;d clean out some old posts that were stuck in &#8216;draft limbo&#8217;)</p>
<p>I thought I&#8217;d try and start a series of posts that point out interesting designers and artists around town that I&#8217;ve stumbled upon via my web travels. I thought I&#8217;d start with a list of type-related firms and people around town. The list is surprisingly long.</p>
<ul>
<li><a href="http://www.chank.com/">Chank</a>. We all know chank. Fun stuff.</li>
<li><a href="http://type.fargoboy.com/">FargoBoy</a>, which appears to have just one typeface, but it&#8217;s a nice one. Created by Paul Wide L&#8217;Heurreux which, I presume, hails from Fargo. <a href="http://www.paulwl.com/">Currently in Minneapolis</a>.</li>
<li>Formerly of St. Paul, then Rural MN, and now in Minneapolis, Eric Olson and Nicole Dotin are <a href="http://www.processtypefoundry.com/">Process Type foundry</a> pumping out some amazing product.</li>
<li><a href="http://www.marksimonson.com/">Mark Simonson</a> of St. Paul has been creating typefaces for local publications and media for decades. Wonderful typefaces and a fun blog as well.</li>
<li>Locals Stuart Sandler and Mike Ibach have an army of sites including <a href="http://www.fontalicious.com/">Fontalicious</a>, <a href="http://www.fontbros.com/">FontBros</a> and <a href="http://www.fontdiner.com/">Font Diner</a></li>
</ul>
<p>Have others to add to the list? Let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://mnteractive.com/archive/type-twin-cities/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Future of the Web Circa 1995</title>
		<link>http://mnteractive.com/archive/the-future-of-the-web-circa-1995</link>
		<comments>http://mnteractive.com/archive/the-future-of-the-web-circa-1995#comments</comments>
		<pubDate>Wed, 04 Feb 2009 06:08:58 +0000</pubDate>
		<dc:creator>Darrel Austin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://mnteractive.com/?p=1184</guid>
		<description><![CDATA[While digging through my pile of old dead-tree portfolio work, I came across a paper I did in 1995 titled &#8220;The Future of Graphic Design: Designing for the World Wide Web.&#8221; I can&#8217;t promise that it&#8217;ll an exciting read in all of its scanned-in-bitmap-text glory complete with typos and bad grammar, but some of you [...]]]></description>
			<content:encoded><![CDATA[<p>While digging through my pile of old dead-tree portfolio work, I came across a paper I did in 1995 titled &#8220;The Future of Graphic Design: Designing for the World Wide Web.&#8221;</p>
<p>I can&#8217;t promise that it&#8217;ll an exciting read in all of its scanned-in-bitmap-text glory complete with typos and bad grammar, but some of you might get a kick out of the screen shots at least. Enjoy!</p>
<p><a href='http://mnteractive.com/wp-content/uploads/2009/02/the-future-of-graphic-design-1995.pdf'>the-future-of-graphic-design-1995</a></p>
<p>A teaser screen shot:</p>
<div id="attachment_1185" class="wp-caption alignnone" style="width: 445px"><img src="http://mnteractive.com/wp-content/uploads/2009/02/zima.jpg" alt="Ancient screen shot" title="zima" width="435" height="396" class="size-full wp-image-1185" /><p class="wp-caption-text">(remember Zima?)</p></div>
]]></content:encoded>
			<wfw:commentRss>http://mnteractive.com/archive/the-future-of-the-web-circa-1995/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boxee vs. Cable/Satellite</title>
		<link>http://mnteractive.com/archive/boxee-vs-cablesatellite</link>
		<comments>http://mnteractive.com/archive/boxee-vs-cablesatellite#comments</comments>
		<pubDate>Fri, 19 Dec 2008 03:39:50 +0000</pubDate>
		<dc:creator>Darrel Austin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://mnteractive.com/?p=1162</guid>
		<description><![CDATA[We cancelled DirecTV this past spring. We then got an HDTV. Which was nice. But, while we love PBS, after a while, we realized we missed a few of the &#8216;other&#8217; channels. So, we signed up for satellite service again, this time giving DishNetwork a shot. Of course, the very week we did that, the [...]]]></description>
			<content:encoded><![CDATA[<p>We cancelled DirecTV this past spring. We then got an HDTV. Which was nice. But, while we love PBS, after a while, we realized we missed a few of the &#8216;other&#8217; channels. So, we signed up for satellite service again, this time giving DishNetwork a shot.</p>
<p>Of course, the very week we did that, the <a href="http://boxee.tv/">Boxee</a> team announced support for Netflix streaming. Well, I had to check that out, so visited the site and 5 minutes later, we were watching Netflix on our new TV. Whoa! Cool!</p>
<p>I thought I&#8217;d put together a handy guide to compare the options:</p>
<table>
<tr>
<th>feature</th>
<th>DishNetwork</th>
<th>Boxee + Netflix + Over-the-air Digital TV</th>
</tr>
<tr>
<td>Channels</td>
<td>Turbo HD = about 35 + locals</td>
<td>Most major networks, Viacom content, CNN, Hulu movies, any show/movie Netflix offers for streaming.</td>
</tr>
<tr>
<td>Cost</td>
<td>~$50 month</td>
<td>~$15 month</td>
</tr>
<tr>
<td>Install</td>
<td>13 hours(!)</td>
<td>5 minutes</td>
</tr>
<tr>
<td>Contract</td>
<td>2 years</td>
<td>none</td>
</tr>
<tr>
<td>DVR</td>
<td>Yes</td>
<td>Not needed</td>
</tr>
<tr>
<td>Picture quality</td>
<td>Tolerable to Decent (satellite is highly compressed)</td>
<td>Tolerable (streaming)/Excellent (over the air)</td>
</tr>
<tr>
<td>Interface</td>
<td>Tolerable</td>
<td>Fun!</td>
</tr>
</table>
<p>Winner? At this point, I&#8217;d say it&#8217;s a solid tie. Which should be of some concern to the Satellite and cable operators. Unlike the music industry, the TV networks appear to have caught on that the consumer wants the content online, and rather than fighting, they seem to be embracing it. Hulu is extremely fair and convenient service for the consumer. We get TV on demand in exchange for a handful of ads. Netflix streaming is instant gratification at its best. </p>
<p>Yes, there are still networks that have yet to get on board, but given the success of Hulu and Netflix, I don&#8217;t see how they can plead ignorance and not get their things online soon. </p>
<p>With a little luck, having to deal with the Cable and Satellite industries will be a distant memory within 5 years. </p>
]]></content:encoded>
			<wfw:commentRss>http://mnteractive.com/archive/boxee-vs-cablesatellite/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upcoming Type Movie</title>
		<link>http://mnteractive.com/archive/upcoming-type-movie</link>
		<comments>http://mnteractive.com/archive/upcoming-type-movie#comments</comments>
		<pubDate>Sat, 18 Oct 2008 14:01:11 +0000</pubDate>
		<dc:creator>Darrel Austin</dc:creator>
				<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://mnteractive.com/?p=1115</guid>
		<description><![CDATA[Not a sequel to Helvetica, but another type centric documentary is coming to town: Typeface. It&#8217;s a film that focuses on the Wisconsin based Hamilton Wood Type company (now Museum) and will include local letterpress printer (and my ex boss) Bill Moran from Blinc Publishing. The local screening will happen November 6 at the Walker. [...]]]></description>
			<content:encoded><![CDATA[<p>Not a sequel to Helvetica, but another type centric documentary is coming to town: <a href="http://typeface.kartemquin.com/">Typeface</a>. It&#8217;s a film that focuses on the Wisconsin based <a href="http://www.woodtype.org/">Hamilton Wood Type company (now Museum)</a> and will include local letterpress printer (and my ex boss) Bill Moran from <a href="http://www.blincpublishing.com/">Blinc Publishing</a>. The <a href="http://calendar.walkerart.org/event.wac?id=4718">local screening will happen November 6</a> at the Walker.</p>
<p>And since we&#8217;re on the topic of letterpress, and given that it&#8217;s election season, here&#8217;s a bonus link to some very fun <a href="http://www.flickr.com/photos/depressionpress/sets/72157603855732589/">political-centric letterpress prints by Depression Press</a>.</p>
<p><a href="http://www.mnteractive.com/wp-content/uploads/2008/10/quimby.jpg"><img class="alignnone size-full wp-image-1116" title="quimby" src="http://www.mnteractive.com/wp-content/uploads/2008/10/quimby.jpg" alt="" width="340" height="340" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mnteractive.com/archive/upcoming-type-movie/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Technology Liberal?</title>
		<link>http://mnteractive.com/archive/is-technology-liberal</link>
		<comments>http://mnteractive.com/archive/is-technology-liberal#comments</comments>
		<pubDate>Fri, 10 Oct 2008 15:12:03 +0000</pubDate>
		<dc:creator>Darrel Austin</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://mnteractive.com/?p=1113</guid>
		<description><![CDATA[These days, I can&#8217;t say I have a burning passion for these topics, but without a doubt, given the season and my profession, both technoloy and politics are front and center on my RADAR. However, outside of silly DMCA issues and &#8216;trucks in tubes&#8217; and the like, I never really tied the two together in [...]]]></description>
			<content:encoded><![CDATA[<p>These days, I can&#8217;t say I have a burning passion for these topics, but without a doubt, given the season and my profession, both technoloy and politics are front and center on my RADAR. However, outside of silly DMCA issues and &#8216;trucks in tubes&#8217; and the like, I never really tied the two together in any obvious way.</p>
<p>Today, <a href="http://www.nytimes.com/2008/10/10/opinion/10brooks.html?ref=opinion">David Brooks has a column talking about the class war</a>. It&#8217;s mostly an opinion piece on how the GOP is bleeding itself of traditional supports. The snippet that stuck out to me, however, was this one:</p>
<blockquote><p>The Republicans have alienated whole professions. Lawyers now donate to the Democratic Party over the Republican Party at 4-to-1 rates. With doctors, it’s 2-to-1. <strong>With tech executives, it’s 5-to-1.</strong> With investment bankers, it’s 2-to-1. It took talent for Republicans to lose the banking community.</p></blockquote>
<p>That&#8217;s a ratio that seems oddly outside the  norm for an industry that I never really considered leaned one way or the other politically. What makes technology liberal (aside from Al Gore inventing the Internet jokes)? I could come up with some random theories, but I&#8217;m probably not in a position to back any of them up. Just thought I&#8217;d share that interesting datapoint at the intersection of technology and politics. I&#8217;ll leave the analysis up to the pundits.</p>
]]></content:encoded>
			<wfw:commentRss>http://mnteractive.com/archive/is-technology-liberal/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Al Franken Sucks</title>
		<link>http://mnteractive.com/archive/al-franken-sucks</link>
		<comments>http://mnteractive.com/archive/al-franken-sucks#comments</comments>
		<pubDate>Mon, 29 Sep 2008 14:24:32 +0000</pubDate>
		<dc:creator>Darrel Austin</dc:creator>
				<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://mnteractive.com/?p=1109</guid>
		<description><![CDATA[OK, maybe that title isn&#8217;t completely fair. After all, I am a pinko liberal commie who will ALWAYS watch Trading Places through to the end when I stumble upon it while channel surfing&#8230;so I don&#8217;t hate Al. Perhaps it&#8217;s fairer to say Al Franken&#8217;s Marketing team sucks. Or, at the very least, likes to piss [...]]]></description>
			<content:encoded><![CDATA[<p>OK, maybe that title isn&#8217;t completely fair. After all, I <em>am</em> a pinko liberal commie who will ALWAYS watch <em>Trading Places</em> through to the end when I stumble upon it while channel surfing&#8230;so I don&#8217;t hate Al. Perhaps it&#8217;s fairer to say Al Franken&#8217;s Marketing team sucks. Or, at the very least, likes to piss off their own voter base.</p>
<p>Over the past month or so, at LEAST once a week, we get a nice lady robot calling us to inform us that my union supports Al Franken.</p>
<p>Well, there are a few things wrong with these phone calls:</p>
<ul>
<li>autodialing robots are evil</li>
<li>I&#8217;m not in a union</li>
<li>My wife isn&#8217;t in a union</li>
<li>after the 5th time, do they really think they are cementing votes? Methinks they may be pissing off votes more than not.</li>
</ul>
<p>So, I hunt down Al&#8217;s campaign web site and call the number. Apparently he&#8217;s turned his daughter into a voice mail robot. So, I write an email. An email to not-so-subtley complain about these very annoying and misplaced campaign calls (even if they may not be sourced from his office).</p>
<p>Do I get a nice personal response? An apology? Well, no. Instead I immediately get added to the campaign&#8217;s email spam list.</p>
<p>I thought McCain was the only candidate running this season that was clueless about the internet?</p>
]]></content:encoded>
			<wfw:commentRss>http://mnteractive.com/archive/al-franken-sucks/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

