<?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>where technology is headed</description>
	<lastBuildDate>Mon, 05 Dec 2011 05:48:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>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[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="someContainer"&#62; &#60;span&#62;Some text&#60;/span&#62; &#60;/div&#62;&#60;!-- someContainer --&#62; 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 [...]]]></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[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! Here&#8217;s [...]]]></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[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: &#60;form id="signupForm" method="POST"&#62;&#60;code&#62; &#60;input id="email" [...]]]></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[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 patent lawyers. As if you [...]]]></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[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!!!]]></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[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 take. On the other hand, [...]]]></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[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]]></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>
		<item>
		<title>Day 8 – 30 Day Challenge – Ryan Adams – Wonderwall</title>
		<link>http://www.tekphile.com/2011/08/day-8-%e2%80%93-30-day-challenge-%e2%80%93-ryan-adams-%e2%80%93-wonderwall/</link>
		<comments>http://www.tekphile.com/2011/08/day-8-%e2%80%93-30-day-challenge-%e2%80%93-ryan-adams-%e2%80%93-wonderwall/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 04:38:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[30daychallenge]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=394</guid>
		<description><![CDATA[Today&#8217;s for my #30DayChallenge I&#8217;m singing Ryan Adams&#8217; cover of Wonderwall, originally by Oasis. 30 Day Challenge &#8211; Ryan Adams &#8211; Wonderwall by Kevin Stanton Personally, I think this is one of the best I&#8217;ve done so far. It&#8217;s a slow song and doesn&#8217;t really have a wide vocal range to it, so it demands a [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s for my <a href="http://www.tekphile.com/2011/08/30-days/" target="_blank">#30DayChallenge</a> I&#8217;m singing Ryan Adams&#8217; cover of Wonderwall, originally by Oasis.</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%2F21362308" /><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%2F21362308" allowscriptaccess="always"></embed></object> <span><a href="http://soundcloud.com/kevinstanton/30-day-challenge-ryan-adams">30 Day Challenge &#8211; Ryan Adams &#8211; Wonderwall</a> by <a href="http://soundcloud.com/kevinstanton">Kevin Stanton</a></span></p>
<p><span>Personally, I think this is one of the best I&#8217;ve done so far. It&#8217;s a slow song and doesn&#8217;t really have a wide vocal range to it, so it demands a lot less from me than most of the other songs I&#8217;ve done.</span></p>
<p>As in all my recordings for the #30DayChallenge, this was done in one take.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2011/08/day-8-%e2%80%93-30-day-challenge-%e2%80%93-ryan-adams-%e2%80%93-wonderwall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Next Big Thing Isn&#8217;t Going To Be Obvious</title>
		<link>http://www.tekphile.com/2011/08/the-next-big-thing-isnt-going-to-be-obvious/</link>
		<comments>http://www.tekphile.com/2011/08/the-next-big-thing-isnt-going-to-be-obvious/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 15:57:31 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=388</guid>
		<description><![CDATA[Did you know that Sergey Brin and Larry Page tried selling Google to Excite for $1 million in 1999? Excite turned them down. From Entrepreneurs talk back: Straight-up feedback and advice for VCs and angels: A first-time entrepreneur who has raised nearly $5 million for her start-up writes, &#8220;My biggest concern for the health of the [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know that Sergey Brin and Larry Page tried selling Google to Excite for $1 million in 1999? Excite turned them down.</p>
<p>From <a href="http://www.boston.com/business/technology/innoeco/2011/08/entrepreneurs_talk_back_to_inv.html" target="_blank">Entrepreneurs talk back: Straight-up feedback and advice for VCs and angels</a>:</p>
<blockquote><p>A first-time entrepreneur who has raised nearly $5 million for her start-up writes, &#8220;My biggest concern for the health of the start-up economy is the avoidance of any kind of original thinking by VC&#8217;s. It just isn&#8217;t rational to fund the fourth, fifth or seventeenth copycat business. I love what Floodgate&#8217;s Mike Maples and Ann Miuro-Ko say about their preference for funding non-conforming ideas because they usually turn out to be the biggest ones. They say if an company is a hot deal it is rarely a home run because it&#8217;s not original enough. The real &#8217;10+ baggers&#8217; are the investments no one would touch — the ones they had to defend the first few years.&#8221;</p></blockquote>
<p>I believe that true entrepreneurs can believe in their idea to a fault, and it&#8217;s really hard to tell blind optimism from revolutionary insight. Still, the next Google isn&#8217;t going to be an un-original idea. It&#8217;s going to get laughed at a bunch of times before it finds its path to greatness.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2011/08/the-next-big-thing-isnt-going-to-be-obvious/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Day 7 – 30 Day Challenge – Ray LaMontagne – Trouble</title>
		<link>http://www.tekphile.com/2011/08/day-7-%e2%80%93-30-day-challenge-%e2%80%93-ray-lamontagne-%e2%80%93-trouble/</link>
		<comments>http://www.tekphile.com/2011/08/day-7-%e2%80%93-30-day-challenge-%e2%80%93-ray-lamontagne-%e2%80%93-trouble/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 03:53:31 +0000</pubDate>
		<dc:creator>stantonk</dc:creator>
				<category><![CDATA[30daychallenge]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://www.tekphile.com/?p=385</guid>
		<description><![CDATA[And here&#8217;s today&#8217;s song. Musically a really simple song, yet incredible due to the rhythm and Mr. LaMontagne&#8217;s incredible, soulful voice. Definitely pushing the limits of my vocal range on this one, and he also tries to cram a ridiculous amount of words into the last part of each verse! 30 Day Challenge &#8211; Ray [...]]]></description>
			<content:encoded><![CDATA[<p>And here&#8217;s today&#8217;s song. Musically a really simple song, yet incredible due to the rhythm and Mr. LaMontagne&#8217;s incredible, soulful voice. Definitely pushing the limits of my vocal range on this one, and he also tries to cram a ridiculous amount of words into the last part of each verse!</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%2F21287616" /><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%2F21287616" allowscriptaccess="always"></embed></object> <span><a href="http://soundcloud.com/kevinstanton/30-day-challenge-ray">30 Day Challenge &#8211; Ray LaMontagne &#8211; Trouble</a> by <a href="http://soundcloud.com/kevinstanton">Kevin Stanton</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tekphile.com/2011/08/day-7-%e2%80%93-30-day-challenge-%e2%80%93-ray-lamontagne-%e2%80%93-trouble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

