<?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>Derek Punsalan - 5ThirtyOne</title>
	<atom:link href="http://5thirtyone.com/feed" rel="self" type="application/rss+xml" />
	<link>http://5thirtyone.com</link>
	<description>A personal site by Derek Punsalan sharing personal interests with technology, WordPress, design, and general geekery.</description>
	<lastBuildDate>Wed, 01 Jul 2009 20:16:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Easy thumbnails for The Unstandard (or any&#160;theme)</title>
		<link>http://5thirtyone.com/archives/2112</link>
		<comments>http://5thirtyone.com/archives/2112#comments</comments>
		<pubDate>Wed, 01 Jul 2009 19:36:30 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[the unstandard]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[thumbnails]]></category>
		<category><![CDATA[timthumb.php]]></category>

		<guid isPermaLink="false">http://5thirtyone.com/?p=2112</guid>
		<description><![CDATA[
One of the most requested features by The Unstandard WordPress theme users was a easier method for photo thumbnails on front pages. After exploring a few options including using the baked in WordPress media image re-sizer, Raul’s code snippet to be added to functions.php, and various plugins and scripts, I decided to go the route [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://5thirtyone.com/archives/2112"><img src="http://5thirtyone.com/wp-content/uploads/2009/07/timthumbsupport.png" alt="timthumb script support" title="timthumb script support" width="500" height="200" class="aligncenter size-full wp-image-2114" /></a></p>
<p>One of the most requested features by <a href="http://5thirtyone.com/the-unstandard">The Unstandard</a> WordPress theme users was a easier method for photo thumbnails on front pages. After exploring a few options including using the baked in WordPress media image re-sizer, <a href="http://raulraja.com/">Raul’s</a> code <a href="http://5thirtyone.com/archives/886/comment-page-21#comment-120571">snippet to be added to functions.php</a>, and various plugins and scripts, I decided to go the route of <a href="http://www.darrenhoyt.com/2008/04/02/timthumb-php-script-released/">Darren Hoyt’s timthumb script</a> for a official theme&nbsp;update.</p>
<h3>Old method vs. updated&nbsp;method</h3>
<p>Prior to the update, cropping and uploading two versions of a photo was required in order to prevent skewed or distorted images. For every post published, two photos were needed: 1 x large hero and 1 x smaller alternative.&nbsp;</p>
<p>For some, the flexibility of being able to specify two unique assets worked. That is why I have not changed that aspect of the theme. What is different is that cropping images prior to uploading is no longer necessary. Cropping, thumbnail creation, and caching is now handled by the timthumb.php&nbsp;script.</p>
<p>Users can still specify two unique images – one for the hero (if the post is the newest on the front page), and a second for older posts. Alternatively, users can upload one image 600px wide or greater then copy ‘n paste the same URI for the file in both custom&nbsp;fields.</p>
<p>Visit the <a href="http://5thirtyone.com/the-unstandard">download page</a> for info or edit your existing theme manually using the instructions&nbsp;below.</p>
<h3>Adding timthumb.php support&nbsp;manually</h3>
<p><a href="http://5thirtyone.com/wp-content/uploads/2009/07/Folder-heirarchy1.png"><img src="http://5thirtyone.com/wp-content/uploads/2009/07/Folder-heirarchy1-150x150.png" alt="Folder heirarchy" title="Folder heirarchy" width="150" height="150" class="alignright size-thumbnail wp-image-2113" /></a>First, visit Darren Hoyt&#8217;s site to <a href="http://www.darrenhoyt.com/2008/04/02/timthumb-php-script-released/">grab a copy of timthumb.php</a>. Next, visit your theme directory using a (s)FTP client and create a new folder called &#8217;scripts&#8217;. Within that, create another directory and name it &#8216;cache&#8217;. Check to make sure that both newly created folders are set to CHMOD 777 (so that timthumb can write to those&nbsp;folders).</p>
<p>If you&#8217;re using <a href="http://5thirtyone.com/the-unstandard">The Unstandard</a>, open index.php and look for the following&nbsp;code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; title=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$img_src</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;&lt;/a&gt;</pre></div></div>

<p>Replace that with this new snippet which integrates the newly added timthumb&nbsp;script:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; title=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_first_post<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
	&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/scripts/timthumb.php?src=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$img_src</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;w=593&amp;h=225&amp;zc=1&quot; width=&quot;593&quot; height=&quot;225&quot; /&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
	&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/scripts/timthumb.php?src=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$img_src</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;w=293&amp;h=150&amp;zc=1&quot; width=&quot;293&quot; height=&quot;150&quot; /&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/a&gt;</pre></div></div>

<p>What changed? The modified code for <a href="http://5thirtyone.com/the-unstandard">The Unstandard</a> users does one of two&nbsp;things:</p>
<ol>
<li>If the post is calling the larger hero image, use timthumb to create a thumbnail using the value set for &#8216;lead_image&#8217;.</li>
<li>If the post is not the latest, use timthumb to create a thumbnail using the value set for &#8217;secondary_image&#8217;.</li>
</ol>
<p>The script accepts a couple different parameters including height, width, zoom crop, and quality. Find out more <a&nbsp;href="http://www.darrenhoyt.com/2008/04/02/timthumb-php-script-released/">here</a>.</p>
<h3>Caveats relying on&nbsp;timthumb</h3>
<p>The only issue using timthumb to automatically create thumbnails is that <strong>image files must be hosted on your own site</strong>. Images hosted externally will not be thumbnailed and&nbsp;cached.</p>
<p>Note that if you plan on using the same image URI for both &#8216;lead_image&#8217; and &#8217;secondary_image&#8217;, it is better to cover your bases and upload a image equal to or greater than 600px to account for zooming /&nbsp;resizing.</p>
<div id="wherego_related"><h3>Readers Also Read</h3><ul><li><a href="http://5thirtyone.com/grid-focus">WordPress Grid Focus&nbsp;Download</a></li><li><a href="http://5thirtyone.com/sweetcron-socialcubes">Sweetcron SocialCubes&nbsp;Download</a></li><li><a href="http://5thirtyone.com/basement">The&nbsp;Basement</a></li><li><a href="http://5thirtyone.com/archives/886">The Unstandard WordPress&nbsp;theme</a></li><li><a href="http://5thirtyone.com/the-unstandard">WordPress The Unstandard&nbsp;Download</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://5thirtyone.com/archives/2112/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove tourists from your&#160;photos</title>
		<link>http://5thirtyone.com/archives/2109</link>
		<comments>http://5thirtyone.com/archives/2109#comments</comments>
		<pubDate>Wed, 01 Jul 2009 15:40:20 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Breadcrumbs]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://5thirtyone.com/?p=2109</guid>
		<description><![CDATA[Snap multiple photos, upload, then remove unwanted tourists from the frame via BBG.
Readers Also ReadAboutSweetcron SocialCubes&#160;Download]]></description>
			<content:encoded><![CDATA[<p>Snap multiple photos, upload, then remove unwanted tourists from the frame via <a&nbsp;href="http://gadgets.boingboing.net/2009/06/29/tourist-remover-clea.html">BBG</a>.</p>
<div id="wherego_related"><h3>Readers Also Read</h3><ul><li><a href="http://5thirtyone.com/about">About</a></li><li><a href="http://5thirtyone.com/sweetcron-socialcubes">Sweetcron SocialCubes&nbsp;Download</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://5thirtyone.com/archives/2109/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FriendFeed pushes new theme user&#160;option</title>
		<link>http://5thirtyone.com/archives/2107</link>
		<comments>http://5thirtyone.com/archives/2107#comments</comments>
		<pubDate>Tue, 30 Jun 2009 21:36:15 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Webbie]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://5thirtyone.com/?p=2107</guid>
		<description><![CDATA[FriendFeed just announced new themes for users. What&#8217;s a social web service without, right? Oddly enough, the selected theme for a given user profile is visible for the profile owner&#160;only.
Can I choose how my profile or group page looks to other people? At the moment, selecting a theme will change how FriendFeed looks to you, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://friendfeed.com">FriendFeed</a> just announced new <a href="http://blog.friendfeed.com/2009/06/friendfeed-now-6x-more-awesomer-with.html">themes</a> for users. What&#8217;s a social web service without, right? Oddly enough, the selected theme for a given user profile is visible for <em>the profile owner</em>&nbsp;only.</p>
<blockquote><p>Can I choose how my profile or group page looks to other people? At the moment, selecting a theme will change how FriendFeed looks to you, and other people looking at your profile page will see it in whatever theme they&#8217;ve chosen. We know how important it is to be able to customize how your profile page or group page looks to the outside world, and while that isn&#8217;t part of today&#8217;s release, it&#8217;s on the&nbsp;roadmap.</p></blockquote>
<p align="center"><a href="http://5thirtyone.com/wp-content/uploads/2009/06/friendfeed-sample.png"><img src="http://5thirtyone.com/wp-content/uploads/2009/06/friendfeed-sample-500x363.png" alt="FriendFeed Sample" title="FriendFeed Sample" width="500" height="363" class="aligncenter size-medium wp-image-2108" /></a></p>
<p>A little strange. But hey, at least full theme integration is on the roadmap. I took a stab at the CSS only requirement for the themes but didn&#8217;t quite make it. Darn. If you are interested in following new theme releases, follow the <a href="http://friendfeed.com/friendfeed-themes">FriendFeed Themes</a> account. Release custom CSS stylesheet support and that theme directory will really take&nbsp;off.</p>
<div id="wherego_related"><h3>Readers Also Read</h3><ul><li><a href="http://5thirtyone.com/sweetcron-socialcubes">Sweetcron SocialCubes&nbsp;Download</a></li><li><a href="http://5thirtyone.com/about">About</a></li><li><a href="http://5thirtyone.com/contact">Contact</a></li><li><a href="http://5thirtyone.com/archives/2049">Backblaze: Secure unlimited automatic backups for&nbsp;$5</a></li><li><a href="http://5thirtyone.com/grid-focus">WordPress Grid Focus&nbsp;Download</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://5thirtyone.com/archives/2107/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Win Visio Standard 2007 for designs, wireframes, or idea&#160;dumps</title>
		<link>http://5thirtyone.com/archives/2104</link>
		<comments>http://5thirtyone.com/archives/2104#comments</comments>
		<pubDate>Tue, 30 Jun 2009 17:31:08 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[diagram]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[visio]]></category>
		<category><![CDATA[wireframe]]></category>

		<guid isPermaLink="false">http://5thirtyone.com/?p=2104</guid>
		<description><![CDATA[
If I worked primarily on a PC, Microsoft Visio would be one of  the most used apps in my dock Start Menu. I can&#8217;t speak from personal experience, but based on the features (and from what others have told me), Visio is a solid piece of software &#8211; especially if your daily tasks involve [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://5thirtyone.com/wp-content/uploads/2009/06/visio-thumbnail.png" alt="Visio for free" title="Visio for free" width="500" height="200" class="aligncenter size-full wp-image-2105" /></p>
<p>If I worked primarily on a PC, <a href="http://office.microsoft.com/en-us/visio/default.aspx">Microsoft Visio</a> would be one of  the most used apps in my <del>dock</del> Start Menu. I can&#8217;t speak from personal experience, but based on the features (and from what others have told me), Visio is a solid piece of software &#8211; especially if your daily tasks involve creating rich visuals, UI&#8217;s, and prototypes. If I did work with Visio, I would definitely check out some of the available add-ons like the <a href="http://www.guuui.com/issues/02_07.php">rapid prototyping tool</a> or the <a href="http://www.abbett.org/2008/05/27/updated-sketch-gui-shapes-for-visio/">updated sketch GUI</a> elements (both via <a href="http://wireframes.linowski.ca/">Wireframes&nbsp;Magazine</a>).</p>
<h3>Microsoft Visio Standard 2007 for&nbsp;FREE</h3>
<p>Because I don&#8217;t run Windows unless I am testing against Internet Explorer, this copy of <a href="http://www.amazon.com/dp/B000HCZ8GC/?tag=5thirtyone-20">Visio Standard 2007</a> is of no value to me. But, I know someone else out there could sure use a legitimate copy minus the $200 retail asking price. Requirements for entry are&nbsp;simple:</p>
<ol>
<li>Some short blurb on how Visio can help you at home / work</li>
<li>Working email in the comment form (unless you don&#8217;t care about winning)</li>
</ol>
<p>Winner will be randomly selected from the comment list. Eeny, meeny, miny, moe. Entries for consideration will be accepted up until July&nbsp;17th.</p>
<div id="wherego_related"><h3>Readers Also Read</h3><ul><li><a href="http://5thirtyone.com/the-unstandard">WordPress The Unstandard&nbsp;Download</a></li><li><a href="http://5thirtyone.com/archives/614">My Dream App well under&nbsp;way</a></li><li><a href="http://5thirtyone.com/about">About</a></li><li><a href="http://5thirtyone.com/archives/2069">Random VirtualHostX license&nbsp;winners</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://5thirtyone.com/archives/2104/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Collaborate with&#160;Evernote</title>
		<link>http://5thirtyone.com/archives/2103</link>
		<comments>http://5thirtyone.com/archives/2103#comments</comments>
		<pubDate>Thu, 25 Jun 2009 17:32:53 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Breadcrumbs]]></category>
		<category><![CDATA[collaborate]]></category>
		<category><![CDATA[evernote]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://5thirtyone.com/?p=2103</guid>
		<description><![CDATA[Just upgraded from habitual user to collaborative note&#160;pusher.
Readers Also ReadGet Stuff Done &#8211; &#34;Facebook&#34; + &#34;productivity&#34;&#160;(finally)Sweetcron SocialCubes&#160;DownloadThe&#160;BasementBackblaze: Secure unlimited automatic backups for&#160;$5About]]></description>
			<content:encoded><![CDATA[<p>Just upgraded from habitual user to collaborative note&nbsp;pusher.</p>
<div id="wherego_related"><h3>Readers Also Read</h3><ul><li><a href="http://5thirtyone.com/archives/893">Get Stuff Done &#8211; &quot;Facebook&quot; + &quot;productivity&quot;&nbsp;(finally)</a></li><li><a href="http://5thirtyone.com/sweetcron-socialcubes">Sweetcron SocialCubes&nbsp;Download</a></li><li><a href="http://5thirtyone.com/basement">The&nbsp;Basement</a></li><li><a href="http://5thirtyone.com/archives/2049">Backblaze: Secure unlimited automatic backups for&nbsp;$5</a></li><li><a href="http://5thirtyone.com/about">About</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://5thirtyone.com/archives/2103/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hi Apple, the Genius Bar knows, so&#8230; 3.0.1 Update&#160;soon?</title>
		<link>http://5thirtyone.com/archives/2100</link>
		<comments>http://5thirtyone.com/archives/2100#comments</comments>
		<pubDate>Wed, 24 Jun 2009 13:02:16 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[3gs]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://5thirtyone.com/?p=2100</guid>
		<description><![CDATA[
The iPhone 3GS is a great upgrade from the original iPhone 3G. The processor bump, memory boost, and 3.2 megapixel camera with tap-to-zoom &#38; video recording have made me fall in love with the iPhone all over again. If you&#8217;re contemplating or have made the jump from the iPhone 2G, the comparison between the two [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.flickr.com/photos/0401/3650610595/" title="Design Commission iPhone stencil by 0401, on Flickr"><img src="http://farm4.static.flickr.com/3340/3650610595_c5e8d054ec.jpg" width="500" height="375" alt="Design Commission iPhone stencil" /></a></p>
<p>The <a href="http://www.apple.com/iphone/iphone-3gs/">iPhone 3GS</a> is a great upgrade from the original iPhone 3G. The processor bump, memory boost, and 3.2 megapixel camera with tap-to-zoom &amp; video recording have made me fall in love with the iPhone all over again. If you&#8217;re contemplating or have made the jump from the iPhone 2G, the comparison between the two shows a <a href="http://www.ilounge.com/index.php/news/comments/iphone-3g-s-speed-comparison-videos-posted/">definite performance difference</a>. However, a bug has slipped by undetected by the quality&nbsp;inspection&#8230;</p>
<h3>The sound bytes you might&nbsp;hear</h3>
<p>Your handset is screaming for attention, albeit at a frequency you may not ever hear. It&#8217;s been a few days since I took home my shiny iPhone 3GS and had it not been for an early post over on <a href="http://www.boygeniusreport.com/2009/06/20/iphone-3g-s-plagued-by-sound-issues/">Boy Genius Report</a>, I would have continued thinking that Apple had outdone the last iPhone &#8211; problem free. Unfortunately, a flaw was found. A flaw that neither sight or touch could detect.&nbsp;</p>
<p>Lock your screen using the sleep button, send an SMS message, send a email, receive a calendar alert, or hear any OS related sounds. Depending on ambient noise levels or how well your ears can hear, your delicate eardrums may detect a high frequency note lasting roughly 3-4 seconds at the tail end of system sound&nbsp;file(s).</p>
<p align="center"><a href="http://5thirtyone.com/wp-content/uploads/2009/06/sound-test-2.png"><img src="http://5thirtyone.com/wp-content/uploads/2009/06/sound-test-2.png" alt="High frequency sound" title="High frequency sound" width="498" height="298" class="aligncenter size-full wp-image-2102" /></a></p>
<p>During the day, this high frequency isn&#8217;t an issue. At night while I lay in bed sending off a few emails or text messages, the sound is much more noticeable. It&#8217;s one of those things that if you weren&#8217;t aware of it to begin with, you would never notice. But now that you know it exists, you&#8217;re always listening for it. Or at least that&#8217;s the problem I have&nbsp;now.</p>
<h3>Genius Bar associate(s) acknowledge sloppy sound&nbsp;files</h3>
<p>Based on the discussion on the <a href="http://discussions.apple.com/thread.jspa?threadID=2050788">Apple Support</a> boards and a handful of other posts on the net, I had a small sliver of hope that the issue was hardware related. Thinking this, I dropped my info into the Apple Concierge station locking in some time with the geniuses behind the Genius&nbsp;Bar.</p>
<p>After explaining the audio conundrum, my phone was taken to the back for a little &quot;quiet&quot; alone time &#8211; away from the hoardes of people snatching up MacBook Pro&#8217;s or iMac&#8217;s. <em>What economy woes?</em> Five minutes later: &quot;Yes I hear it. I tested a few other 3GS phones back there and they all do the same&quot;.&nbsp;</p>
<p>So no handset replacement. Not a big deal. At least the Genius Bar representative tested [multiple phones] and confirmed that 3GS handsets have a problem. The conclusion &#8211; sloppy audio files. Hopefully Apple will release an update in the near future or announce that the first production batch of phones are a little sour. I was told the solution was to <em>keep the phone on vibrate</em> (which works) or ignore it. Decisions decisions. Keep the phone on silent? Or live with a tiny little voice&nbsp;screaming?</p>
<h3 id="3gsvote">Can you hear the &#8216;eeeeeee&#8217;?</h3>
<p>The sound is there. The question is can you hear it? Cast <a href="http://5thirtyone.com/archives/2100#3gsvote">your vote</a> then spread the&nbsp;word.</p>
Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
<div id="wherego_related"><h3>Readers Also Read</h3><ul><li><a href="http://5thirtyone.com/the-unstandard">WordPress The Unstandard&nbsp;Download</a></li><li><a href="http://5thirtyone.com/archives/2098">12 bugs found with the new iPhone&nbsp;3GS</a></li><li><a href="http://5thirtyone.com/archives/2087">Where new iPhone apps lose their&nbsp;youth</a></li><li><a href="http://5thirtyone.com/archives/2103">Collaborate with&nbsp;Evernote</a></li><li><a href="http://5thirtyone.com/contact">Contact</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://5thirtyone.com/archives/2100/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>12 bugs found with the new iPhone&#160;3GS</title>
		<link>http://5thirtyone.com/archives/2098</link>
		<comments>http://5thirtyone.com/archives/2098#comments</comments>
		<pubDate>Fri, 19 Jun 2009 04:13:35 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Breadcrumbs]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[woot]]></category>

		<guid isPermaLink="false">http://5thirtyone.com/?p=2098</guid>
		<description><![CDATA[A humorous lighthearted assessment of the minor updates found in Apple&#8217;s latest iPhone incarnation &#8211; 3GS.
Readers Also ReadContactWhere new iPhone apps lose their&#160;youthOver the air sync options between iPhone, Mac,&#160;GoogleHi Apple, the Genius Bar knows, so&#8230; 3.0.1 Update&#160;soon?Some apps &#38; games stay on my iPhone out of&#160;guilt]]></description>
			<content:encoded><![CDATA[<p>A humorous lighthearted assessment of the minor updates found in Apple&#8217;s latest iPhone incarnation &#8211; <a&nbsp;href="http://www.apple.com/iphone/">3GS</a>.</p>
<div id="wherego_related"><h3>Readers Also Read</h3><ul><li><a href="http://5thirtyone.com/contact">Contact</a></li><li><a href="http://5thirtyone.com/archives/2087">Where new iPhone apps lose their&nbsp;youth</a></li><li><a href="http://5thirtyone.com/archives/1934">Over the air sync options between iPhone, Mac,&nbsp;Google</a></li><li><a href="http://5thirtyone.com/archives/2100">Hi Apple, the Genius Bar knows, so&#8230; 3.0.1 Update&nbsp;soon?</a></li><li><a href="http://5thirtyone.com/archives/1089">Some apps &amp; games stay on my iPhone out of&nbsp;guilt</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://5thirtyone.com/archives/2098/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TiltShift online magical&#160;wizard</title>
		<link>http://5thirtyone.com/archives/2095</link>
		<comments>http://5thirtyone.com/archives/2095#comments</comments>
		<pubDate>Thu, 04 Jun 2009 15:35:11 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Breadcrumbs]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[tiltshift]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://5thirtyone.com/?p=2095</guid>
		<description><![CDATA[Upload a photo from your computer, slide the toggles left &#38; right, save [and enjoy your impressive&#160;creation].
Readers Also ReadAboutThe&#160;BasementWorkflow favorite: GrabUp + PHP Directory&#160;ListerWordPress The Unstandard&#160;DownloadContact]]></description>
			<content:encoded><![CDATA[<p>Upload a photo from your computer, slide the toggles left &amp; right, save [and enjoy your impressive&nbsp;creation].</p>
<div id="wherego_related"><h3>Readers Also Read</h3><ul><li><a href="http://5thirtyone.com/about">About</a></li><li><a href="http://5thirtyone.com/basement">The&nbsp;Basement</a></li><li><a href="http://5thirtyone.com/archives/1841">Workflow favorite: GrabUp + PHP Directory&nbsp;Lister</a></li><li><a href="http://5thirtyone.com/the-unstandard">WordPress The Unstandard&nbsp;Download</a></li><li><a href="http://5thirtyone.com/contact">Contact</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://5thirtyone.com/archives/2095/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where new iPhone apps lose their&#160;youth</title>
		<link>http://5thirtyone.com/archives/2087</link>
		<comments>http://5thirtyone.com/archives/2087#comments</comments>
		<pubDate>Fri, 29 May 2009 17:09:49 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Breadcrumbs]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://5thirtyone.com/?p=2087</guid>
		<description><![CDATA[A humorous take on the life of a iPhone application reviewer and reasons why it takes so long to see&#160;approval.
Readers Also Read12 bugs found with the new iPhone&#160;3GSSome apps &#38; games stay on my iPhone out of&#160;guiltTiltShift online magical&#160;wizardU.S. Military enlists the iPhone and iPod&#160;TouchiPhone vs. TyTN II Kaiser, which came out on&#160;top?]]></description>
			<content:encoded><![CDATA[<p>A humorous take on the life of a iPhone application reviewer and reasons why it takes so long to see&nbsp;approval.</p>
<div id="wherego_related"><h3>Readers Also Read</h3><ul><li><a href="http://5thirtyone.com/archives/2098">12 bugs found with the new iPhone&nbsp;3GS</a></li><li><a href="http://5thirtyone.com/archives/1089">Some apps &amp; games stay on my iPhone out of&nbsp;guilt</a></li><li><a href="http://5thirtyone.com/archives/2095">TiltShift online magical&nbsp;wizard</a></li><li><a href="http://5thirtyone.com/archives/2074">U.S. Military enlists the iPhone and iPod&nbsp;Touch</a></li><li><a href="http://5thirtyone.com/archives/860">iPhone vs. TyTN II Kaiser, which came out on&nbsp;top?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://5thirtyone.com/archives/2087/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transformers: Revenge of the Fallen vs. Terminator&#160;Salvation</title>
		<link>http://5thirtyone.com/archives/2085</link>
		<comments>http://5thirtyone.com/archives/2085#comments</comments>
		<pubDate>Thu, 21 May 2009 05:40:15 +0000</pubDate>
		<dc:creator>Derek</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[terminator]]></category>
		<category><![CDATA[transformers]]></category>

		<guid isPermaLink="false">http://5thirtyone.com/?p=2085</guid>
		<description><![CDATA[Not much needs to be said here. Transformers: Revenge of the Fallen and Terminator Salvation. Which one do you think will have a bigger box office&#160;turnout?


Personally, I&#8217;m leaning more towards Transformers as my favorite of the two. Original video embeds were from Vimeo but were taken&#160;down.
Readers Also ReadAboutThe&#160;BasementWordPress Grid Focus&#160;DownloadWordPress The Unstandard&#160;DownloadUNO &#8211; Seamless OSX&#160;interface]]></description>
			<content:encoded><![CDATA[<p>Not much needs to be said here. <a href="http://www.imdb.com/title/tt1055369/">Transformers: Revenge of the Fallen</a> and <a href="http://www.imdb.com/title/tt0438488/">Terminator Salvation</a>. Which one do you think will have a bigger box office&nbsp;turnout?</p>
<p align="center"><object type="application/x-shockwave-flash" style="width:500px; height:307px;" data="http://www.youtube.com/v/dmgbbGJW6ZE"><param name="movie" value="http://www.youtube.com/v/dmgbbGJW6ZE" /></object></p>
<p align="center"><object type="application/x-shockwave-flash" style="width:500px; height:307px;" data="http://www.youtube.com/v/IcYdjHpJUV8"><param name="movie" value="http://www.youtube.com/v/IcYdjHpJUV8" /></object></p>
<p>Personally, I&#8217;m leaning more towards Transformers as my favorite of the two. <em>Original video embeds were from Vimeo but were taken&nbsp;down.</em></p>
<div id="wherego_related"><h3>Readers Also Read</h3><ul><li><a href="http://5thirtyone.com/about">About</a></li><li><a href="http://5thirtyone.com/basement">The&nbsp;Basement</a></li><li><a href="http://5thirtyone.com/grid-focus">WordPress Grid Focus&nbsp;Download</a></li><li><a href="http://5thirtyone.com/the-unstandard">WordPress The Unstandard&nbsp;Download</a></li><li><a href="http://5thirtyone.com/archives/389">UNO &#8211; Seamless OSX&nbsp;interface</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://5thirtyone.com/archives/2085/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.962 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2009-07-05 11:01:39 -->
<!-- Compression = gzip -->