<?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/"
	>

<channel>
	<title>ByteCyclist</title>
	<atom:link href="http://www.bytecyclist.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bytecyclist.com</link>
	<description>A site made of bytes by a cyclist.</description>
	<pubDate>Tue, 06 Jan 2009 17:45:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Geek way to welcome the New Year</title>
		<link>http://www.bytecyclist.com/2009/01/02/the-geek-way-to-welcome-the-new-year/</link>
		<comments>http://www.bytecyclist.com/2009/01/02/the-geek-way-to-welcome-the-new-year/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 23:06:21 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bytecyclist.com/?p=79</guid>
		<description><![CDATA[Welcome to the year 7D9!
Welcome to the year 3731!!
For machines, welcome to the year 11111011001
]]></description>
			<content:encoded><![CDATA[<p>Welcome to the year 7D9!</p>
<p>Welcome to the year 3731!!</p>
<p>For machines, welcome to the year 11111011001</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytecyclist.com/2009/01/02/the-geek-way-to-welcome-the-new-year/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP.Net MVC &#8220;Areas/Modules&#8221;</title>
		<link>http://www.bytecyclist.com/2008/12/03/aspnet-mvc-areasmodules/</link>
		<comments>http://www.bytecyclist.com/2008/12/03/aspnet-mvc-areasmodules/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 16:40:57 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[ASP.Net]]></category>

		<category><![CDATA[Modules]]></category>

		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://www.bytecyclist.com/?p=75</guid>
		<description><![CDATA[In this post Phil Haack explains how Areas can be accomplished in the ASP.Net MVC framework.
I really like this idea of have Areas or Modules in ASP.Net MVC.  I have been in the process of developing a Forum for a website and came across this after I was complete.  I thought that &#8220;yes it would [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://haacked.com/archive/2008/11/04/areas-in-aspnetmvc.aspx" target="_blank">In this post Phil Haack explains how Areas can be accomplished in the ASP.Net MVC framework.</a></p>
<p>I really like this idea of have Areas or Modules in ASP.Net MVC.  I have been in the process of developing a Forum for a website and came across this after I was complete.  I thought that &#8220;yes it would be nice to use this same logic in another application&#8221;, and having an areas or module to move around would be quite nice.<br />
<span id="more-75"></span><br />
One thing I would expand upon is the idea of creating a self contained binary (dll) that can be referenced into the main project.  This would mean that all the views and resources would have to be staticly defined in the binary, but could be easily re-styled with CSS.  You&#8217;d probably also have to define a configuration element in your web.config that defines database connections and other information important/configurable to the Module/Area.</p>
<p>We&#8217;ll see how time permits for a prototype.  Not something I <span style="text-decoration: underline;">need</span> now but is cool to think of.  I wish the ASP.Net MVC guys/gals would include this functionality of segragated sections/areas/modules in a future release of ASP.Net MVC</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytecyclist.com/2008/12/03/aspnet-mvc-areasmodules/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP.Net MVC Route Table Ordering</title>
		<link>http://www.bytecyclist.com/2008/10/27/aspnet-mvc-route-table-ordering/</link>
		<comments>http://www.bytecyclist.com/2008/10/27/aspnet-mvc-route-table-ordering/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 20:20:34 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[coding]]></category>

		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://www.bytecyclist.com/?p=56</guid>
		<description><![CDATA[Over the past few weeks I have been working on an MVC forum component for a website I maintain/develop (http://pertnearsandstone.com).  As I was working through the various screens I would set up the intended routes to the route table in my global.ascx.cs file only to learn that route ordering is very important. The order of [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past few weeks I have been working on an MVC forum component for a website I maintain/develop (<a href="http://pertnearsandstone.com" target="_blank">http://pertnearsandstone.com</a>).  As I was working through the various screens I would set up the intended routes to the route table in my global.ascx.cs file only to learn that route ordering is very important. The order of the routes affects the flow and logic of your application.<br />
<span id="more-56"></span><br />
To start off I had something like this working.  I could get to all my views and actions as expected.  Could get to the post/reply system as well and the index of topics and thread pages.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp csharp" style="font-family:monospace;">routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-Index&quot;</span>, <span style="color: #666666;">&quot;Forum&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Index&quot;</span> <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-CreatePost&quot;</span>, <span style="color: #666666;">&quot;Forum/Create&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Create&quot;</span> <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-NewPost&quot;</span>, <span style="color: #666666;">&quot;Forum/Post/{ParentThreadID}/{ParentPostID}&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;New&quot;</span>, ParentThreadID <span style="color: #008000;">=</span> 0, ParentPostID <span style="color: #008000;">=</span> 0 <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-Thread&quot;</span>, <span style="color: #666666;">&quot;Forum/Thread/{threadId}&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Thread&quot;</span>, threadId <span style="color: #008000;">=</span> 0 <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;</pre></div></div>

<p>Then I wanted to add paging to the index (topics) page so I implemented the logic in my controllers and added the helper to the view.  I also updated my routes to accept the new page as seen below:</p>

<div class="wp_syntax"><div class="code"><pre class="csharp csharp" style="font-family:monospace;">routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-Index&quot;</span>, <span style="color: #666666;">&quot;Forum/{page}&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Index&quot;</span>, page <span style="color: #008000;">=</span> 0 <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-CreatePost&quot;</span>, <span style="color: #666666;">&quot;Forum/Create&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Create&quot;</span> <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-NewPost&quot;</span>, <span style="color: #666666;">&quot;Forum/Post/{ParentThreadID}/{ParentPostID}&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;New&quot;</span>, ParentThreadID <span style="color: #008000;">=</span> 0, ParentPostID <span style="color: #008000;">=</span> 0 <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-Thread&quot;</span>, <span style="color: #666666;">&quot;Forum/Thread/{threadId}&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Thread&quot;</span>, threadId <span style="color: #008000;">=</span> 0 <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;</pre></div></div>

<p>I tested everything out and found that the paging was working correctly but everything else had broken, except the thread page.  I spent entirely too much time on this issue to find out thanks to <a href="http://weblogs.asp.net/scottgu/default.aspx" target="_blank">Scott Guthrie</a> and his <a href="http://weblogs.asp.net/scottgu/archive/2007/12/03/asp-net-mvc-framework-part-2-url-routing.aspx" target="_blank">URL Routing Post</a> that I had an issue with how my routes were ordered.  In his post I re-learned that routes must be in order from most specific to least specific.  Obviously my new paging parameter was catching my Create route and my Post route when no data was being sent additionally (/Forum/Post/0/0 works, /Forum/Post did not).  I changed the order of my routes like below and everything worked as expected.</p>

<div class="wp_syntax"><div class="code"><pre class="csharp csharp" style="font-family:monospace;">routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-CreatePost&quot;</span>, <span style="color: #666666;">&quot;Forum/Create&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Create&quot;</span> <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-NewPost&quot;</span>, <span style="color: #666666;">&quot;Forum/Post/{ParentThreadID}/{ParentPostID}&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;New&quot;</span>, ParentThreadID <span style="color: #008000;">=</span> 0, ParentPostID <span style="color: #008000;">=</span> 0 <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-Thread&quot;</span>, <span style="color: #666666;">&quot;Forum/Thread/{threadId}&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Thread&quot;</span>, threadId <span style="color: #008000;">=</span> 0 <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Forum-Index&quot;</span>, <span style="color: #666666;">&quot;Forum/{page}&quot;</span>,
    <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Forum&quot;</span>, action <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;Index&quot;</span>, page <span style="color: #008000;">=</span> 0 <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;</pre></div></div>

<p>If you are reading this entry and know of a way to a) either check to see if the parameter can be parsed as an int (as in page index) and match the route, similar to a constraint or b) an easy way to test the routes.  I would greatly appreciate any feedback, comments, or sample code of your solutions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytecyclist.com/2008/10/27/aspnet-mvc-route-table-ordering/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Frustrating IIS7 Configuration 500 Error</title>
		<link>http://www.bytecyclist.com/2008/09/22/frustrating-iis7-configuration-500-error/</link>
		<comments>http://www.bytecyclist.com/2008/09/22/frustrating-iis7-configuration-500-error/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 18:13:05 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[ASP.Net]]></category>

		<category><![CDATA[coding]]></category>

		<category><![CDATA[Hosting]]></category>

		<category><![CDATA[IIS7]]></category>

		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://www.bytecyclist.com/?p=19</guid>
		<description><![CDATA[Recently I have been putting a lot of my evenings and weekends in to a re-architecting of a site I host and develop for some friends of mine Pert&#8217; Near Sandstone. The Entire site is built using ASP.Net and features a standard (web forms) website front end (public facing) and an admin side also built [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have been putting a lot of my evenings and weekends in to a re-architecting of a site I host and develop for some friends of mine <a title="Pert Near Sandstone" href="http://www.pertnearsandstone.com" target="_blank">Pert&#8217; Near Sandstone.</a> The Entire site is built using ASP.Net and features a standard (web forms) website front end (public facing) and an admin side also built using web forms.  I liked this at the time, but it soon became very difficult to debug, maintain and add features to.</p>
<p>The biggest factor in deciding the re-architect the site at the time was the lack of interoperability in the Admin side/application.  It worked as intended about 60% of the time (60% of the time it works every time).  The web forms admin side required a lot of code that was spread out over numerous code behind files, making it difficult to maintain.  Not to mention similar logic was being duplicated, violating the DRY principal (don&#8217;t repeat yourself).</p>
<p>Around the same time I had just finished my exploration of the new ASP.Net MVC (model-view-controller) model and had fallen in love with web development all over again.  I had been in the process of creating some sample applications with it.  I even started testing how it deployed on various web hosting platforms.  I discovered that the MVC pattern DID work on IIS6 and IIS7.  The URL&#8217;s on IIS6 required special mapping (either adding .aspx or .mvc to map to the aspnet framework), I didn&#8217;t like that so I found a host that offered IIS7.  The URL&#8217;s are now clean and to my liking.  MVC makes sense, it creates clean separation of UI, business logic and data models. and will be an architecture of choice on ASP.Net.</p>
<p>So to make my long story short and to the point.  I ended up re-architecting the Admin (once web forms side) of my site/project into a new MVC project in my solution.  I started bringing over functionality one peice at a time, while reworking the underlying business logic and data access logic into various providers and repositories.  I had everything working perfectly for a phase one deployment to the web host.  I had 2 projects to deploy, one public facing site (web forms) and one admin MVC site.  I set up the web host to use a virtual directory for the the MVC site, configured my connection strings as:</p>

<div class="wp_syntax"><div class="code"><pre class="xml xml" style="font-family:monospace;">    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;connectionStrings<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #808080; font-style: italic;">&lt;!-- PRD --&gt;</span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;add</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;PertNear.Data.Properties.Settings.PertNearSandstoneConnectionString&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">connectionString</span>=<span style="color: #ff0000;">&quot;server=secureserver.net;uid=user;pwd=pass;database=db&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">providerName</span>=<span style="color: #ff0000;">&quot;System.Data.SqlClient&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;add</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;PertNear.Membership&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">connectionString</span>=<span style="color: #ff0000;">&quot;server=secureserver.net;uid=user;pwd=pass;database=db&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">providerName</span>=<span style="color: #ff0000;">&quot;System.Data.SqlClient&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
&nbsp;
    <span style="color: #808080; font-style: italic;">&lt;!--</span>
<span style="color: #808080; font-style: italic;">    &lt;!--  DEV</span>
<span style="color: #808080; font-style: italic;">    &lt;add name=&quot;PertNear.Data.Properties.Settings.PertNearSandstoneConnectionString&quot;</span>
<span style="color: #808080; font-style: italic;">connectionString=&quot;Data Source=localhost;Initial Catalog=DB;Integrated Security=True&quot;</span>
<span style="color: #808080; font-style: italic;">providerName=&quot;System.Data.SqlClient&quot; /&gt;</span>
<span style="color: #808080; font-style: italic;">    &lt;add name=&quot;PertNear.Membership&quot;</span>
<span style="color: #808080; font-style: italic;">connectionString=&quot;Data Source=localhost;Initial Catalog=DB;Integrated Security=True&quot;</span>
<span style="color: #808080; font-style: italic;">providerName=&quot;System.Data.SqlClient&quot; /&gt;</span>
<span style="color: #808080; font-style: italic;">    --&gt;</span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/connectionStrings<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>I uploaded everything to the virtual directory and tried to access the new applications.  The public facing side (web forms) worked cause it had a separate config file, the admin side through the generic IIS7 internal server error with no messages.  I looked everywhere to find a solution.  Many sources said to add a wrapping element around the parent web.config so that it&#8217;s settings don&#8217;t conflict with the virtual directories (inheritance in IIS7 config files). I spent a week plus on this issue until I ran the config file through an XML validator.  As you can see I had a rouge comment tag in the config.  Had I known that IIS7 was first validating my config file I might have gotten an error along the lines of &#8220;invalid xml&#8221; instead of generic 500 error.</p>
<p>Reader be warned, be sure the validate the web.config file before uploading.  And check the config file before you make any drastic changes like I did (I moved the MVC project into the public facing site to now have just one project to deploy, thinking that might solve the issue).  One point worth mentioning, I had edited my published web.config outside of VS2008 in a text editor, hopefully VS would have caught that error for me had I known.</p>
<p>Good luck, happy coding and avoid the frustration I had.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytecyclist.com/2008/09/22/frustrating-iis7-configuration-500-error/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Where I was 7 years ago.</title>
		<link>http://www.bytecyclist.com/2008/09/11/where-i-was-7-years-ago/</link>
		<comments>http://www.bytecyclist.com/2008/09/11/where-i-was-7-years-ago/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 20:47:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.bytecyclist.com/?p=24</guid>
		<description><![CDATA[This day, September 11th, will make any person think back to what they were doing when the tragic news broke from New York.
My experience was unique, to say the least. Seven years ago I was in my senior year of high school at Park Center Senior High in Brooklyn Park, MN.  I had stayed home [...]]]></description>
			<content:encoded><![CDATA[<p>This day, September 11th, will make any person think back to what they were doing when the tragic news broke from New York.</p>
<p>My experience was unique, to say the least. Seven years ago I was in my senior year of high school at Park Center Senior High in Brooklyn Park, MN.  I had stayed home that day because I had an orthodontist appointment in the morning.  My mom was going to take me to the appointment and then drop me off at school before fourth period. I remember waking up, eating breakfast and then watching the television.   Just as we were about to leave, the news footage started coming on the TV about the first plane.  They were reporting it as a small plane at first, not a jumbo jet.   Soon after my mom and I watched in disbelief as we saw the live footage of the second plane.</p>
<p>We were now running late for the appointment so we got in the car and drove to the dentist. The appointment was just a usual band replacement and tightening.  I remember sitting in the chair wondering what was going on while I could hear the news over the radio (they usually have music on).  The technicians where confused with what was going on, I recall telling them what I had seen at home.  The appointment didn&#8217;t last long and we were on our way back home; don&#8217;t know why my mom didn&#8217;t take me to school.  She probably thought that school might be closing and she should find out before she drops me off.</p>
<p>Once back, we flipped back on the TV to see replays of any recent events.  Television shots from all angles and opinions were spewing everywhere.  I remember seeing all the reports as they broke, from the initial crashes, pentagon crash, Pennsylvania crash, to even the collapse of the two towers.  My mom and I were in shock, she was calling everyone she could think of  including my dad and relatives who live on the east coast (everyone was safe).  Once the second tower had collapsed it had gotten late and was time to get me to school.</p>
<p>When I got to school, all the TV&#8217;s in our lunchroom were tuned to the news channels and there were groups of students, faculty and staff watching in dis-belief.  I headed up to my class and it was a different story, no one knew what had happened and slowing the information started trickling in.  Later, in one of my economics classes the teacher carted in a TV for us to watch, knowing that trying to teach us was going to be useless.</p>
<p>The facts of that day are still unbelievable.  Our security of a nation was not as secure as we expected.  The rest is history better left unsaid by me.  However In my opinion, and the opinion of many, the events of that day changed this century.  We suspected Al Quida and Bin Laden for the attacks as a nation, but yet we went to war with Iraq???  I don&#8217;t see the connection between WMD&#8217;s and Boeing 767&#8217;s.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytecyclist.com/2008/09/11/where-i-was-7-years-ago/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Science Rocks!</title>
		<link>http://www.bytecyclist.com/2008/09/11/science-rocks/</link>
		<comments>http://www.bytecyclist.com/2008/09/11/science-rocks/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 17:54:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[future]]></category>

		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://www.bytecyclist.com/?p=22</guid>
		<description><![CDATA[I Found this on one of my friends posts and found it very interesting.  Science Rocks!!!
]]></description>
			<content:encoded><![CDATA[<p>I Found this on one of my friends posts and found it very interesting.  <a title="Science Rocks" href="http://blog.wired.com/wiredscience/2008/09/top-10-amazing.html" target="_blank">Science Rocks!!!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytecyclist.com/2008/09/11/science-rocks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Black Betty Snowboard Video</title>
		<link>http://www.bytecyclist.com/2008/09/04/black-betty-snowboard-video/</link>
		<comments>http://www.bytecyclist.com/2008/09/04/black-betty-snowboard-video/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 16:22:49 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category><![CDATA[Video]]></category>

		<category><![CDATA[Black Betty]]></category>

		<category><![CDATA[Duluth MN]]></category>

		<category><![CDATA[Snowboarding]]></category>

		<guid isPermaLink="false">http://www.bytecyclist.com/?p=14</guid>
		<description><![CDATA[During college I was big in to video editing and movie making.  Since then priorities have changed to coding and life.  I was cleaning up a hard drive I used back then and found one of my favorite creations.  I&#8217;m sure I have one more video that I made/published, I just have to find it.  [...]]]></description>
			<content:encoded><![CDATA[<p>During college I was big in to video editing and movie making.  Since then priorities have changed to coding and life.  I was cleaning up a hard drive I used back then and found one of my favorite creations.  I&#8217;m sure I have one more video that I made/published, I just have to find it.  All of the filming and editing was done by me, and all of the riders featured are friends of mine.  Hope you enjoy!</p>
<a href="http://www.bytecyclist.com/2008/09/04/black-betty-snowboard-video/"><em>Click here to view the embedded video.</em></a>
]]></content:encoded>
			<wfw:commentRss>http://www.bytecyclist.com/2008/09/04/black-betty-snowboard-video/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Future of Computers</title>
		<link>http://www.bytecyclist.com/2008/09/03/the-future-of-computers/</link>
		<comments>http://www.bytecyclist.com/2008/09/03/the-future-of-computers/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 04:57:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.bytecyclist.com/?p=10</guid>
		<description><![CDATA[Just read this interesting article sent by my friendJustin about the future of computers.  This is pretty cool and worth the read if you like engineering or computers.
Link
]]></description>
			<content:encoded><![CDATA[<p>Just read this interesting article sent by my friend<a tabindex="0" href="http://www.justnbusiness.com/" target="_blank">Justin</a> about the future of computers.  This is pretty cool and worth the read if you like engineering or computers.</p>
<p><a tabindex="0" href="http://h71028.www7.hp.com/eNewsletter/cache/599441-0-0-225-121.html?jumpid=em_di_384564_US_US_0_000&amp;diaid=di_hpc_us_637441_US&amp;dimid=1039756406&amp;dicid=taw_July08&amp;mrm=1-4BVUP" target="_blank">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytecyclist.com/2008/09/03/the-future-of-computers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Byte Sized Tour de France Stage 3 Winner</title>
		<link>http://www.bytecyclist.com/2008/09/03/byte-sized-tour-de-france-stage-3-winner/</link>
		<comments>http://www.bytecyclist.com/2008/09/03/byte-sized-tour-de-france-stage-3-winner/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 04:56:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[cycling]]></category>

		<category><![CDATA[Tour de France]]></category>

		<guid isPermaLink="false">http://www.bytecyclist.com/?p=7</guid>
		<description><![CDATA[Maybe I can be a pro cyclist after all&#8230;  My wife and I have been following the Tour de France 2008 Stage 3 winner Samuel Dumoulin for a while.  We like to keep up with his achievements because he is similar in size to us.  We all (myself, wife and Samuel Dumoulin) all stand about 5&#8242; 2&#8243; [...]]]></description>
			<content:encoded><![CDATA[<p>Maybe I can be a pro cyclist after all&#8230;  My wife and I have been following the Tour de France 2008 Stage 3 winner <a tabindex="0" href="http://en.wikipedia.org/wiki/Samuel_Dumoulin" target="_blank">Samuel Dumoulin</a> for a while.  We like to keep up with his achievements because he is similar in size to us.  We all (myself, wife and Samuel Dumoulin) all stand about 5&#8242; 2&#8243; (5 feet 2 inches) tall and for my wife and I seeing someone who is similar in stature win such a stage and event is enough to keep us motivated.  How cool would it be to meet him or even take a ride with him through France, Awesome!  Way to go Samuel!  Keep up the good riding.</p>
<p><a tabindex="0" href="http://www.equipe-cofidis.com/gb/equipe.asp?lid=10" target="_blank">Samuel Dumoulin on team Cofidis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytecyclist.com/2008/09/03/byte-sized-tour-de-france-stage-3-winner/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bytecyclist dot com</title>
		<link>http://www.bytecyclist.com/2008/09/03/bytecyclist-dot-com/</link>
		<comments>http://www.bytecyclist.com/2008/09/03/bytecyclist-dot-com/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 04:54:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[coding]]></category>

		<category><![CDATA[cycling]]></category>

		<guid isPermaLink="false">http://www.bytecyclist.com/?p=4</guid>
		<description><![CDATA[Welcome to ByteCyclist.com.  My name is Kyle LeNeau, I am the author of this site, idea, name, code, plugins, and anything else.  I am a programmer from Minneapolis, MN who enjoys bytes (coding) and riding my bicycle thus the name bytecyclist.com.  I amThe ByteCyclist.  This site is formed with the intent of getting my thoughts [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to ByteCyclist.com.  My name is Kyle LeNeau, I am the author of this site, idea, name, code, plugins, and anything else.  I am a programmer from Minneapolis, MN who enjoys bytes (coding) and riding my bicycle thus the name bytecyclist.com.  I am<strong>The ByteCyclist</strong>.  This site is formed with the intent of getting my thoughts out to the world.  Since I&#8217;m a developer  you should expect code samples and ideas of mine along with any projects I might be working on.  As a cyclist, who knows what will end up here, maybe some cool bike sites/links, rides of mine or anything else related to biking.  Enjoy the content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytecyclist.com/2008/09/03/bytecyclist-dot-com/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
