<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Saturday Place</title>
	<atom:link href="http://saturdayplace.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://saturdayplace.wordpress.com</link>
	<description>Where it's Saturday everyday.  Don't you wish you worked here?</description>
	<lastBuildDate>Mon, 27 Dec 2010 18:09:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='saturdayplace.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The Saturday Place</title>
		<link>http://saturdayplace.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://saturdayplace.wordpress.com/osd.xml" title="The Saturday Place" />
	<atom:link rel='hub' href='http://saturdayplace.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Django Template Language in CSS</title>
		<link>http://saturdayplace.wordpress.com/2009/04/29/django-template-language-in-css/</link>
		<comments>http://saturdayplace.wordpress.com/2009/04/29/django-template-language-in-css/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 18:18:23 +0000</pubDate>
		<dc:creator>Trevor Hunsaker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://saturdayplace.wordpress.com/?p=53</guid>
		<description><![CDATA[I just read Joshua Jonah&#8217;s post about Limiting HTTP requests with Django.  The gist is that he&#8217;s starting to get worried about all the different &#60;link rel='stylesheet'&#62;&#8216;s and &#60;script src='/some/js'&#62;&#8216;s in his document &#60;head&#62;, and we all know that each of those generates a separate HTTP request which will slow down your page&#8217;s load time. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=53&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just read Joshua Jonah&#8217;s post about <a href="http://joshuajonah.com/blog/2009/apr/29/limiting-http-requests-django/" target="_blank">Limiting HTTP requests with Django</a>.  The gist is that he&#8217;s starting to get worried about all the different <code>&lt;link rel='stylesheet'&gt;</code>&#8216;s and <code>&lt;script src='/some/js'&gt;</code>&#8216;s in his document <code>&lt;head&gt;, and</code> we all know that each of those generates a separate HTTP request which will slow down your page&#8217;s load time.</p>
<blockquote><p>My technique uses a view that builds a JS/CSS file with Django. The CSS/JS files that are compiled like this should be stored in your templates directory instead of your static media folder so they are accessible to the view&#8230;</p>
<p>&#8230;This allows you to used [<em>sic</em>] Django template language in your CSS files.</p></blockquote>
<p>And I had an ah-HA! moment.  Could this be the way to use variables in your CSS files?  Having a view that defines a bunch of colors:</p>
<blockquote><p>
def buildcss(request):<br />
&#8230;snip&#8230;<br />
linkColor = &#8216;#999&#8242;<br />
linkHoverColor = &#8216;blue&#8217;<br />
&#8230;
</p></blockquote>
<p>and passing that into the template that generates your CSS</p>
<blockquote><p>
a {<br />
color: {{ linkColor }};<br />
}</p>
<p>a:hover {<br />
color: {{ linkHoverColor }};<br />
}
</p></blockquote>
<p>Now, you probably don&#8217;t want have Django performing doing this kind of work for every request, so you might want to cache the URL that generates your CSS.  And I&#8217;m not sure if there are other downsides to this I haven&#8217;t considered, but it&#8217;s interesting to think about.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saturdayplace.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saturdayplace.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saturdayplace.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saturdayplace.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saturdayplace.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saturdayplace.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saturdayplace.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saturdayplace.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saturdayplace.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saturdayplace.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saturdayplace.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saturdayplace.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saturdayplace.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saturdayplace.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=53&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saturdayplace.wordpress.com/2009/04/29/django-template-language-in-css/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b87c225ae3e35a7a6671644247c2357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marco</media:title>
		</media:content>
	</item>
		<item>
		<title>I finally installed Chrome</title>
		<link>http://saturdayplace.wordpress.com/2009/03/19/i-finally-installed-chrome/</link>
		<comments>http://saturdayplace.wordpress.com/2009/03/19/i-finally-installed-chrome/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 18:10:08 +0000</pubDate>
		<dc:creator>Trevor Hunsaker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://saturdayplace.wordpress.com/?p=49</guid>
		<description><![CDATA[I ran across this link at reddit, and finally decided to install google&#8217;s chrome browser. I&#8217;d heard all about how Chrome handled javascript so much better than anyone else, and balldroppings was the first site I ran across that actually made me want to try it out.  Suffice to say, chrome handled the load WAYY [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=49&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I ran across <a href="http://balldroppings.com/js/" target="_blank">this link</a> at reddit, and finally decided to install google&#8217;s chrome browser. I&#8217;d heard all about how Chrome handled javascript so much better than anyone else, and balldroppings was the first site I ran across that actually made me want to try it out.  Suffice to say, chrome handled the load WAYY better than Firefox.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saturdayplace.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saturdayplace.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saturdayplace.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saturdayplace.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saturdayplace.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saturdayplace.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saturdayplace.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saturdayplace.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saturdayplace.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saturdayplace.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saturdayplace.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saturdayplace.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saturdayplace.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saturdayplace.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=49&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saturdayplace.wordpress.com/2009/03/19/i-finally-installed-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b87c225ae3e35a7a6671644247c2357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marco</media:title>
		</media:content>
	</item>
		<item>
		<title>Recursive Grep</title>
		<link>http://saturdayplace.wordpress.com/2009/02/23/recursive-grep/</link>
		<comments>http://saturdayplace.wordpress.com/2009/02/23/recursive-grep/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 19:28:06 +0000</pubDate>
		<dc:creator>Trevor Hunsaker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://saturdayplace.wordpress.com/?p=43</guid>
		<description><![CDATA[find . -exec grep -l "search term" {} \; My boss showed me this nifty little one-liner a while ago.  I thought I&#8217;d better post it before it dissapeared off my white board.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=43&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote>
<pre>find . -exec grep -l "search term" {} \;</pre>
</blockquote>
<p>My boss showed me this nifty little one-liner a while ago.  I thought I&#8217;d better post it before it dissapeared off my white board.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saturdayplace.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saturdayplace.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saturdayplace.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saturdayplace.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saturdayplace.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saturdayplace.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saturdayplace.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saturdayplace.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saturdayplace.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saturdayplace.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saturdayplace.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saturdayplace.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saturdayplace.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saturdayplace.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=43&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saturdayplace.wordpress.com/2009/02/23/recursive-grep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b87c225ae3e35a7a6671644247c2357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marco</media:title>
		</media:content>
	</item>
		<item>
		<title>Django installation gotcha</title>
		<link>http://saturdayplace.wordpress.com/2009/01/28/django-installation-gotcha/</link>
		<comments>http://saturdayplace.wordpress.com/2009/01/28/django-installation-gotcha/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 21:58:06 +0000</pubDate>
		<dc:creator>Trevor Hunsaker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://saturdayplace.wordpress.com/?p=41</guid>
		<description><![CDATA[Was installing Django on a webserver recently, and something bit me.  I kept getting the following error: MOD_PYTHON ERROR ...snip a whole buncha stuff... ImportError: No module named django.core.handlers.modpython I&#8217;d installed Django into my home directory, but the user that the webserver runs as didn&#8217;t have read access to that location.  Problem was solved by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=41&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Was installing Django on a webserver recently, and something bit me.  I kept getting the following error:</p>
<p><code><br />
MOD_PYTHON ERROR<br />
...snip a whole buncha stuff...<br />
ImportError: No module named django.core.handlers.modpython<br />
</code></p>
<p>I&#8217;d installed Django into my home directory, but the user that the webserver runs as didn&#8217;t have read access to that location.  Problem was solved by putting Django into a place where apache could get at it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saturdayplace.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saturdayplace.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saturdayplace.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saturdayplace.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saturdayplace.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saturdayplace.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saturdayplace.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saturdayplace.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saturdayplace.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saturdayplace.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saturdayplace.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saturdayplace.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saturdayplace.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saturdayplace.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=41&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saturdayplace.wordpress.com/2009/01/28/django-installation-gotcha/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b87c225ae3e35a7a6671644247c2357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marco</media:title>
		</media:content>
	</item>
		<item>
		<title>Secret Project Update: 9 Jan 2008</title>
		<link>http://saturdayplace.wordpress.com/2008/01/09/secret-project-update-9-jan-2008/</link>
		<comments>http://saturdayplace.wordpress.com/2008/01/09/secret-project-update-9-jan-2008/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 18:20:38 +0000</pubDate>
		<dc:creator>Trevor Hunsaker</dc:creator>
				<category><![CDATA[The Secret Project]]></category>

		<guid isPermaLink="false">http://saturdayplace.wordpress.com/2008/01/09/secret-project-update-9-jan-2008/</guid>
		<description><![CDATA[So, I started this new job in July which affords me the opportunity to ride the bus to work instead of driving. The new office pays for the bus pass, so all I&#8217;m out is the little more time than driving would take. I decided that the ride would be an excellent opportunity to work [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=40&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, I started this new job in July which affords me the opportunity to ride the bus to work instead of driving.  The new office pays for the bus pass, so all I&#8217;m out is the little more time than driving would take.  I decided that the ride would be an excellent opportunity to work on the secret project screenplay, and so far I&#8217;m right.  As long as there&#8217;s a place to sit, I&#8217;ve been able to come up with some great new ideas and expand them into scenes, all during my commute.</p>
<p>But I realized before the holidays that it&#8217;d been a while since I&#8217;d really sat down and looked at the screenplay as a whole.</p>
<p>It&#8217;s bad.</p>
<p>Really bad.  I like the direction things are going generally, but its amazing what a little break from your work will  surface. Problems abound.  Continuity problems, lousy character introductions, plot holes.  That sort of thing.</p>
<p>See, the thing is, in the last few months I&#8217;ve been reading screenplays, and listening to screenwriting specific podcasts.  The <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=77837603">Creative Sceenwriting Magazine podcast</a> (iTunes link, highly recommended), and Pilar Allesandra&#8217;s <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=262077408">On The Page</a> (iTunes link) podcast.    Of course, <a href="http://johnaugust.com/" target="_blank">John August&#8217;s blog</a> is a must read.  A trip through his archives is definitely worth your while.  These sorts of helps are what make the internet so great.  You can learn on your own time at your own pace.</p>
<p>And I&#8217;ve learned that a lot of what I&#8217;ve already written is pretty bad.  Which is OK.  I&#8217;m willing to work at it to get better.  After taking the holidays to fix a lot of stuff, and add new stuff, I&#8217;m pretty happy.   I&#8217;ve got 40 OK pages down, and they&#8217;re definitely going to get better.</p>
<p>Also, I started running numbers on making this movie and selling it online.  For my projected budget (which, of course, is me just making numbers up, but still) I&#8217;d need around 20,000 people to pay $12 in order to break even.  Odds are pretty small, but what&#8217;s encouraging, is that Internet distribution is possible for an independent.  Things are looking up.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/saturdayplace.wordpress.com/40/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/saturdayplace.wordpress.com/40/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saturdayplace.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saturdayplace.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saturdayplace.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saturdayplace.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saturdayplace.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saturdayplace.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saturdayplace.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saturdayplace.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saturdayplace.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saturdayplace.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saturdayplace.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saturdayplace.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saturdayplace.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saturdayplace.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=40&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saturdayplace.wordpress.com/2008/01/09/secret-project-update-9-jan-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b87c225ae3e35a7a6671644247c2357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marco</media:title>
		</media:content>
	</item>
		<item>
		<title>Where are the Jonathan Coultons of the Movie Business?</title>
		<link>http://saturdayplace.wordpress.com/2007/12/10/where-are-the-jonathan-coultons-of-the-movie-business/</link>
		<comments>http://saturdayplace.wordpress.com/2007/12/10/where-are-the-jonathan-coultons-of-the-movie-business/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 17:53:34 +0000</pubDate>
		<dc:creator>Trevor Hunsaker</dc:creator>
				<category><![CDATA[Berating Hollywood]]></category>

		<guid isPermaLink="false">http://saturdayplace.wordpress.com/2007/12/10/where-are-the-jonathan-coultons-of-the-movie-business/</guid>
		<description><![CDATA[or: Can independent filmmakers make money on the Internet? The music labels are in a bit a quandary. Prince is giving away his music. Nine Inch Nails tells their fans to steal. Radiohead wants you to pick your own price for their new independently produced album, In Rainbows. Madonna is ditching her record label for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=37&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>or: <em>Can independent filmmakers make money on the Internet?</em></p>
<p>The music labels are in a bit a quandary.  Prince is <a href="http://www.usatoday.com/life/music/news/2007-06-29-prince-giveaway_N.htm">giving away</a> his music.  Nine Inch Nails <a href="http://www.youtube.com/watch?v=TJ5iHaV0dP4">tells their fans</a> to steal.  Radiohead wants you to <a href="http://www.time.com/time/arts/article/0,8599,1666973,00.html">pick your own price </a>for their new independently produced album, <em>In Rainbows</em>.   Madonna is <a href="http://online.wsj.com/article/SB119205443638155166.html?mod=mm_media_marketing_hs_left">ditching her record label</a> for a concert promoter.  The music labels derive their income from representing talent.  Apparently, big name musical talent no longer requires representation. Like I said, quandary.</p>
<p>John Coulton (or JoCo, as folks on teh neterwebs like to call him; typing is hard) isn&#8217;t big name talent, at least, not in the way the artists I mentioned above are.  The rich and famous can afford to take the risk of cutting out the middle man because, well, they&#8217;re already rich and famous.  If they try something that flops, no big deal.  And the odds of flopping are lower because folks already know their names.   But Coulton, an erstwhile software developer has successfully done what few others in the music industry have, namely he&#8217;s made a name for himself in music with nothing more than wild creativity and an Internet connection.</p>
<p>From September 05 to September 06, Coulton&#8217;s <a href="http://www.jonathancoulton.com/primer/thing-a-week">thing a week</a> podcast released one new free song per week.   On his site he states that the project was:</p>
<blockquote><p>[A]n attempt to keep the creative juices flowing as freely as possible, and a way for me to push myself to take risks, work quickly and trust in the creative process. It was also a stunt designed to get people to notice me.</p></blockquote>
<p>He got noticed.  Once, on a trip to Seattle, Coulton unexpectedly found his Saturday night open.  He mentioned the opening on his blog, and told his fans that if they could find him a venue, he&#8217;d play a show.</p>
<blockquote><p>Before I&#8217;d done that (podcast), when I&#8217;d do a show &#8212; and it was almost always a New York show &#8212; it&#8217;d be four friends who&#8217;d come out and a couple people who had seen me from other work that I&#8217;d done and maybe a couple strangers.  But never big crowds. And certainly it would have been impossible for me to go to another city and draw an audience.</p></blockquote>
<p>The impromptu Seattle show drew 80 people, and Coulton had never been there before. Things had changed.</p>
<p>JoCo releases all his tunes (not just the free ones; he offers many for sale through his site) under a creative commons license that allows fans to share and remix his stuff, as long as it&#8217;s for non-commercial use, and they attribute him.  The resulting fan creations run the gamut from <a href="http://jocopro.libsyn.com/">music videos</a>, to <a href="http://www.interactivitiesink.com/cardgames/monkey/">card games</a>.  With his name still attached.  I don&#8217;t know what the marketing geniuses at the record labels call that sort of thing (actually, I think piracy is the term), but &#8216;free publicity&#8217; doesn&#8217;t seem too far off the mark.</p>
<p>Coulton uses eventful.com to decide where he should perform.  Eventful users can &#8216;demand&#8217; a Coulton performance, that is, request that he come to town and play a set.   Once demand somewhere reaches a critical mass, he books a venue there and lets his fans know when and where he&#8217;ll be playing.  This way, he doesn&#8217;t have to play empty houses.  His fans have already told him they&#8217;d be there.</p>
<p>In giving away music, letting fans &#8216;play&#8217; with it, and having them determine his showtimes,   Coulton has forged an entirely new business model for musicians.  One that&#8217;s not dependent on a label to promote him.  His fans do it for him.  By many measures, he&#8217;s successful.  He&#8217;s not a super-star like Prince or Madonna (he still has to use two names), but Coulton has carved out a comfortable niche on the music industry success scale somewhere between the Billboard Top 40 and starving artist.</p>
<p>No one is doing this in the movie business</p>
<p>It may be that the cost of entry is still too high.  Putting together a camera kit, lighting kit, audio kit, hard drives/backup and editing suite can cost as much as $60,000<a href="#note1">¹</a>.  That&#8217;s orders of magnitude cheaper than what large productions use, but still beyond the reach of your average Joe with the next Big Idea™.    That figure doesn&#8217;t include fees paid to crew or actors.  Nor does it cover a plan for marketing and distribution.  Let&#8217;s not forget that the movie business is, in fact, a business.  I can make a movie for WAAAAY cheaper than  the studios, but the margin between what it costs to make and profitability is rather large without marketing and distribution; in other words, without the help of the studios.   Even if you have noble artistic flimmaking motives, you&#8217;re in it to make money, or you&#8217;re not in it for long.<br />
Say you and I actually make a movie.  We&#8217;ve sunk the negative cost<a href="#note2">²</a>.  Hopefully we can get our Spice Girls Spy Movie into hot festivals which, in turn, will get it in front of the people who can spend the money on marketing and distribution.  Odds are low.  Film festivals like Sundance or Toronto receive thousands of entries a year, and show only and handful.  And even if you get accepted, there&#8217;re no guarantees anyone&#8217;ll buy your film.</p>
<h3>On the Internet, no one can hear you scream</h3>
<p>Do we turn to the webernets?  Bandwidth is expensive when we&#8217;re talking gigabytes per flick.  We could host the thing on YouTube, but there goes the picture quality (why did we spend all that money on a <a href="http://www.red.com/cameras">RED ONE</a>?), and how do you make a profit?  We could host it for free, and hope that folks would click on the ads surrounding it, but you and I both know that clickthrough rates on web ads aren&#8217;t enough to cover our bandwidth costs.  We could set up an online store and charge people $x to download it, where x would cover the cost of hosting and bandwidth, but we still haven&#8217;t figured out how to recover the negative cost.</p>
<p>And forget about actually <em>getting people to your site</em>.  On the Internet you&#8217;re virtual needle in a Mount Everest-sized haystack.  Or, as Seth Godin said, &#8220;No one cares about you.  Almost no one knows you exist.&#8221;³  Why in the world is someone going to even pay you $x when they&#8217;ve never even heard of you?  A bet on getting DiggDotted is as good as one on the festivals.  And in the meantime, you slowly leak money to your host.</p>
<p>In short, we still haven&#8217;t come up with a workable business model that doesn&#8217;t rely on the crapshoot of getting into a big film festival or bleeding yourself to death on the internet.</p>
<p>So, great blog brain, what&#8217;s the solution?  Will there be any JoCo&#8217;s of the film industry?  Are there already, and I just don&#8217;t know about it?</p>
<p>Notes:</p>
<ol>
<li> This number came together when I investigated actually buying all that hardware.  The reason being, that I&#8217;d to think I could start a small production company to make my own films, ala Robert Rodriguez.  I&#8217;m not sure what it would cost to rent this stuff.</li>
<li><em>Negative cost</em> is an industry term to describe the cost of actually making a movie.  In other words, the cost to the producers from blank slate to master negative.  Other costs are marketing and distributing, either of which costs a very not-insignificant pile of moolah.</li>
<li><a href="http://sethgodin.typepad.com/seths_blog/files/whos_there.pdf"><em>Who&#8217;s There</em></a>, p.5</li>
</ol>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/saturdayplace.wordpress.com/37/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/saturdayplace.wordpress.com/37/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saturdayplace.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saturdayplace.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saturdayplace.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saturdayplace.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saturdayplace.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saturdayplace.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saturdayplace.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saturdayplace.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saturdayplace.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saturdayplace.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saturdayplace.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saturdayplace.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saturdayplace.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saturdayplace.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=37&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saturdayplace.wordpress.com/2007/12/10/where-are-the-jonathan-coultons-of-the-movie-business/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b87c225ae3e35a7a6671644247c2357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marco</media:title>
		</media:content>
	</item>
		<item>
		<title>Rolling my own CMS: Comments</title>
		<link>http://saturdayplace.wordpress.com/2007/04/25/rolling-my-own-cms-comments/</link>
		<comments>http://saturdayplace.wordpress.com/2007/04/25/rolling-my-own-cms-comments/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 03:26:49 +0000</pubDate>
		<dc:creator>Trevor Hunsaker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://saturdayplace.wordpress.com/2007/04/25/rolling-my-own-cms-comments/</guid>
		<description><![CDATA[So, I&#8217;m building my own Django-based CMS for kicks and giggles, and I&#8217;d gotten it to the point where I can upload an HTML formatted screenplay (exported from Celtx), parse out a ton of cruft that Celtx adds(thank-you to beautifulSoup) , and display it in nicely formatted HTML via CSS (thanks to John August for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=36&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;m building my own Django-based CMS for kicks and giggles, and I&#8217;d gotten it to the point where I can upload an HTML formatted screenplay (exported from <a href="http://www.celtx.com/" title="Celtx open source media pre-produciton software">Celtx</a>), parse out a ton of cruft that Celtx adds(thank-you to <a href="http://www.crummy.com/software/BeautifulSoup/">beautifulSoup</a>) , and display it in nicely formatted HTML via CSS (thanks to <a href="http://johnaugust.com/archives/2004/new-css-template-for-screenplay-formatting">John August</a> for some of his ideas).  I wanted to be able to offer a way for readers to comment on the screenplay but was foiled in trying to implement Django&#8217;s built in comment app.  So, I decided to roll my own comment system.  I had it very nearly in place, save for one little bugaboo: I couldn&#8217;t figure out how to associate a comment with a screenplay.  So I turned to the ever present #django channel and asked for help.  Before I could blink, I had two super nice chaps lobbing suggestions at me faster than I could try them out.  They worked instantly.  Turns out, it was a simple thing, just something I wasn&#8217;t familiar with.  Anyways, kudos to the Django community.  They really make this experiment worthwhile.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/saturdayplace.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/saturdayplace.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saturdayplace.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saturdayplace.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saturdayplace.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saturdayplace.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saturdayplace.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saturdayplace.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saturdayplace.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saturdayplace.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saturdayplace.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saturdayplace.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saturdayplace.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saturdayplace.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saturdayplace.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saturdayplace.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=36&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saturdayplace.wordpress.com/2007/04/25/rolling-my-own-cms-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b87c225ae3e35a7a6671644247c2357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marco</media:title>
		</media:content>
	</item>
		<item>
		<title>I took it &#8211; So should you.</title>
		<link>http://saturdayplace.wordpress.com/2007/04/24/i-took-it-so-should-you/</link>
		<comments>http://saturdayplace.wordpress.com/2007/04/24/i-took-it-so-should-you/#comments</comments>
		<pubDate>Tue, 24 Apr 2007 14:10:18 +0000</pubDate>
		<dc:creator>Trevor Hunsaker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://saturdayplace.wordpress.com/2007/04/24/i-took-it-so-should-you/</guid>
		<description><![CDATA[Someone oughta be getting this data. Who better than the venerable A List Apart? The more data on the profession, the better. Especially if we want to buck for raises. The first Annual Web Design Survey<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=34&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://alistapart.com/articles/webdesignsurvey"><img src="http://saturdayplace.files.wordpress.com/2007/04/i-took-the-2007-survey.gif?w=510" /></a></p>
<p>Someone oughta be getting this data.  Who better than the venerable <em>A List Apart</em>?  The more data on the profession, the better.  Especially if we want to buck for raises.</p>
<p><a href="http://alistapart.com/articles/webdesignsurvey">The first Annual Web Design Survey</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/saturdayplace.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/saturdayplace.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saturdayplace.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saturdayplace.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saturdayplace.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saturdayplace.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saturdayplace.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saturdayplace.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saturdayplace.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saturdayplace.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saturdayplace.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saturdayplace.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saturdayplace.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saturdayplace.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saturdayplace.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saturdayplace.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=34&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saturdayplace.wordpress.com/2007/04/24/i-took-it-so-should-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b87c225ae3e35a7a6671644247c2357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marco</media:title>
		</media:content>

		<media:content url="http://saturdayplace.files.wordpress.com/2007/04/i-took-the-2007-survey.gif" medium="image" />
	</item>
		<item>
		<title>Rails vs Django Round 3</title>
		<link>http://saturdayplace.wordpress.com/2006/12/30/rails-vs-django-round-3/</link>
		<comments>http://saturdayplace.wordpress.com/2006/12/30/rails-vs-django-round-3/#comments</comments>
		<pubDate>Sat, 30 Dec 2006 17:24:31 +0000</pubDate>
		<dc:creator>Trevor Hunsaker</dc:creator>
				<category><![CDATA[technology underpinnings]]></category>

		<guid isPermaLink="false">http://saturdayplace.wordpress.com/2006/12/30/rails-vs-django-round-3/</guid>
		<description><![CDATA[So, after dinking around for awhile with various rails-based blog engines and CMS&#8217;s, I ended up getting frustrated. I&#8217;m not even sure I can describe the reason why. I&#8217;m not a programmer, so I couldn&#8217;t pick at any specifics regarding either ruby or rails. What I did feel, is that trying to roll my own [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=33&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left">So, after dinking around for awhile with various rails-based blog engines and CMS&#8217;s, I ended up getting frustrated.  I&#8217;m not even sure I can describe the reason why.  I&#8217;m not a programmer, so I couldn&#8217;t pick at any specifics regarding either ruby or rails.  What I did feel, is that trying to roll my own CMS in rails wasn&#8217;t as intuitive as I thought.</p>
<p align="left">Now, having said that I&#8217;m not a programmer doesn&#8217;t preclude at least some facilty for writing code on my part.  I&#8217;ve <a href="http://saturdayplace.wordpress.com/2006/06/27/rails-typo/">mentioned before  </a>that I&#8217;ve done some.  I feel like I should be able to get at least a basic CMS up and running, but for the most part I&#8217;ve been pretty frustrated.  Then this designer guy, <a href="http://www2.jeffcroft.com/">Jeff Croft</a>, keeps talking about Django like it&#8217;s the best thing since sliced images.  So I decide to give it a second look.</p>
<p align="left"><a href="http://saturdayplace.wordpress.com/2006/07/11/rails-vs-django-part-2/">I&#8217;d tried installing Django before</a>, but couldn&#8217;t get it up and running.  Adrian (who&#8217;s Django&#8217;s DHH)  even commented on that post, asking what the problem was (I couldn&#8217;t remember, it&#8217;d been long enough since I&#8217;d tried when I wrote that post).  In the interim, either my subconcious worked out the installation problem I was having, or the Django folks made it clearer how to install on windows because I followed the instructions, and *<em>poof</em>* a working Django installation.</p>
<p align="left"> So I start working on the Poll tutorial on the Django site.  I&#8217;m following along, making a nifty one-question poll when *<em>whack</em>* I get smacked in the face with this really elegant admin site for creating and managing polls that just came out of left field.  I was all like &#8220;holyfreakingfritos that&#8217;s amazing!&#8221;</p>
<p align="left">And then I realized part of what was so dang frustrating about my previous CMS development efforts:  I didn&#8217;t want to have to code the administive interface.  I just wanted to say &#8220;this is how a blog post works, this is how I want to show my flicks, this is how I want to integrate Flickr, etc.&#8221;  The Django admin creates a really nicely designed back end to do all your CRUD, and it Just Works™.  I think I might just be learning Python in the future.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/saturdayplace.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/saturdayplace.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saturdayplace.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saturdayplace.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saturdayplace.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saturdayplace.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saturdayplace.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saturdayplace.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saturdayplace.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saturdayplace.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saturdayplace.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saturdayplace.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saturdayplace.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saturdayplace.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saturdayplace.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saturdayplace.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=33&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saturdayplace.wordpress.com/2006/12/30/rails-vs-django-round-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b87c225ae3e35a7a6671644247c2357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marco</media:title>
		</media:content>
	</item>
		<item>
		<title>Secret Project Update: 21 Oct 2006</title>
		<link>http://saturdayplace.wordpress.com/2006/10/21/secret-project-update-21-oct-2006/</link>
		<comments>http://saturdayplace.wordpress.com/2006/10/21/secret-project-update-21-oct-2006/#comments</comments>
		<pubDate>Sun, 22 Oct 2006 04:23:37 +0000</pubDate>
		<dc:creator>Trevor Hunsaker</dc:creator>
				<category><![CDATA[The Secret Project]]></category>

		<guid isPermaLink="false">http://saturdayplace.wordpress.com/2006/10/21/secret-project-update-21-oct-2006/</guid>
		<description><![CDATA[The outline I wrote about back in June has quite a few story holes that I didn&#8217;t notice until I starting getting the thing turned into screenplay format. So I&#8217;ve got to come up with a few scenes that plug up those holes. And speaking of screenplay format, I&#8217;m up to about 20 pages. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=31&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The outline I wrote about back in June has quite a few story holes that I didn&#8217;t notice until I starting getting the thing turned into screenplay format.  So I&#8217;ve got to come up with a few scenes that plug up those holes.  And speaking of screenplay format, I&#8217;m up to about 20 pages.    I know a lot of people write scenes out of order, but I just <em>can&#8217;t</em> figure out how do that.  I write linearly, what can I say?  Not that I don&#8217;t have any idea about what&#8217;s going to happen later on in the movie.  I do.  But I need to figure out how to <em>get</em> there before I flesh those parts out further.  I&#8217;m into the second act, where all good screenplays go to die.  The long pauses between times when I get any actual work done allow me the luxury of reading with fresh eyes.  A lot of it is crap.  Some of it is ok.  And it&#8217;s still got a freaking long way to go.  I still think the idea is really compelling.  I just need to write more so that I get good at doing it.  There are no excuses there.  Well, there are, but none of them that mean anything.</p>
<p>I decided that once I&#8217;m done writing, I&#8217;m just going to try and make the thing myself.  Forget about selling.  In this day and age, trying to do that will get you about as much attention as a rhino gives to a fly.  He might notice the fly.  Probably not.  And if he does, he certainly doesn&#8217;t care.  If Hollywood isn&#8217;t going to make my move, I might as well.  They might even want it when I&#8217;m done.  <a href="http://www.blairwitch.com/" title="The Blair Witch Project">Stranger</a> <a href="http://www.imdb.com/title/tt0104815/" title="El Mariachi">things</a> have happened.  And if not, we&#8217;ll see if I can&#8217;t just try and sell in online on my own.  It&#8217;s a brave new world with this interweb thing.</p>
<p>I discovered a website by a couple screenwriters that I like.  <a href="www.wordplayer.com">Wordplayer</a> has a whole bunch of screenwriting tips and other inspiration.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/saturdayplace.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/saturdayplace.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saturdayplace.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saturdayplace.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saturdayplace.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saturdayplace.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saturdayplace.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saturdayplace.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saturdayplace.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saturdayplace.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saturdayplace.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saturdayplace.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saturdayplace.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saturdayplace.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saturdayplace.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saturdayplace.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saturdayplace.wordpress.com&amp;blog=228740&amp;post=31&amp;subd=saturdayplace&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saturdayplace.wordpress.com/2006/10/21/secret-project-update-21-oct-2006/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9b87c225ae3e35a7a6671644247c2357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Marco</media:title>
		</media:content>
	</item>
	</channel>
</rss>
