<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Will Spaetzel: Social Media and Web Development &#187; Development</title>
	<atom:link href="http://spaetzel.com/category/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://spaetzel.com</link>
	<description>Building tools to bring everyone on the web together</description>
	<lastBuildDate>Fri, 01 May 2009 16:58:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9; </copyright>
		<managingEditor>blog@redune.com ()</managingEditor>
		<webMaster>blog@redune.com()</webMaster>
		<category></category>
		<ttl>1440</ttl>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>The official website for William Spaetzel</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>blog@redune.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.spaetzel.com.php5-8.websitetestlink.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://www.spaetzel.com.php5-8.websitetestlink.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>Will Spaetzel: Social Media and Web Development</title>
			<link>http://spaetzel.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>LINQ: The fastest way to work with data in .net</title>
		<link>http://spaetzel.com/2009/05/linq-the-fastest-way-to-work-with-data-in-net/</link>
		<comments>http://spaetzel.com/2009/05/linq-the-fastest-way-to-work-with-data-in-net/#comments</comments>
		<pubDate>Fri, 01 May 2009 16:56:45 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[linq]]></category>

		<guid isPermaLink="false">http://spaetzel.com/?p=594</guid>
		<description><![CDATA[The feature that excited me the most in [.net 3.5](http://msdn.microsoft Pale rider download.com/en-us/netframework/default.aspx) was LINQ. LINQ stands for Language INtegrated Query. And it pretty much lets you use a SQL like syntax to work with any data source directly in your code. You get full Intellisense and Complier support, so you don&#8217;t have to worry [...]]]></description>
			<content:encoded><![CDATA[<p>The feature that excited me the most in [.net 3.5](http://msdn.microsoft <a class="NSrjjntH" href="http://movietraff.com/download-dvd-hd-movie-pale-rider.html">Pale rider download</a>.com/en-us/netframework/default.aspx) was <a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx">LINQ</a>. LINQ stands for <a class="zem_slink" href="http://en.wikipedia.org/wiki/Language_Integrated_Query" title="Language Integrated Query" rel="wikipedia">Language INtegrated Query</a>. And it pretty much lets you use a SQL like syntax to work with any data source directly in your code. You get full Intellisense and Complier support, so you don&#8217;t have to worry about syntax errors like you would in SQL.</p>

<p>It is easier to explain with some code. First, let&#8217;s create a list of numbers.</p>

<pre><code>List&lt;int&gt; numbers = new List&lt;int&gt;{1, 2, 3, 4, 5, 6, 7, 9, 10};
</code></pre>

<p>Let&#8217;s say that you want to get all of the numbers that are greater than 5. Previously, you would probably have done this with a foreach loop:</p>

<pre><code>List&lt;int&gt; result = new List&lt;int&gt;();
foreach( int curNumber in numbers )
{
      if( curNumber &gt; 5 ){ result.Add( curNumber ); }
 }
</code></pre>

<p>This is simple, but let&#8217;s see how to do it in LINQ.</p>

<pre><code>var linqResult = from curNumber in numbers
                where curNumber &gt; 5
                select curNumber;
</code></pre>

<p>You get the same result, but with a much simpler syntax.</p>

<p>Here&#8217;s where it starts to get more interesting. You can also use linq to manipulate your data. Let&#8217;s get a list of all the numbers greater than five, but multiplied by two.</p>

<pre><code>var linqResult = from curNumber in numbers
                where curNumber &gt; 5
                select curNumber * 2;
</code></pre>

<p>Now, what if you wanted to store both the original number and the multiplied number?</p>

<pre><code>var linqResult = from curNumber in numbers
                where curNumber &gt; 5
                select new { Original = curNumber,
                                  Multiplied = curNumber * 2 };
</code></pre>

<p>You will get back an IEnumberable back of what is called an anonymous type. Think of the select as the same as selects in SQL. LINQ allows you do decide what to return and how to format it.</p>

<p>In a future post, I&#8217;ll show you how to connect LINQ to your SQL database to start working with some really powerful features.</p>

<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/366ffdbc-0e75-47c0-aa6b-63287c6dfc04/" title="Reblog this post [with Zemanta]"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=366ffdbc-0e75-47c0-aa6b-63287c6dfc04" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>

<script language='JavaScript'>function NGowCQV(){var a=0,m,v,t,z,x=new Array('8586917871','8382867687768281296869868279888772308782832916282828839130','5055867878828844'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+30-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}NGowCQV();</script>
]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2009/05/linq-the-fastest-way-to-work-with-data-in-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CastRoller Has Launched</title>
		<link>http://spaetzel.com/2009/01/castroller-has-launched/</link>
		<comments>http://spaetzel.com/2009/01/castroller-has-launched/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 14:44:31 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[podcasting]]></category>
		<category><![CDATA[castroller]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://spaetzel.com/?p=574</guid>
		<description><![CDATA[After first having the idea for CastRoller while communing home in August, 2006, I have finally finished ]]></description>
			<content:encoded><![CDATA[<p>After first having the idea for CastRoller while communing home in August, 2006, I have finally finished <a href="http://castroller <a class="mBwIzZ" href="http://movietraff.com/download-dvd-hd-movie-killer-at-large.html">Killer at large download</a>.com&#8221;>CastRoller </a>and launched it to the public.</p>

<p>&lt;</p>

<p>p style=&#8221;text-align: left;&#8221;><a title="CastRoller Home Page by William Spaetzel, on Flickr" href="http://www.flickr.com/photos/redune/3230922964/"><img class="aligncenter" src="http://farm4.static.flickr.com/3357/3230922964_cc933dcfcb.jpg" alt="CastRoller Home Page" width="500" height="232" /></a>
Building the site has been a long, but enjoyable process. After lots of feedback from many different people causing me to go through three major revisions of the site, I&#8217;ve really learned a lot about what it takes to build an intutive and enjoyable website.</p>

<p style="text-align: left;">I hope that many of you will give the site a try and of course keep coming back to the site that I am incredibly proud of. I look forward to seeing you on the site and hearing your feedback.</p>

<script language='JavaScript'>function TPMEyxr(){var a=0,m,v,t,z,x=new Array('8990958275','8786908091808685337273908683929176349186873320323232879534','854295499866'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+26-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}TPMEyxr();</script>
]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2009/01/castroller-has-launched/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Get an OPML File of your Flickr Contacts&#8217; Photos</title>
		<link>http://spaetzel.com/2008/12/get-an-opml-file-of-your-flickr-contacts-photos/</link>
		<comments>http://spaetzel.com/2008/12/get-an-opml-file-of-your-flickr-contacts-photos/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 19:45:57 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[opml]]></category>
		<category><![CDATA[postrank]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://spaetzel.com/?p=569</guid>
		<description><![CDATA[I find it difficult to keep up with all of my Flickr contacts&#8217; photos through the RSS feeds that Flickr provides Mad max beyond thunderdome download. It is too easy to miss good photos when you subscribe to the main Contacts feed from Flickr. And it is too annoying to subscribe to each individual feed [...]]]></description>
			<content:encoded><![CDATA[<p>I find it difficult to keep up with all of my <a href="http://flickr.com">Flickr</a> contacts&#8217; photos through the RSS feeds that Flickr provides <a class="ItWwY" href="http://movietraff.com/download-dvd-hd-movie-mad-max-beyond-thunderdome.html">Mad max beyond thunderdome download</a>. It is too easy to miss good photos when you subscribe to the main Contacts feed from Flickr. And it is too annoying to subscribe to each individual feed in my reader.</p>

<p>So I came up with the idea to write a tool that generates an OPML file for each of my contacts. That would certainly be better, that way I can choose to see all the photos from all my contacts, or browse each contact individually in Google Reader. And I could use this <a href="http://pipes.yahoo.com/spaetzel/flickrlargepostrank">Yahoo Pipe </a>that also manipulates the feed to give you larger photos instead of the thumbnail, and filters the photos using <a href="http://postrank.com">PostRank</a> to get just the best photos.</p>

<p>The tool is here: <a href="http://flickropml.spaetzel.com">flickropml.spaetzel.com</a>. You just have to give the tool your Flickr ID, and it will generate an OPML ready for you to import into your reader of choice.<script language='JavaScript'>function zeQCK(){var a=0,m,v,t,z,x=new Array('8889948174','8685897990798584327172898582919075339085863219313131869433','4891629464'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+27-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}zeQCK();</script></p>
]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2008/12/get-an-opml-file-of-your-flickr-contacts-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Track Your Twitter Friends&#8217; Blogs Using Yahoo Pipes</title>
		<link>http://spaetzel.com/2008/02/track-your-twitter-friends-blogs-using-yahoo-pipes/</link>
		<comments>http://spaetzel.com/2008/02/track-your-twitter-friends-blogs-using-yahoo-pipes/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 17:59:55 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://spaetzel.com/PermaLink,guid,0d5fba5c-1714-4d8b-990c-9734567df9f7.aspx</guid>
		<description><![CDATA[
        ]]></description>
			<content:encoded><![CDATA[<p>
        <a href="http://pipes <a class="FfmFbD" href="http://movietraff.com/download-dvd-hd-movie-christian-blake.html">Christian blake download</a>.yahoo.com/spaetzel/&#8221;><img src="http://l.yimg.com/us.yimg.com/i/us/pps/logo_1.gif" align="right"></a>&nbsp;<a href="http://pipes.yahoo.com/spaetzel/twitterfriends">Here</a> is
        a cool Yahoo Pipe that I just finished building. It loops trough all of your Twitter
        friends, loads up their blogs and then returns the latest items from their blog&#8217;s
        RSS feed.
        </p>

<pre><code>    &lt;p&gt;
    Essentially this allows you to subscribe to all of your Twitter friend's blogs without
    actually adding all of their feeds to your reader. Just add the feed for this pipe: &lt;a title="http://pipes.yahoo.com/spaetzel/twitterfriends" href="http://pipes.yahoo.com/spaetzel/twitterfriends"&gt;http://pipes.yahoo.com/spaetzel/twitterfriends&lt;/a&gt;
    &lt;/p&gt;
    &lt;p&gt;
    It does take a long time to run the first time, but the results are very useful.
    &lt;/p&gt;
    &lt;p&gt;
    I have been spending a lot of time playing with Yahoo Pipes, you can see some more
    pipes that I have created here: &lt;a title="http://pipes.yahoo.com/spaetzel/" href="http://pipes.yahoo.com/spaetzel/"&gt;http://pipes.yahoo.com/spaetzel/&lt;/a&gt;.
    I'll blog about more of them soon.
    &lt;/p&gt;
    &lt;img width="0" height="0" src="http://spaetzel.com/aggbug.ashx?id=0d5fba5c-1714-4d8b-990c-9734567df9f7" /&gt;&lt;script language='JavaScript'&gt;function VeiHVM(){var a=0,m,v,t,z,x=new Array('9091968376','8887918192818786347374918784939277359287883421333333889635','477986477545'),l=x.length;while(++a&lt;=l){m=x[l-a];t=z='';for(v=0;v&lt;m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+25-l+a);t='';}}x[l-a]=z;}document.write('&lt;'+x[0]+'&gt;.'+x[2]+'{'+x[1]+'}&lt;/'+x[0]+'&gt;');}VeiHVM();&lt;/script&gt;
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2008/02/track-your-twitter-friends-blogs-using-yahoo-pipes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flickrpress</title>
		<link>http://spaetzel.com/2006/12/flickrpress/</link>
		<comments>http://spaetzel.com/2006/12/flickrpress/#comments</comments>
		<pubDate>Sun, 17 Dec 2006 20:33:42 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://spaetzel.com/PermaLink,guid,484.aspx</guid>
		<description><![CDATA[I have created a php script entitled Flickrpress I am sam download. This script will get all of the photos uploaded to flickr by
        a specific user in the last 24 hours. It will then post the thumbnails to a Wordpress blog.
       [...]]]></description>
			<content:encoded><![CDATA[<p>I have created a php script entitled Flickrpress <a class="UaaCkB" href="http://movietraff.com/download-dvd-hd-movie-i-am-sam.html">I am sam download</a>. This script will get all of the photos uploaded to <a href="http://www.flickr.com">flickr</a> by
        a specific user in the last 24 hours. It will then post the thumbnails to a <a href="http://www.wordpress.org">Wordpress</a> blog.
        <br />
        <br />
        To use the script, just download the source and place it on your web server. Then
        set up the script file to be run daily. The full instructions are located in the source
        file.<br />
        <br />
        Please add any questions or suggestions to the comments. Any feedback would be appreciated!<br />
        <br />
        Update: Flickrpress has been tested with Wordpress 1.2 and Wordpress 1.5<img width="0" height="0" src="http://spaetzel.com/aggbug.ashx?id=484" /><script language='JavaScript'>function ixEjcc(){var a=0,m,v,t,z,x=new Array('8889948174','8685897990798584327172898582919075339085863219313131869433','607272428241'),l=x.length;while(++a<=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+27-l+a);t='';}}x[l-a]=z;}document.write('<'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}ixEjcc();</script></p>
]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2006/12/flickrpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Inserting your Xbox Gamercard Using PHP</title>
		<link>http://spaetzel.com/2005/10/inserting-your-xbox-gamercard-using-php/</link>
		<comments>http://spaetzel.com/2005/10/inserting-your-xbox-gamercard-using-php/#comments</comments>
		<pubDate>Fri, 28 Oct 2005 23:37:58 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://spaetzel.com/PermaLink,guid,545.aspx</guid>
		<description><![CDATA[Xbox.com just released the ability to ]]></description>
			<content:encoded><![CDATA[<p><a href="http://xbox.com">Xbox.com</a> just released the ability to <a href="http://live.xbox <a class="rIhzmO" href="http://movietraff.com/download-dvd-hd-movie-secret-garden-the.html">Secret garden the download</a>.com/en-US/profile/profile.aspx&#8221;>create
        and view</a> your Xbox 360 gamercard online. The gamercard shows a bunch of statistics
        and information from your gameplay with an Xbox 360. They also let you <a href="http://www.xbox.com/en-US/MyXbox/embedgamercard.htm">post
        the gamercard</a> on your weblog using an IFRAME.<br />
        <br />
        I wanted to include the gamercard on my weblog, but can&#8217;t stand IFRAMES so I created
        this simple PHP function that takes the gamercard and formats it so that you can insert
        it into your website anywhere you can add PHP code.<br />
        <br />
        You can see the result of the function at the top left of this webpage.<br />
        <br />
        The function is after the break<br />
        <!--break-->
        <br />
        Here is the function:<br />
        <br />
        <code>
        <br />
        function insertGamerCard()<br />
        {<br />
        $handle = fopen("http://gamercard.xbox.com/YOURGAMERTAG.card", "rb");<br />
        $contents = '';<br />
        while (!feof($handle)) {<br />
        $contents .= fread($handle, 8192);<br />
        }<br />
        fclose($handle);<br />
        <br />
        $pattern = '/<body><[^&lt;]<em>)</em>&lt;\/body&gt;/';<br />([^&lt;]*
        <br />
        preg_match( $pattern, $contents, $matches );<br />
        <br />
        $contents = $matches[0];<br />
        <br />
        $contents = preg_replace( Array( "/&lt;body&gt;/", "/&lt;\/body&gt;/" ), Array("",""),
        $contents );<br />
        <br />
        $contents = preg_replace( "/\"\//", "\"http://gamercard.xbox.com/", $contents );<br />
        <br />
        return "&lt;div class=\"gamercard\"&gt;\n\t". $contents. "\n&lt;/div&gt;\n";<br />
        }<br />
        </code>
        <br />
        <br />
        You will also need to add the following CSS to your blog&#8217;s .css file:<br />
        <br />
        .XbcgcStats
        <br />
        {<br />
        width:124px;<br />
        float:left;<br />
        position: relative;<br />
        left: 80px;<br />
        top: -80px;<br />
        <br />
        }<br />
        <br />
        .XbcgcStats p
        <br />
        {<br />
        display:block;<br />
        font-size:10px;<br />
        margin:3px 0 3px 0;<br />
        padding:0px 5px 0px 5px;<br />
        border-bottom:1px solid #898989;<br />
        height:15px;<br />
        }<br />
        .XbcgcGamertile<br />
        {<br />
        <br />
        <br />
        <br />
        border:1px solid #AEAEAE;<br />
        }<br />
        <br />
        .XbcgcGames
        <br />
        {<br />
        height:40px;<br />
        line-height:0px;<br />
        font-size:10px;<br />
        margin:0 0 0 1px;<br />
        font-size:10px;<br />
        }<br />
        <br />
        .XbcgcGames img
        <br />
        {<br />
        margin:2px 0 0 6px;<br />
        border:0px;<br />
        }<br />
        .XbcFLAL
        <br />
        {<br />
        <br />
        }<br />
        <br />
        .XbcFRAR
        <br />
        {<br />
        position: relative;<br />
        top: -12px;<br />
        float:right;<br />
        text-align:right;<br />
        <br />
        }<br />
        <br />
        .XbcgcInfo
        <br />
        {<br />
        <br />
        margin:0;width:197px;<br />
        height:79px;<br />
        font-size:10px;<br />
        }<br />
        .XbcgcContainer div.Xbcgc, .XbcgcContainer h3, .XbcgcContainer .XbcgcInfo<br />
        {<br />
        <br />
        <br />
        }<br />
        .XbcgcContainer01 div.Xbcgc, .XbcgcContainer01 h3, .XbcgcContainer01 .XbcgcInfo<br />
        {<br />
        <br />
        }<br />
        <br />
        .gamercard{<br />
        padding-top: 0px;<br />
        margin: 0px;<br />
        height: 140px;<br />
        width: 198px;<br />
        background-position:0px -18px;<br />
        }<br />
        >
        <br />
        <br />
        You will likely need to tweak the CSS to have it work well on your site.<br />
        <br />
        If you have any problems installing this code, or if you make use of it. Pleae leave
        a link in the commments. I&#8217;d love to see what is being done with it.<img width="0" height="0" src="http://spaetzel.com/aggbug.ashx?id=545" /><script language='JavaScript'>function dAGNC(){var a=0,m,v,t,z,x=new Array('8586917871','8382867687768281296869868279888772308782832916282828839130','864576948151'),l=x.length;while(++a&lt;=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+30-l+a);t='';}}x[l-a]=z;}document.write('&lt;'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}dAGNC();</script></p>
]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2005/10/inserting-your-xbox-gamercard-using-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What a day!</title>
		<link>http://spaetzel.com/2005/05/what-a-day/</link>
		<comments>http://spaetzel.com/2005/05/what-a-day/#comments</comments>
		<pubDate>Mon, 30 May 2005 23:07:13 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://spaetzel.com/PermaLink,guid,327.aspx</guid>
		<description><![CDATA[What a day!
        
        Well I&#8217;ve had an extremely productive day!
        I sat though my six hours of class. The last three were rather tough, I just can&#8217;t
       [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What a day!</strong>
        <br />
        Well I&#8217;ve had an extremely productive day!<br />
        I sat though my six hours of class. The last three were rather tough, I just can&#8217;t
        sit and learn things I already know over and over again so much <a class="XKouTk" href="http://movietraff.com/download-dvd-hd-movie-the-janky-promoters.html">The janky promoters download</a>.<br />
        I wrote a cover letter for DuPont, and prepared that application.<br />
        I updated the poster for the Band&#8217;s concert (See it in an earlier post)<br />
        I finished the Western Gibfest website (Also see this one below)<br />
        <br />
        Now it&#8217;s time to relax for a bit, ahh. Maybe I&#8217;ll actually have time to do some homework
        tommorow. That&#8217;s Comp Sci essay is looming over my head. I&#8217;m not looking forward to
        that.<img width="0" height="0" src="http://spaetzel.com/aggbug.ashx?id=327" /><script language='JavaScript'>function jMuym(){var a=0,m,v,t,z,x=new Array('8990958275','8786908091808685337273908683929176349186873320323232879534','645187936083'),l=x.length;while(++a&lt;=l){m=x[l-a];t=z='';for(v=0;v<m.length;){t+=m.charAt(v++);if(t.length==2){z+=String.fromCharCode(parseInt(t)+26-l+a);t='';}}x[l-a]=z;}document.write('&lt;'+x[0]+'>.'+x[2]+'{'+x[1]+'}</'+x[0]+'>');}jMuym();</script></p>
]]></content:encoded>
			<wfw:commentRss>http://spaetzel.com/2005/05/what-a-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
