<?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>tekphile</title>
	<atom:link href="http://www.tekphile.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tekphile.com</link>
	<description></description>
	<lastBuildDate>Sat, 12 May 2012 22:49:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Make Eclipse Run Blazingly Fast On Mac OS X</title>
		<link>http://www.tekphile.com/2012/05/make-eclipse-run-blazingly-fast-on-mac-os-x/</link>
		<comments>http://www.tekphile.com/2012/05/make-eclipse-run-blazingly-fast-on-mac-os-x/#comments</comments>
		<pubDate>Sat, 12 May 2012 22:00:37 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=516</guid>
		<description><![CDATA[<p>If you use Eclipse on OS X, you&#8217;ve probably been frustrated by how slow it can be. As it turns out, this can be easily improved upon! Eclipse uses Java 1.5 by default in OS X. This is probably for compatibility reasons, but I don&#8217;t know for sure. Regardless, I [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>If you use Eclipse on OS X, you&#8217;ve probably been frustrated by how slow it can be. As it turns out, this can be easily improved upon!</p>
<div>Eclipse uses Java 1.5 by default in OS X. This is probably for compatibility reasons, but I don&#8217;t know for sure. Regardless, I got a huge boost by modifying my eclipse.ini with the following settings:</div>
<div>
<div>
<pre class="brush:plain">-Dosgi.requiredJavaVersion=1.6
-XX:PermSize=256m
-XX:MaxPermSize=256m
-Xms1024m
-Xmx1024m</pre>
</div>
<p>The key change is the first line, Dosgi.requiredJavaVersion. Make sure it is set to 1.6. The other settings deal with the amount of memory allocated to the JVM for various purposes. The settings I&#8217;ve listed above may be too aggressive if you only have 4GB of RAM, but you can play around with them if you want, or leave them as they already are configured. The important thing is changing to Java 1.6.</p>
<p>You may be wondering, &#8220;where can I find the eclipse.ini file?&#8221;. You need to navigate to the Eclipse application in Finder, then right-click and select &#8220;Show Package Contents&#8221;. Then open the Contents/MacOS folder and you&#8217;ll find your eclipse.ini. Spotlight will not find it because it&#8217;s inside the application bundle. Of course, you could also use Terminal, but I&#8217;ll assume that if you use Terminal, you can find it on your own ;-).</p>
<p>Enjoy! This made Eclipse much faster / more responsive for me.</p>
</div>
<p>By the way, if you&#8217;re still on OS X Leopard, the default JVM there is 1.5. I&#8217;m not sure (since I don&#8217;t have Leopard anymore), but you might need to adjust your Java Preferences. See: <a href="http://adam.shand.net/archives/2009/selecting_java_version_on_mac_osx_10_5_leopard/" target="_blank">Selecting Java version on OS X Leopard</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2012/05/make-eclipse-run-blazingly-fast-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quickly enable robust Python logging throughout an application</title>
		<link>http://www.tekphile.com/2012/04/quickly-enable-robust-python-logging-throughout-an-application/</link>
		<comments>http://www.tekphile.com/2012/04/quickly-enable-robust-python-logging-throughout-an-application/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 17:06:20 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=531</guid>
		<description><![CDATA[<p>Sometimes it&#8217;s helpful to quickly enable logging in a Python application so you can peer into what the libraries you depend on are doing under the hood. Many libraries include logging, but in order to see the messages they rely on you configuring a root level logger in your application&#8217;s [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>Sometimes it&#8217;s helpful to quickly enable logging in a Python application so you can peer into what the libraries you depend on are doing under the hood. Many libraries include logging, but in order to see the messages they rely on you configuring a root level logger in your application&#8217;s &#8220;main&#8221;.</p>
<p>It took me longer than I&#8217;d hoped to get this set up for a script I was working on to test out some ideas, so hopefully this post will save someone else some time.</p>
<p>In your application or script&#8217;s main file or thread:</p>
<pre class="brush:py">import logging

logging.basicConfig(**{
    'format': '%(asctime)s - %(name)s - %(levelname)s - %(message)s',
    'level': logging.DEBUG
})
logger = logging.getLogger()</pre>
<pre></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2012/04/quickly-enable-robust-python-logging-throughout-an-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View all tabs in Chrome with Mac Trackpad Gesture</title>
		<link>http://www.tekphile.com/2012/04/view-all-tabs-in-chrome-with-mac-trackpad-gesture/</link>
		<comments>http://www.tekphile.com/2012/04/view-all-tabs-in-chrome-with-mac-trackpad-gesture/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 19:54:21 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=519</guid>
		<description><![CDATA[<p>If you&#8217;re like me, you probably have way too many tabs open in your web browser by the end of the day. It can be frustrating to find a tab as each one shrinks to be a little smaller with every tab you open. &#160; Well now, Chrome has a feature [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, you probably have <em>way</em> too many tabs open in your web browser by the end of the day. It can be frustrating to find a tab as each one shrinks to be a little smaller with every tab you open.</p>
<p><img class="alignnone" title="Lots of Tabs" src="http://www.tekphile.com/assets/lotsatabs.png" alt="" width="1154" height="38" /></p>
<p>&nbsp;</p>
<p>Well now, Chrome has a feature similar to OS X&#8217;s Expose to easily see all your open tabs in a much more user-friendly way so you can quickly switch between them&#8211;the aptly named &#8220;Tabs Overview Mac&#8221;.</p>
<p>To enable, open a new tab (doh) in Chrome and type in the following into the address bar: &#8220;about:flags&#8221;. When a page loads, find the setting named &#8220;Tabs Overview Mac&#8221;, and enable it. You&#8217;ll need to restart your browser.</p>
<p><img class="alignnone" title="Chrome Tabs Settings Mac" src="http://www.tekphile.com/assets/chrometabssettings.png" alt="" width="820" height="249" /></p>
<p>Then, next time you&#8217;re in Chrome, simply swipe in a downward fashion with 3 fingers on your trackpad, and tada!</p>
<p><img class="alignnone" title="All of the Tabs, JubJub" src="http://www.tekphile.com/assets/tabsexpose.png" alt="" width="1153" height="635" /></p>
<p>Google Chrome is one step closer to supplanting the desktop! ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2012/04/view-all-tabs-in-chrome-with-mac-trackpad-gesture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beware gotcha when using HTML comments in Firefox</title>
		<link>http://www.tekphile.com/2011/12/beware-gotcha-when-using-html-comments-in-firefox/</link>
		<comments>http://www.tekphile.com/2011/12/beware-gotcha-when-using-html-comments-in-firefox/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 23:07:21 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=483</guid>
		<description><![CDATA[<p>Just spent far too much time on this little gotcha, hopefully this saves someone a lot of frustration! Let&#8217;s say you have some markup, like so: &#60;div id=&#8221;someContainer&#8221;&#62; &#60;span&#62;Some text&#60;/span&#62; &#60;/div&#62;&#60;!&#8211; someContainer &#8211;&#62; It&#8217;s relatively common for people to put a closing comment to help match up closing tags. I [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>Just spent far too much time on this little gotcha, hopefully this saves someone a lot of frustration!</p>
<p>Let&#8217;s say you have some markup, like so:</p>
<pre class="brush:xml">&lt;div id="someContainer"&gt;
    &lt;span&gt;Some text&lt;/span&gt;
&lt;/div&gt;&lt;!-- someContainer --&gt;</pre>
<p>It&#8217;s relatively common for people to put a closing comment to help match up closing tags. I personally don&#8217;t care for it because it adds bytes to your HTML and a decent IDE should make it clear which opening and closing tags are paired together. Nevertheless, a lot of people do it, including some people I work with.</p>
<p class="brush:xml">Where you can get into trouble is if you decide you want to comment out that markup, like this:</p>
<pre class="brush:xml">&lt;!--
&lt;div id="someContainer"&gt;
    &lt;span&gt;Some text&lt;/span&gt;
&lt;/div&gt;&lt;!-- someContainer --&gt;</pre>
<p class="brush:xml">Both my <a title="Eclipse" href="http://eclipse.org" target="_blank">Eclipse IDE</a> and the Chrome and Safari (WebKit-based) browsers had absolutely no problem with this. But Firefox thinks that a comment open tag has been left open, and it produces mangled HTML as a result!</p>
<p class="brush:xml">If you are seeing weird behavior in Firefox, check your HTML comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2011/12/beware-gotcha-when-using-html-comments-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn to be an iOS Developer from the best, without paying tuition</title>
		<link>http://www.tekphile.com/2011/10/learn-to-be-an-ios-developer-from-the-best-without-paying-tuition/</link>
		<comments>http://www.tekphile.com/2011/10/learn-to-be-an-ios-developer-from-the-best-without-paying-tuition/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 22:46:33 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=465</guid>
		<description><![CDATA[<p>There are some really great resources available if you want to learn to develop for the iOS platform (iPhones, iPod Touches, iPads). But perhaps the best resources out there, are free! Professor Paul Hegarty of Stanford teaches CS 193P &#8211; iPhone Application Development, and all of the lectures are available for [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>There are some really great resources available if you want to learn to develop for the iOS platform (iPhones, iPod Touches, iPads). But perhaps the best resources out there, are free! Professor Paul Hegarty of Stanford teaches CS 193P &#8211; iPhone Application Development, and all of the lectures are available for free on iTunes U!</p>
<p>Here&#8217;s everything you need to get started:</p>
<h4><strong>The Lectures</strong></h4>
<ul>
<li><a title="iPhone Development SD" href="http://itunes.apple.com/us/itunes-u/developing-apps-for-ios-sd/id395631522" target="_blank">Standard Definition</a></li>
<li><a href="http://itunes.apple.com/us/itunes-u/developing-apps-for-ios-hd/id395605774" target="_blank">High Definition</a> (Recommended, especially when Paul is showing code examples during lectures)</li>
</ul>
<h4>Xcode</h4>
<p><a href="http://developer.apple.com/technologies/" target="_blank">Xcode</a> is Apple&#8217;s comprehensive App development tool suite, including tools to write code, graphically build your app&#8217;s user interfaces, debug, and measure performance. It&#8217;s free if you&#8217;re already an Apple Developer, but if you&#8217;re not, you can buy it for $4.99 on the Mac App Store. (Note: it is a <strong><em>huge</em></strong> download, more than 4GB. Go do something else while it&#8217;s downloading!)</p>
<h4>Syllabus and Homework</h4>
<p>The course materials can be found <a href="http://www.stanford.edu/class/cs193p/cgi-bin/drupal/downloads-2010-fall" target="_blank">here</a>.</p>
<p>One final note: these materials were produced before iOS5 and Xcode 4. However, the <a href="http://www.stanford.edu/class/cs193p/cgi-bin/drupal/" target="_blank">updated lectures</a> for these newer versions should be posted in early November, 2011 (soon!) That said, I&#8217;ve taken some of the classes already, and I haven&#8217;t had any issues even though I&#8217;m using the newer version of Xcode.</p>
<h4>Recommended Prerequisites</h4>
<p>You&#8217;ll be best prepared to dive right into iOS development if you have prior experience with:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Object-oriented_programming" target="_blank">Object-oriented programming</a>, in any language (i.e. Java, C++, PHP, Python, Ruby)</li>
<li><a href="http://en.wikipedia.org/wiki/Event-driven_programming" target="_blank">Event-driven programming</a></li>
</ul>
<div>However, if you&#8217;ve got enough drive, these deficits in experience are merely obstacles to overcome. Apple&#8217;s tools for iOS development amount to the most advanced and straightforward graphical application stack I&#8217;ve ever seen. An awful lot of the scary and complicated stuff is handled automatically for you, and you can mostly build your entire applications in Interface Builder by dragging and dropping the buttons, sliders, etc. that you need to make your app tick!</div>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2011/10/learn-to-be-an-ios-developer-from-the-best-without-paying-tuition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disabling Chrome&#8217;s Obnoxious HTML5 Form Validation</title>
		<link>http://www.tekphile.com/2011/10/disabling-chromes-obnoxious-html5-form-validation/</link>
		<comments>http://www.tekphile.com/2011/10/disabling-chromes-obnoxious-html5-form-validation/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 22:39:31 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=434</guid>
		<description><![CDATA[<p>Has anyone else been bitten by this recently? You&#8217;re making a form for your website, and you need to collect the user&#8217;s email address. Rockstar web developer that you are, you use Google Chrome to test, and you&#8217;re using the fancy new HTML5 &#60;form&#62; tags. You maybe have something like: [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>Has anyone else been bitten by this recently? You&#8217;re making a form for your website, and you need to collect the user&#8217;s email address. Rockstar web developer that you are, you use Google Chrome to test, and you&#8217;re using the fancy new HTML5 &lt;form&gt; tags. You maybe have something like:</p>
<div id="_mcePaste">
<pre class="brush:xml">&lt;form id="signupForm" method="POST"&gt;&lt;code&gt;
&lt;input id="email" name="email" type="email" /&gt;
&lt;input id="passwd" name="passwd" type="password" /&gt;
&lt;input id="confirm" name="confirm" type="password" /&gt;
&lt;/form&gt;</pre>
</div>
<p>And then you go to test out your form in Chrome. You type in a bogus email address to test your server-side input validation.</p>
<p><img style="width: 300; height: 161;" title="Hosted by imgur.com" src="http://i.imgur.com/UHjDO.png" alt="" /></p>
<p>And when you hit enter to submit the form, you see this:</p>
<p><img style="width: 300; height: 174;" title="Hosted by imgur.com" src="http://i.imgur.com/94oml.png" alt="" /></p>
<p>Where did this come from!?! Chrome apparently tries to do its own form validation. Which is great I guess, but not when you want to do your own custom validation.</p>
<p>Luckily, this is easily disabled using the &#8220;novalidate&#8221; attribute in the &lt;form&gt; element, like so:</p>
<pre class="brush:xml">&lt;form id="signupForm" method="POST" novalidate&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2011/10/disabling-chromes-obnoxious-html5-form-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entrepreneurs Threatened By Ironically Named America Invents Act</title>
		<link>http://www.tekphile.com/2011/09/entrepreneurs-threatened-by-ironically-named-america-invents-act/</link>
		<comments>http://www.tekphile.com/2011/09/entrepreneurs-threatened-by-ironically-named-america-invents-act/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 19:57:28 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[entrepreneurship]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=411</guid>
		<description><![CDATA[<p>So you&#8217;ve got a great idea for a business? Odds are, you&#8217;re not the only one that&#8217;s thought of it. One of the biggest worries&#8211;and wastes of time&#8211;for new entrepreneurs is &#8220;what if someone else steals my idea?&#8221; They get very secretive, make people sign NDAs, and start talking to [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;ve got a great idea for a business? Odds are, you&#8217;re not the only one that&#8217;s thought of it.</p>
<p>One of the biggest worries&#8211;and wastes of time&#8211;for new entrepreneurs is &#8220;what if someone else steals my idea?&#8221; They get very secretive, make people sign NDAs, and start talking to patent lawyers. As if you have the capital to litigate an infringer! What you really should be doing is going out and talking to customers and telling people your idea. You need to validate it in the marketplace!</p>
<p>Big companies couldn’t care less about what patents you hold, especially if you haven&#8217;t executed and produced the widget or service your patent describes. In the world we live in, it is usually wiser to act on attractive business opportunities if you have the means to execute on them than to worry about potential infringement. Android is a perfect example of this. Google entered the smartphone market and became a leader in two years. Now there’s a war being waged over <a href="http://arstechnica.com/business/news/2011/09/apple-google-acquisition-means-motorola-lost-its-patent-rights.ars?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss" target="_blank">smartphone patents</a>, but Android marketshare <a href="http://www.ibtimes.com/articles/201828/20110822/apple-iphone-5-google-android-rim-blackberry.htm" target="_blank">continues to grow</a>.</p>
<p>President Obama is <a href="http://politics.blogs.foxnews.com/2011/09/13/president-obama-sign-america-invents-act-friday" target="_blank">about to sign</a> a patent reform bill into law that will make it even harder for entrepreneurs to innovate and create jobs. The <a href="http://www.opencongress.org/bill/112-h1249/show" target="_blank">America Invents Act</a> switches US patent law from a &#8220;first to invent&#8221; to a &#8220;first to file&#8221; system. This means that prior art no longer can invalidate a patent&#8211;unless it can be proven that the idea was directly stolen from the original inventor. This change will go into effect 18 months after enactment.</p>
<p>This change in the patent system, while more in line with the rest of the world, will simply cause an avalanche of patent filings by major corporations and patent trolls. Big companies who can afford full-time patent lawyers now have an even larger advantage over small entrepreneurs who often times cannot even afford the cost or time of filing a decent provisional patent.</p>
<p>Serious patent reform is necessary if America is to continue in it&#8217;s place as the world&#8217;s leader in economic power. We need to encourage innovation, and this patent &#8220;reform&#8221; bill does just the opposite. It places more power in the hands of large corporations, and consequentially places innovative start-ups at an even greater disadvantage.</p>
<p>This bill will make it harder for entrepreneurs to do what they do&#8211;innovate, and create jobs. <a href="http://www.kauffman.org/newsroom/u-s-job-growth-driven-entirely-by-startups.aspx">Research</a> by the Kauffman Foundation shows that new companies add 3 million jobs annually, while older companies <em>lose</em> 1 million. With <a href="http://www.google.com/publicdata/explore?ds=z1ebjpgk2654c1_&amp;met_y=unemployment_rate&amp;tdim=true&amp;fdim_y=seasonality:S&amp;dl=en&amp;hl=en&amp;q=latest+us+unemployment+data#ctype=l&amp;strail=false&amp;nselm=h&amp;met_y=unemployment_rate&amp;fdim_y=seasonality:S&amp;scale_y=lin&amp;ind_y=false&amp;rdim=state&amp;ifdim=state&amp;tdim=true&amp;hl=en&amp;dl=en" target="_blank">unemployment</a> at 9.1%, we really cannot afford to pass laws that give advantages to companies that, on balance, lose jobs each year.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2011/09/entrepreneurs-threatened-by-ironically-named-america-invents-act/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>30 Day Challenge Interrupted</title>
		<link>http://www.tekphile.com/2011/08/30-day-challenge-interrupted/</link>
		<comments>http://www.tekphile.com/2011/08/30-day-challenge-interrupted/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 03:39:24 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[30daychallenge]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=409</guid>
		<description><![CDATA[<p>This is so frustrating, but I am sick with a sore throat and haven&#8217;t been able to record. But I am determined to finish, so as soon as I can I will continue!!!</p>
]]></description>
			<content:encoded><![CDATA[<p>This is so frustrating, but I am sick with a sore throat and haven&#8217;t been able to record. But I am determined to finish, so as soon as I can I will continue!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2011/08/30-day-challenge-interrupted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 10 – 30 Day Challenge – John Mayer – Why Georgia</title>
		<link>http://www.tekphile.com/2011/08/day-10-%e2%80%93-30-day-challenge-%e2%80%93-john-mayer-%e2%80%93-why-georgia/</link>
		<comments>http://www.tekphile.com/2011/08/day-10-%e2%80%93-30-day-challenge-%e2%80%93-john-mayer-%e2%80%93-why-georgia/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 00:20:25 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[30daychallenge]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=405</guid>
		<description><![CDATA[<p>I&#8217;m a third of the way done with my #30DayChallenge. I know this is the 2nd John Mayer song I&#8217;ve done, but I really was racking my brain for songs to do and couldn&#8217;t come up with one that I could learn fast enough to attempt to do in one [...]</p>
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a third of the way done with my <a href="http://www.tekphile.com/2011/08/30-days/" target="_blank">#30DayChallenge</a>. I know this is the 2nd John Mayer song I&#8217;ve done, but I really was racking my brain for songs to do and couldn&#8217;t come up with one that I could learn fast enough to attempt to do in one take.</p>
<p>On the other hand, this song is probably one of the more complicated songs I&#8217;ve attempted. For one, there&#8217;s a lot of syncopation in the funky half-fingerpicked, half-strummed technique that he uses in a lot of his songs. It also is faster than most of the other songs I&#8217;ve attempted, which really pushes the limits of my singing abilities.</p>
<p>Hope you like it.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="81" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F21492866" /><embed type="application/x-shockwave-flash" width="100%" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F21492866" allowscriptaccess="always"></embed></object> <span><a href="http://soundcloud.com/kevinstanton/30-day-challenge-john-mayer">30 Day Challenge – John Mayer – Why Georgia</a> by <a href="http://soundcloud.com/kevinstanton">Kevin Stanton</a></span></p>
<p>Since I&#8217;m participating in an all-nighter charity event all weekend, <a href="http://chi2011.overnightwebsitechallenge.com/" target="_blank">The Nerdery: Overnight Website Challenge</a>, I&#8217;ll have to catch up on my recordings on Monday.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2011/08/day-10-%e2%80%93-30-day-challenge-%e2%80%93-john-mayer-%e2%80%93-why-georgia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 9 – 30 Day Challenge – Pearl Jam &#8211; Elderly Woman Behind A Counter In A Small Town</title>
		<link>http://www.tekphile.com/2011/08/day-9-%e2%80%93-30-day-challenge-%e2%80%93-pearl-jam-elderly-woman-behind-a-counter-in-a-small-town/</link>
		<comments>http://www.tekphile.com/2011/08/day-9-%e2%80%93-30-day-challenge-%e2%80%93-pearl-jam-elderly-woman-behind-a-counter-in-a-small-town/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 23:05:55 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[30daychallenge]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=399</guid>
		<description><![CDATA[<p>Ok, yes, I didn&#8217;t post this yesterday. Another hectic day at work. But here&#8217;s day 9. Day 10 will be up soon. 30 Day Challenge &#8211; Pearl Jam &#8211; Elderly Woman Behind A Counter In A Small Town by Kevin Stanton</p>
]]></description>
			<content:encoded><![CDATA[<p>Ok, yes, I didn&#8217;t post this yesterday. Another hectic day at work. But here&#8217;s day 9. Day 10 will be up soon.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="81" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F21489361" /><embed type="application/x-shockwave-flash" width="100%" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F21489361" allowscriptaccess="always"></embed></object> <span><a href="http://soundcloud.com/kevinstanton/30-day-challenge-pearl-jam">30 Day Challenge &#8211; Pearl Jam &#8211; Elderly Woman Behind A Counter In A Small Town</a> by <a href="http://soundcloud.com/kevinstanton">Kevin Stanton</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2011/08/day-9-%e2%80%93-30-day-challenge-%e2%80%93-pearl-jam-elderly-woman-behind-a-counter-in-a-small-town/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

