<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DJ Bri T.net &#187; Everything Else</title>
	<atom:link href="http://dj-bri-t.net/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://dj-bri-t.net</link>
	<description>Technocrat at large</description>
	<lastBuildDate>Tue, 18 May 2010 14:31:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Dynamic Named Routes for Semi-Static Pages in Rails</title>
		<link>http://dj-bri-t.net/2010/04/dynamic-named-routes-for-semi-static-pages-in-rails/</link>
		<comments>http://dj-bri-t.net/2010/04/dynamic-named-routes-for-semi-static-pages-in-rails/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 17:37:32 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[ActionController]]></category>
		<category><![CDATA[Dynamic]]></category>
		<category><![CDATA[Named Routes]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Static Pages]]></category>

		<guid isPermaLink="false">http://dj-bri-t.net/?p=351</guid>
		<description><![CDATA[When I was designing the new UMSwing website, I had a few issues that, at the time, I didn't have a clean method of implementing. One of those was the creation of semi-static pages. After watching this episode of Railscasts, I had a pretty good idea of how to implement them. The only issue with the solution offered was the lack of dynamically generated routes]]></description>
			<content:encoded><![CDATA[<p>When I was designing the new UMSwing website, I had a few issues that, at the time, I didn&#8217;t have a clean method of implementing. One of those was the creation of semi-static pages. After watching <a title="Episode 117: Semi-Static Pages" href="http://railscasts.com/episodes/117-semi-static-pages">this episode</a> of <a title="Railscasts" href="http://railscasts.com">Railscasts</a>, I had a pretty good idea of how to implement them. The only issue with the solution offered was the lack of dynamically generated routes.</p>
<p>Semi-static pages are used everywhere on websites. They&#8217;re those pages like an &#8220;About&#8221; page, which has content on it that doesn&#8217;t really change that often. Typically, a controller would have to house these actions (/about, /faq, /contact, etc.), and  the routes specified manually. Railscasts came up with an ingenious idea to create a controller which was routed to /static/*, so that semi-static pages could be created on-the-fly and modified easily. It also allows for modifications to change without committing to a repository and going through the process of deploying all over again.</p>
<p>For those needing a quick Rails primer before going on, here&#8217;s the quick and dirty of what you need to know to understand this:</p>
<ul>
<li><a title="Ruby on Rails" href="http://rubyonrails.org">Rails</a> is a <a title="Model-View-Controller" href="http://en.wikipedia.org/wiki/Model–view–controller">MVC</a>-based web application framework that runs on <a title="Ruby Programming Language" href="www.ruby-lang.org/">Ruby</a>. In short, Ruby code is written to create webpages on-the-fly.</li>
<li>Every request in Rails is first put through the routes file in config/routes.rb. This file tells Rails which <a title="Ruby on Rails: Controllers" href="http://guides.rubyonrails.org/getting_started.html#controllers">Controller</a> and <a title="Ruby on Rails: ActionController" href="http://guides.rubyonrails.org/getting_started.html#action-controller">Action</a> is run.</li>
</ul>
<p>Okay, let&#8217;s get started. Let&#8217;s create our static pages scaffold (which includes model, views, and the controller). Obviously, there are sections of this that you would want to require authentication for (editing and deleting, for example), but that&#8217;s outside the scope of this tutorial.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">script<span style="color: #000000; font-weight: bold;">/</span>generate scaffold pages title:string permalink:string content:text;
rake db:migrate</pre></div></div>

<p>Now we need to modify our controller slightly. More specifically, our <code>show</code> action. Right now, it will respond to showing an element only when the ID is displayed. We want to modify it to handle a permalink as well (/about and /contact look better than /pages/135, don&#8217;t you think?). Here is your modified <code>show</code> action:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="rails" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#5A0A0A; font-weight:bold;">show</span>
  <span style="color:#9966CC; font-weight:bold;">if</span> params<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:permalink</span><span style="color:#006600; font-weight:bold;">&#93;</span>
    <span style="color:#0066ff; font-weight:bold;">@page</span> = Page.<span style="color:#9900CC;">find_by_permalink</span><span style="color:#006600; font-weight:bold;">&#40;</span>params<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:permalink</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
  <span style="color:#9966CC; font-weight:bold;">else</span>
    <span style="color:#0066ff; font-weight:bold;">@page</span> = Page.<span style="color:#9900CC;">find</span><span style="color:#006600; font-weight:bold;">&#40;</span>params<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:id</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></td></tr></table></div>

<p>Before we go any further, we need to create two custom methods in our model. These will format the permalink to remove any unwanted characters for the custom route name (replacing all unacceptable characters with an underscore) and for the URL (replacing all unacceptable characters with a forward slash to allow for nesting of pages). It&#8217;s also important to note here that previous validation should be done to ensure that the permalink does not have leading or tailing non-alphanumeric characters, but I removed that for simplicity&#8217;s sake.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="rails" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">class</span> Page <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#6666ff; font-weight:bold;">ActiveRecord::Base</span>
  <span style="color:#9966CC; font-weight:bold;">def</span> route_name
    <span style="color:#CC0066; font-weight:bold;">p</span> = <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">permalink</span>.<span style="color:#CC0066; font-weight:bold;">gsub</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#91;</span>^A<span style="color:#006600; font-weight:bold;">-</span>Za<span style="color:#006600; font-weight:bold;">-</span>z0<span style="color:#006600; font-weight:bold;">-</span><span style="color:#006666;">9</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">+/</span>, <span style="color:#996600;">'_'</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">downcase</span> <span style="color:#008000; font-style:italic;"># Change non-alphanumeric characters to an underscore</span>
    <span style="color:#996600;">&quot;static_#{p}&quot;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> uri
    <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">permalink</span>.<span style="color:#CC0066; font-weight:bold;">gsub</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#91;</span>^A<span style="color:#006600; font-weight:bold;">-</span>Za<span style="color:#006600; font-weight:bold;">-</span>z0<span style="color:#006600; font-weight:bold;">-</span><span style="color:#006666;">9</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">+/</span>, <span style="color:#996600;">'/'</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">downcase</span> <span style="color:#008000; font-style:italic;"># Change non-alphanumeric characters to a forward slash</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></td></tr></table></div>

<p>At this point, we can create and modify our pages as we would regularly expect from a new controller. All of our pages are accessible via /pages/1, /pages/2 etc. We now need to make our controller act as our catch-all (so that all requests that do not match any of the other controllers get routed to our Pages controller), and we also need to provide permalink support. Finally, we will dynamically generate customized, name routes for all of our semi-static pages. All of that gets accomplished with a few short lines of code. Add the following code to the top of your config/routes.rb file, starting at line 2 (inside the ActionController::Routing::Routes.draw section):</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
3
4
5
6
7
</pre></td><td class="code"><pre class="rails" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">def</span> map.<span style="color:#9900CC;">static_page_actions</span>
  pages = Page.<span style="color:#9900CC;">find</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#ff3333; font-weight:bold;">:all</span><span style="color:#006600; font-weight:bold;">&#41;</span>
  pages.<span style="color:#5A0A0A; font-weight:bold;">each</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>page<span style="color:#006600; font-weight:bold;">|</span>
    <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">send</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;static_#{page.route_name}&quot;</span>, <span style="color:#996600;">&quot;#{page.uri}&quot;</span>, <span style="color:#ff3333; font-weight:bold;">:controller</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;Pages&quot;</span>, <span style="color:#ff3333; font-weight:bold;">:action</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;show&quot;</span>, <span style="color:#ff3333; font-weight:bold;">:permalink</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> page.<span style="color:#9900CC;">permalink</span><span style="color:#006600; font-weight:bold;">&#41;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></td></tr></table></div>

<p>Finally, we need to call this method close to the bottom of the code, right before our default catch-all routes.</p>

<div class="wp_syntax"><div class="code"><pre class="rails" style="font-family:monospace;">map.<span style="color:#9900CC;">static_page_actions</span>
map.<span style="color:#9900CC;">connect</span> <span style="color:#996600;">':controller/:action/:id'</span>
map.<span style="color:#9900CC;">connect</span> <span style="color:#996600;">':controller/:action/:id.:format'</span></pre></div></div>

<p>What this method does is retrieve all of the static pages in the database, then creates a customized, named route for each page, telling Rails what each URI should look like, and where to direct the request to.</p>
<p>Hopefully this helps some people out with their dynamic page creation. I&#8217;m pretty sure there&#8217;s a pitfall or two here, but I think it could be taken care of by doing some simple route housecleaning in the Pages CRUD controller. The perk of this option is that it allows the routes to be named, and hopefully that is of some benefit for others.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fdj-bri-t.net%2F2010%2F04%2Fdynamic-named-routes-for-semi-static-pages-in-rails%2F&amp;partner=sociable" title="Print"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdj-bri-t.net%2F2010%2F04%2Fdynamic-named-routes-for-semi-static-pages-in-rails%2F&amp;title=Dynamic%20Named%20Routes%20for%20Semi-Static%20Pages%20in%20Rails&amp;bodytext=When%20I%20was%20designing%20the%20new%20UMSwing%20website%2C%20I%20had%20a%20few%20issues%20that%2C%20at%20the%20time%2C%20I%20didn%27t%20have%20a%20clean%20method%20of%20implementing.%20One%20of%20those%20was%20the%20creation%20of%20semi-static%20pages.%20After%20watching%20this%20episode%20of%20Railscasts%2C%20I%20had%20a%20pretty%20good%20idea%20of%20how%20to%20implement%20them.%20The%20only%20issue%20with%20the%20solution%20offered%20was%20the%20lack%20of%20dynamically%20generated%20routes." title="Digg"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdj-bri-t.net%2F2010%2F04%2Fdynamic-named-routes-for-semi-static-pages-in-rails%2F" title="Sphinn"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdj-bri-t.net%2F2010%2F04%2Fdynamic-named-routes-for-semi-static-pages-in-rails%2F&amp;title=Dynamic%20Named%20Routes%20for%20Semi-Static%20Pages%20in%20Rails&amp;notes=When%20I%20was%20designing%20the%20new%20UMSwing%20website%2C%20I%20had%20a%20few%20issues%20that%2C%20at%20the%20time%2C%20I%20didn%27t%20have%20a%20clean%20method%20of%20implementing.%20One%20of%20those%20was%20the%20creation%20of%20semi-static%20pages.%20After%20watching%20this%20episode%20of%20Railscasts%2C%20I%20had%20a%20pretty%20good%20idea%20of%20how%20to%20implement%20them.%20The%20only%20issue%20with%20the%20solution%20offered%20was%20the%20lack%20of%20dynamically%20generated%20routes." title="del.icio.us"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdj-bri-t.net%2F2010%2F04%2Fdynamic-named-routes-for-semi-static-pages-in-rails%2F&amp;t=Dynamic%20Named%20Routes%20for%20Semi-Static%20Pages%20in%20Rails" title="Facebook"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdj-bri-t.net%2F2010%2F04%2Fdynamic-named-routes-for-semi-static-pages-in-rails%2F&amp;title=Dynamic%20Named%20Routes%20for%20Semi-Static%20Pages%20in%20Rails" title="Mixx"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdj-bri-t.net%2F2010%2F04%2Fdynamic-named-routes-for-semi-static-pages-in-rails%2F&amp;title=Dynamic%20Named%20Routes%20for%20Semi-Static%20Pages%20in%20Rails&amp;annotation=When%20I%20was%20designing%20the%20new%20UMSwing%20website%2C%20I%20had%20a%20few%20issues%20that%2C%20at%20the%20time%2C%20I%20didn%27t%20have%20a%20clean%20method%20of%20implementing.%20One%20of%20those%20was%20the%20creation%20of%20semi-static%20pages.%20After%20watching%20this%20episode%20of%20Railscasts%2C%20I%20had%20a%20pretty%20good%20idea%20of%20how%20to%20implement%20them.%20The%20only%20issue%20with%20the%20solution%20offered%20was%20the%20lack%20of%20dynamically%20generated%20routes." title="Google Bookmarks"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdj-bri-t.net%2F2010%2F04%2Fdynamic-named-routes-for-semi-static-pages-in-rails%2F&amp;title=Dynamic%20Named%20Routes%20for%20Semi-Static%20Pages%20in%20Rails" title="Reddit"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dj-bri-t.net/2010/04/dynamic-named-routes-for-semi-static-pages-in-rails/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>March 5 2010 Photography Update</title>
		<link>http://dj-bri-t.net/2010/03/march-5-2010-photography-update/</link>
		<comments>http://dj-bri-t.net/2010/03/march-5-2010-photography-update/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 17:00:52 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://dj-bri-t.net/?p=323</guid>
		<description><![CDATA[So I haven&#8217;t put up any photos in a while. I&#8217;ve been on a bit of a dry spell, but I went through my archives and pulled out some that I think were better. Comments, as always, are welcome and encouraged. Next Monday, I have an interesting post for all of you with iPhones. One ]]></description>
			<content:encoded><![CDATA[<p>So I haven&#8217;t put up any photos in a while. I&#8217;ve been on a bit of a dry spell, but I went through my archives and pulled out some that I think were better. Comments, as always, are welcome and encouraged.</p>
<p>Next Monday, I have an interesting post for all of you with iPhones. One thing I really like about the iPhone is that I don&#8217;t have to delete text messages. I have a quick and free way for you to back up all of your text messages to read later on. There&#8217;s a lot of paid services out there to do it, but you don&#8217;t have to pay anyone for this quick-and-easy trick!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-14-323">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://dj-bri-t.net/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=14&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-281" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100212-01.jpg" title="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " class="thickbox" rel="set_14" >
								<img title="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " alt="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100212-01.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-282" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100212-02.jpg" title="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " class="thickbox" rel="set_14" >
								<img title="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " alt="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100212-02.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-283" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100212-03.jpg" title="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " class="thickbox" rel="set_14" >
								<img title="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " alt="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100212-03.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-284" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100212-04.jpg" title="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " class="thickbox" rel="set_14" >
								<img title="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " alt="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100212-04.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-285" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100212-05.jpg" title="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " class="thickbox" rel="set_14" >
								<img title="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " alt="Erin, Jason, Tanis, Christine, Gaby, and Michelle. " src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100212-05.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-286" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100213-06.jpg" title="Erin and Christine" class="thickbox" rel="set_14" >
								<img title="Erin and Christine" alt="Erin and Christine" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100213-06.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-287" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100213-07.jpg" title="Origami Flower" class="thickbox" rel="set_14" >
								<img title="Origami Flower" alt="Origami Flower" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100213-07.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-288" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100218-08.jpg" title="Christine and Seb" class="thickbox" rel="set_14" >
								<img title="Christine and Seb" alt="Christine and Seb" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100218-08.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-289" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100218-09.jpg" title="Christine and Seb" class="thickbox" rel="set_14" >
								<img title="Christine and Seb" alt="Christine and Seb" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100218-09.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-290" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100218-10.jpg" title="Christine and Shannon" class="thickbox" rel="set_14" >
								<img title="Christine and Shannon" alt="Christine and Shannon" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100218-10.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-291" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100218-11.jpg" title="Christine and Shannon" class="thickbox" rel="set_14" >
								<img title="Christine and Shannon" alt="Christine and Shannon" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100218-11.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-292" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100218-12.jpg" title="Wil" class="thickbox" rel="set_14" >
								<img title="Wil" alt="Wil" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100218-12.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-293" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100218-13.jpg" title="Erin" class="thickbox" rel="set_14" >
								<img title="Erin" alt="Erin" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100218-13.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-294" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100218-14.jpg" title="Disco Ball" class="thickbox" rel="set_14" >
								<img title="Disco Ball" alt="Disco Ball" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100218-14.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-295" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100220-15.jpg" title="Christine's Cake for Tanis" class="thickbox" rel="set_14" >
								<img title="Christine's Cake for Tanis" alt="Christine's Cake for Tanis" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100220-15.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-296" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100220-16.jpg" title="Christine's Cake for Tanis" class="thickbox" rel="set_14" >
								<img title="Christine's Cake for Tanis" alt="Christine's Cake for Tanis" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100220-16.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-297" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100220-17.jpg" title="Mocca" class="thickbox" rel="set_14" >
								<img title="Mocca" alt="Mocca" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100220-17.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-298" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100220-18.jpg" title="Jason" class="thickbox" rel="set_14" >
								<img title="Jason" alt="Jason" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100220-18.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-299" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100220-19.jpg" title="Matt" class="thickbox" rel="set_14" >
								<img title="Matt" alt="Matt" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100220-19.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-300" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100220-20.jpg" title="Erin and Tanis" class="thickbox" rel="set_14" >
								<img title="Erin and Tanis" alt="Erin and Tanis" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100220-20.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-301" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100220-21.jpg" title="Nathan, Erin and Tanis" class="thickbox" rel="set_14" >
								<img title="Nathan, Erin and Tanis" alt="Nathan, Erin and Tanis" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100220-21.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-302" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100220-22.jpg" title="Tyler" class="thickbox" rel="set_14" >
								<img title="Tyler" alt="Tyler" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100220-22.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-303" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100301-23.jpg" title="Nathan" class="thickbox" rel="set_14" >
								<img title="Nathan" alt="Nathan" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100301-23.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-304" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-24.jpg" title="Christine" class="thickbox" rel="set_14" >
								<img title="Christine" alt="Christine" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-24.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-305" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-25.jpg" title="Hoarfrost" class="thickbox" rel="set_14" >
								<img title="Hoarfrost" alt="Hoarfrost" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-25.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-306" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-26.jpg" title="Hoarfrost" class="thickbox" rel="set_14" >
								<img title="Hoarfrost" alt="Hoarfrost" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-26.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-307" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-27.jpg" title="Hoarfrost" class="thickbox" rel="set_14" >
								<img title="Hoarfrost" alt="Hoarfrost" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-27.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-308" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-28.jpg" title="Hoarfrost" class="thickbox" rel="set_14" >
								<img title="Hoarfrost" alt="Hoarfrost" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-28.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-309" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-29.jpg" title="Bike" class="thickbox" rel="set_14" >
								<img title="Bike" alt="Bike" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-29.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-310" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-30.jpg" title="Hoarfrost" class="thickbox" rel="set_14" >
								<img title="Hoarfrost" alt="Hoarfrost" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-30.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-311" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-31.jpg" title="Hoarfrost" class="thickbox" rel="set_14" >
								<img title="Hoarfrost" alt="Hoarfrost" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-31.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-312" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-32.jpg" title="Hoarfrost" class="thickbox" rel="set_14" >
								<img title="Hoarfrost" alt="Hoarfrost" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-32.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-313" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-33.jpg" title="Gaby" class="thickbox" rel="set_14" >
								<img title="Gaby" alt="Gaby" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-33.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-314" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-34.jpg" title="Erin" class="thickbox" rel="set_14" >
								<img title="Erin" alt="Erin" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-34.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-315" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-35.jpg" title="Erin" class="thickbox" rel="set_14" >
								<img title="Erin" alt="Erin" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-35.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-316" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-36.jpg" title="Tyler" class="thickbox" rel="set_14" >
								<img title="Tyler" alt="Tyler" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-36.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-317" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-37.jpg" title="Christine" class="thickbox" rel="set_14" >
								<img title="Christine" alt="Christine" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-37.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-318" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-38.jpg" title="Tyler" class="thickbox" rel="set_14" >
								<img title="Tyler" alt="Tyler" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-38.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-319" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-39.jpg" title="Tyler" class="thickbox" rel="set_14" >
								<img title="Tyler" alt="Tyler" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-39.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-320" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-40.jpg" title="Danielle" class="thickbox" rel="set_14" >
								<img title="Danielle" alt="Danielle" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-40.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-321" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-41.jpg" title="Danielle" class="thickbox" rel="set_14" >
								<img title="Danielle" alt="Danielle" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-41.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-322" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-42.jpg" title="Danielle and Seb" class="thickbox" rel="set_14" >
								<img title="Danielle and Seb" alt="Danielle and Seb" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-42.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-323" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-43.jpg" title="Thor and Shannon" class="thickbox" rel="set_14" >
								<img title="Thor and Shannon" alt="Thor and Shannon" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-43.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-324" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2010-03-05/[DJ Bri T.net] 20100303-44.jpg" title="Christine and Seni" class="thickbox" rel="set_14" >
								<img title="Christine and Seni" alt="Christine and Seni" src="http://dj-bri-t.net/wp-content/gallery/2010-03-05/thumbs/thumbs_[DJ Bri T.net] 20100303-44.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>



<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fdj-bri-t.net%2F2010%2F03%2Fmarch-5-2010-photography-update%2F&amp;partner=sociable" title="Print"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdj-bri-t.net%2F2010%2F03%2Fmarch-5-2010-photography-update%2F&amp;title=March%205%202010%20Photography%20Update&amp;bodytext=So%20I%20haven%27t%20put%20up%20any%20photos%20in%20a%20while.%20I%27ve%20been%20on%20a%20bit%20of%20a%20dry%20spell%2C%20but%20I%20went%20through%20my%20archives%20and%20pulled%20out%20some%20that%20I%20think%20were%20better.%20Comments%2C%20as%20always%2C%20are%20welcome%20and%20encouraged.%0D%0A%0D%0ANext%20Monday%2C%20I%20have%20an%20interesting%20post%20for" title="Digg"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdj-bri-t.net%2F2010%2F03%2Fmarch-5-2010-photography-update%2F" title="Sphinn"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdj-bri-t.net%2F2010%2F03%2Fmarch-5-2010-photography-update%2F&amp;title=March%205%202010%20Photography%20Update&amp;notes=So%20I%20haven%27t%20put%20up%20any%20photos%20in%20a%20while.%20I%27ve%20been%20on%20a%20bit%20of%20a%20dry%20spell%2C%20but%20I%20went%20through%20my%20archives%20and%20pulled%20out%20some%20that%20I%20think%20were%20better.%20Comments%2C%20as%20always%2C%20are%20welcome%20and%20encouraged.%0D%0A%0D%0ANext%20Monday%2C%20I%20have%20an%20interesting%20post%20for" title="del.icio.us"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdj-bri-t.net%2F2010%2F03%2Fmarch-5-2010-photography-update%2F&amp;t=March%205%202010%20Photography%20Update" title="Facebook"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdj-bri-t.net%2F2010%2F03%2Fmarch-5-2010-photography-update%2F&amp;title=March%205%202010%20Photography%20Update" title="Mixx"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdj-bri-t.net%2F2010%2F03%2Fmarch-5-2010-photography-update%2F&amp;title=March%205%202010%20Photography%20Update&amp;annotation=So%20I%20haven%27t%20put%20up%20any%20photos%20in%20a%20while.%20I%27ve%20been%20on%20a%20bit%20of%20a%20dry%20spell%2C%20but%20I%20went%20through%20my%20archives%20and%20pulled%20out%20some%20that%20I%20think%20were%20better.%20Comments%2C%20as%20always%2C%20are%20welcome%20and%20encouraged.%0D%0A%0D%0ANext%20Monday%2C%20I%20have%20an%20interesting%20post%20for" title="Google Bookmarks"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdj-bri-t.net%2F2010%2F03%2Fmarch-5-2010-photography-update%2F&amp;title=March%205%202010%20Photography%20Update" title="Reddit"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dj-bri-t.net/2010/03/march-5-2010-photography-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ViM Made Easy &#8211; Part 1</title>
		<link>http://dj-bri-t.net/2009/12/vim-made-easy-part-1/</link>
		<comments>http://dj-bri-t.net/2009/12/vim-made-easy-part-1/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 17:00:51 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://dj-bri-t.net/?p=212</guid>
		<description><![CDATA[Well, after the massive spike in traffic to my site after writing the blog post on GNU Screen and Byobu Made Easy, I decided to do another quick tutorial on another Linux command-line tool, ViM. ViM, or &#8220;Vi Improved&#8221;, is a command-line editor that has been around since the dawn of Linux command lines, and ]]></description>
			<content:encoded><![CDATA[<p>Well, after the massive spike in traffic to my site after writing the blog post on GNU Screen and Byobu Made Easy, I decided to do another quick tutorial on another Linux command-line tool, ViM. ViM, or &#8220;Vi Improved&#8221;, is a command-line editor that has been around since the dawn of Linux command lines, and is deceivingly powerful. Although we won&#8217;t get into the more powerful parts of the program today, stay tuned for some power tips later.</p>
<p>Now, anyone that has been around two or more Linux command-line junkies I&#8217;m sure has heard the Emacs vs. ViM argument at some point. Regardless of which one you like, they&#8217;re both great editors. Give them both a shot and choose your favourite.</p>
<h2>ViM Overview</h2>
<p>Vim can be very overwhelming to start off on, but is great once you get used to it. When you first open ViM, you will be presented with a blank document and you will be in Normal mode (see below). Soon, we will be able to start writing text, undoing a mistake, perform cuts, copies, and pastes, as well as some search-and-replace.</p>
<p>A quick note that almost everything is <em>case-sensitive</em>!</p>
<h2>Program Modes</h2>
<p>There are six main program modes in ViM, listed below. We will only cover three of them in this tutorial for the time being.</p>
<ul>
<li><em>Normal Mode</em>. This is where you type all of your commands, typically to move into one of the other modes.</li>
<li><em>Insert Mode</em>. Here is where you&#8217;ll actually type text into your document.</li>
<li><em>Visual Mode</em>. Visual mode is mainly used for yanking (copying) and deleting (cutting). Although it can do more than this, we&#8217;ll focus on these for now.</li>
<li>Select Mode. Similar to Visual mode, Select mode is typically used for deleting a selection of text and immediately typing over top of it.</li>
<li>Command-Line Mode. This is where you type your commands, such as saving, searching (and replacing), and the ability to edit ViM&#8217;s options.</li>
<li>Ex Mode. All-in-all, this is pretty much command-line mode, except after typing a command you end up staying in command-line mode instead of reverting back to Normal mode.</li>
</ul>
<h2>Let&#8217;s Write Something!</h2>
<p>You&#8217;ve just opened up ViM, but every time you try to type text, nothing seems to happen? What gives?! Well, right now you&#8217;re in Normal mode, and ViM is waiting for an instruction. In order to start typing text, just type &#8220;i&#8221; (for &#8220;Insert&#8221;) or &#8220;a&#8221; (for &#8220;Append&#8221;). The Append mode will move your cursor one character forward before you can type, so keep note of that. After you&#8217;re finished typing what you want, just hit <em>Escape</em> to get back into Normal mode.</p>
<p>Let&#8217;s say, that you just wrote &#8220;ViM is awesome!&#8221; in your spiffy new document, but saying it once just isn&#8217;t enough! You want to say it over and over again, but typing it out so many times just seems like a waste, doesn&#8217;t it? Time to go into Visual mode! Move your cursor to the beginning of your text using the cursors, then type &#8220;v&#8221; (lower-case). This puts you into Character-Select Visual mode. Move your cursor to the end of the text, and press &#8220;y&#8221; (for &#8220;Yank&#8221;), which copies the text into it&#8217;s built-in clipboard. Move your cursor to where you want to paste, and type &#8220;p&#8221; (for &#8220;Paste&#8221;). Note that &#8220;P&#8221; will paste BEFORE your cursor, so keep that in mind.</p>
<h2>Fixing Screw-ups</h2>
<p>Whoops! You pasted it one-too-many times, or you pasted it in the wrong spot! Never fear, the Undo tool is here! Make sure you&#8217;re in Normal mode (just hit Escape if you&#8217;re not sure), and press &#8220;u&#8221; (for &#8220;Undo&#8221;).</p>
<p>What if, for example, you ended up typing &#8220;ViM is awsemoe!&#8221; (hey, your fingers got tied up; it happens). It doesn&#8217;t make sense to undo all of that, so let&#8217;s just do a search-and-replace. Go into normal mode and type &#8220;:%s/awsemoe!/awesome!&#8221;, then hit enter. Poof! Problem solved! I&#8217;ll discuss the search-replace a bit more in the cheat sheet. If you just want to search for text, type &#8220;/your-text-here&#8221; in Normal mode, then hit enter. &#8220;n&#8221; will move you forward through all the findings, and &#8220;N&#8221; will move you backwards.</p>
<h2>Saving and Exiting</h2>
<p>Saving and exiting is really easy. &#8220;:w myfile.txt&#8221; will write the file to myfile.txt. If you opened an existing file, you don&#8217;t need the file name, so &#8220;:w&#8221; is all you need. To do a save and quit at the same time, type &#8220;:wq&#8221;.</p>
<p>What if you want to quit but don&#8217;t save your changes? The best way to do this is &#8220;:q!&#8221;, which will quit without heeding any warnings about the file not being saved.</p>
<h2>Command Quick-Review</h2>
<pre>- a - Append
- i - Insert
- /&lt;your-text-here&gt; - Search for &lt;your-text-here&gt;. Does NOT use regular
  expressions
- dd - Delete the entire line that your cursor is on
- x - Delete the character your cursor is hovering on.
- :42 - Move to line 42
- G - Go to the last line in the document
- :s%/&lt;search&gt;/&lt;replace&gt; - Regular expression-compatible search-replace.
    - :s/&lt;search&gt;/&lt;replace&gt;/g - Same as above, except replaces everything on a
      single line. Remove the "g" to replace only the first occurrance.
    - :s42/&lt;search&gt;/&lt;replace&gt;/g - Same as above, except replace on line 42.
- V - Line-select Visual mode
- v - Character-select Visual mode
    - y - Copy (yank) the selected text
    - d - Delete the selected text
- :w - Write the file to disk
- :wq - Write and quit
- :q - Quit
- :q! - Quit without saving</pre>
<hr />Hopefully those that are starting out on Linux will find this useful. I plan on going in to greater depth in the near future, so stay tuned for that. If you like this article, I&#8217;d love for you to <strong><em>Digg or Reddit</em></strong> this page below. It&#8217;s such a great feeling when your traffic spikes to 1000 hits in a day.  And, for those Emacs lovers, I&#8217;ll be doing an Emacs writeup as well.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fvim-made-easy-part-1%2F&amp;partner=sociable" title="Print"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fvim-made-easy-part-1%2F&amp;title=ViM%20Made%20Easy%20-%20Part%201&amp;bodytext=Well%2C%20after%20the%20massive%20spike%20in%20traffic%20to%20my%20site%20after%20writing%20the%20blog%20post%20on%20GNU%20Screen%20and%20Byobu%20Made%20Easy%2C%20I%20decided%20to%20do%20another%20quick%20tutorial%20on%20another%20Linux%20command-line%20tool%2C%20ViM.%20ViM%2C%20or%20%22Vi%20Improved%22%2C%20is%20a%20command-line%20editor%20that%20ha" title="Digg"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fvim-made-easy-part-1%2F" title="Sphinn"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fvim-made-easy-part-1%2F&amp;title=ViM%20Made%20Easy%20-%20Part%201&amp;notes=Well%2C%20after%20the%20massive%20spike%20in%20traffic%20to%20my%20site%20after%20writing%20the%20blog%20post%20on%20GNU%20Screen%20and%20Byobu%20Made%20Easy%2C%20I%20decided%20to%20do%20another%20quick%20tutorial%20on%20another%20Linux%20command-line%20tool%2C%20ViM.%20ViM%2C%20or%20%22Vi%20Improved%22%2C%20is%20a%20command-line%20editor%20that%20ha" title="del.icio.us"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fvim-made-easy-part-1%2F&amp;t=ViM%20Made%20Easy%20-%20Part%201" title="Facebook"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fvim-made-easy-part-1%2F&amp;title=ViM%20Made%20Easy%20-%20Part%201" title="Mixx"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fvim-made-easy-part-1%2F&amp;title=ViM%20Made%20Easy%20-%20Part%201&amp;annotation=Well%2C%20after%20the%20massive%20spike%20in%20traffic%20to%20my%20site%20after%20writing%20the%20blog%20post%20on%20GNU%20Screen%20and%20Byobu%20Made%20Easy%2C%20I%20decided%20to%20do%20another%20quick%20tutorial%20on%20another%20Linux%20command-line%20tool%2C%20ViM.%20ViM%2C%20or%20%22Vi%20Improved%22%2C%20is%20a%20command-line%20editor%20that%20ha" title="Google Bookmarks"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fvim-made-easy-part-1%2F&amp;title=ViM%20Made%20Easy%20-%20Part%201" title="Reddit"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dj-bri-t.net/2009/12/vim-made-easy-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Back</title>
		<link>http://dj-bri-t.net/2009/12/im-back/</link>
		<comments>http://dj-bri-t.net/2009/12/im-back/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 20:53:37 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[UMswing]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://dj-bri-t.net/?p=206</guid>
		<description><![CDATA[Well, it&#8217;s been a while since I&#8217;ve posted; about three weeks, actually. To the one or two readers I have, my apologies that you don&#8217;t have something to waste your time on twice per week. I&#8217;m getting back into the writing mood, so I should be building up a buffer of things to write in ]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s been a while since I&#8217;ve posted; about three weeks, actually. To the one or two readers I have, my apologies that you don&#8217;t have something to waste your time on twice per week. I&#8217;m getting back into the writing mood, so I should be building up a buffer of things to write in the near future.</p>
<p>A lot has happened since I last talked about the <a title="IPAM Presentation: November 2009" href="http://dj-bri-t.net/2009/11/ipam-presentation-november-2009/" target="_self">IPAM presentation</a> that I took part in. To start with the related topic, I was approached to do the presentation again, this time internally to other departments. Thus, the other co-op student and I set about cleaning up the presentation a bit, fixing some errors, and making it flow smoother. It went much better the second time, thankfully, both from a public speaking perspective and a demonstration perspective. As fun as it was to work on that, I&#8217;m glad it&#8217;s over and done with right now.</p>
<p>Speaking of work, the number of days that I have left at IPC are dwindling quickly as the new year approaches. I work until December 31st, at which point I&#8217;m back in class. It&#8217;s been a fun past couple of months, and the paychecks have been very nice, but I&#8217;m also looking forward to getting back on campus to get some more studying done. I&#8217;ve decided that I won&#8217;t get a job during the winter semester so I can concentrate on my studying; I&#8217;ll have more than enough money to get through four months, and then I&#8217;ll be working in the summer again.</p>
<p>After that presentation was done with at work, I found that I had a fair amount of spare time, as there weren&#8217;t too many tasks to work on. I spent that time learning <a title="Ruby on Rails" href="http://rubyonrails.org/" target="_blank">Ruby on Rails</a>, and putting that knowledge towards the new <a title="University of Manitoba Swing Dance Club" href="http://umswing.ca">UMSwing</a> site. Although on the outside it will look almost the same as before, this new site will have an extensive backend that will make UMSwing virtually paperless. Although you may not think we use that much paper, think again; I have a full 3&#8243; 3-ring binder in our office that says otherwise. All of our memberships, attendance, and transactions will be tracked on the web application, thus eliminating the need for those pieces of paper to be printed in the first place. Anyways, I&#8217;ve been working very hard on the site, and it&#8217;s almost ready to be tested by some other people. So, if you&#8217;re interested in testing some software for an eco-friendly cause, let me know in the comments section and I&#8217;ll keep you informed.</p>
<p>That&#8217;s a quick update on what&#8217;s happened in the past few weeks at work. I have a few more updates to spew out in the coming days, one of them involving my server upgrade (*cough* RAID *cough*), and some involving some extra-curricular activities (including some new photos to go up soon).</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fim-back%2F&amp;partner=sociable" title="Print"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fim-back%2F&amp;title=I%27m%20Back&amp;bodytext=Well%2C%20it%27s%20been%20a%20while%20since%20I%27ve%20posted%3B%20about%20three%20weeks%2C%20actually.%20To%20the%20one%20or%20two%20readers%20I%20have%2C%20my%20apologies%20that%20you%20don%27t%20have%20something%20to%20waste%20your%20time%20on%20twice%20per%20week.%20I%27m%20getting%20back%20into%20the%20writing%20mood%2C%20so%20I%20should%20be%20building" title="Digg"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fim-back%2F" title="Sphinn"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fim-back%2F&amp;title=I%27m%20Back&amp;notes=Well%2C%20it%27s%20been%20a%20while%20since%20I%27ve%20posted%3B%20about%20three%20weeks%2C%20actually.%20To%20the%20one%20or%20two%20readers%20I%20have%2C%20my%20apologies%20that%20you%20don%27t%20have%20something%20to%20waste%20your%20time%20on%20twice%20per%20week.%20I%27m%20getting%20back%20into%20the%20writing%20mood%2C%20so%20I%20should%20be%20building" title="del.icio.us"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fim-back%2F&amp;t=I%27m%20Back" title="Facebook"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fim-back%2F&amp;title=I%27m%20Back" title="Mixx"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fim-back%2F&amp;title=I%27m%20Back&amp;annotation=Well%2C%20it%27s%20been%20a%20while%20since%20I%27ve%20posted%3B%20about%20three%20weeks%2C%20actually.%20To%20the%20one%20or%20two%20readers%20I%20have%2C%20my%20apologies%20that%20you%20don%27t%20have%20something%20to%20waste%20your%20time%20on%20twice%20per%20week.%20I%27m%20getting%20back%20into%20the%20writing%20mood%2C%20so%20I%20should%20be%20building" title="Google Bookmarks"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F12%2Fim-back%2F&amp;title=I%27m%20Back" title="Reddit"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dj-bri-t.net/2009/12/im-back/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Busy Past Two Weeks</title>
		<link>http://dj-bri-t.net/2009/11/a-busy-past-two-weeks/</link>
		<comments>http://dj-bri-t.net/2009/11/a-busy-past-two-weeks/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:00:14 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://dj-bri-t.net/?p=185</guid>
		<description><![CDATA[So my twice-per-week updates seem to have fallen a bit behind as of late. To those one or two dedicated readers, my apologies for not giving you something to burn a couple minutes from your day with. I have three culprits to lay the blame for this lack of updates. One of those has been ]]></description>
			<content:encoded><![CDATA[<p>So my twice-per-week updates seem to have fallen a bit behind as of late. To those one or two dedicated readers, my apologies for not giving you something to burn a couple minutes from your day with.</p>
<p>I have three culprits to lay the blame for this lack of updates. One of those has been a savage case of writer&#8217;s block. Another of those has been a very busy schedule for me. Busier than normal, even. As such, the third and final culprit goes by the name of &#8220;Sleep Deprivation&#8221;, which always seems to tag along with culprit number two. In a possibly vain attempt to get myself back on my writing pedestal, I figured I&#8217;d fill you all in about the past two weeks.</p>
<p>As those of you who are involved in the Winnipeg swing scene may know, UMSwing had two events to demo at last weekend, the first being the Gilbert &amp; Sullivan Gala Fund-raiser, and the second being the Winnipeg Jazz Orchestra&#8217;s performance. The fund-raiser involved a couple of demonstration songs, and the WJO performance involved dancing for 20 minutes during their intermission, as well as the opportunity for one or two couples to dance on stage during one of their songs. Although they took place over the weekend, I&#8217;ve been in talks with organizers of both events for quite some time, and the last week became crunch time for me as I made sure everything went as expected. I&#8217;m really glad that we were invited to both events, and we&#8217;d certainly be interested in doing it again.</p>
<p>To swing (no pun intended) from one quirky interest to another, this Wednesday a couple of us took advantage of the day off and planned for a session of Dungeons &amp; Dragons. I need to take a minute here to explain this:</p>
<ul>
<li>No, it did NOT die out ten years ago</li>
<li>Yes, it IS fun</li>
<li>No, you do NOT need to be an über-nerd to play</li>
<li>Yes, girls DO play it.</li>
</ul>
<p>Anyway, in this group (which has yet to receive a name), I am the DM; I&#8217;m the one who tells the story, plays the non-player characters (NPCs), and guides the other players through their adventures. Although very fun to DM, it also requires a lot of work to create your own adventures; dungeons, the global map, encounters, and NPCs all need to be planned. Thus, that chewed through a fair amount of spare time that I had. On the plus side, I over-prepared, so I have everything I need for the next time around.</p>
<p>This weekend, I have plans to go out to a friend&#8217;s cottage for some much-needed rest. It&#8217;ll be nice to get away from it all, and hopefully take some great photos, which I hope to put up for Monday&#8217;s post. I also have some ideas for another Linux command line tip, so those of you reading my previous post regarding Byobu: stay tuned.</p>
<p><em>&#8220;I&#8217;ve never seen you here before. I like that in a woman.&#8221;</em><br />
&#8211; Renaldo &#8216;The Heel&#8217;, <em>Crimewave</em> (1985)</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F11%2Fa-busy-past-two-weeks%2F&amp;partner=sociable" title="Print"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F11%2Fa-busy-past-two-weeks%2F&amp;title=A%20Busy%20Past%20Two%20Weeks&amp;bodytext=So%20my%20twice-per-week%20updates%20seem%20to%20have%20fallen%20a%20bit%20behind%20as%20of%20late.%20To%20those%20one%20or%20two%20dedicated%20readers%2C%20my%20apologies%20for%20not%20giving%20you%20something%20to%20burn%20a%20couple%20minutes%20from%20your%20day%20with.%0D%0A%0D%0AI%20have%20three%20culprits%20to%20lay%20the%20blame%20for%20this" title="Digg"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdj-bri-t.net%2F2009%2F11%2Fa-busy-past-two-weeks%2F" title="Sphinn"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F11%2Fa-busy-past-two-weeks%2F&amp;title=A%20Busy%20Past%20Two%20Weeks&amp;notes=So%20my%20twice-per-week%20updates%20seem%20to%20have%20fallen%20a%20bit%20behind%20as%20of%20late.%20To%20those%20one%20or%20two%20dedicated%20readers%2C%20my%20apologies%20for%20not%20giving%20you%20something%20to%20burn%20a%20couple%20minutes%20from%20your%20day%20with.%0D%0A%0D%0AI%20have%20three%20culprits%20to%20lay%20the%20blame%20for%20this" title="del.icio.us"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdj-bri-t.net%2F2009%2F11%2Fa-busy-past-two-weeks%2F&amp;t=A%20Busy%20Past%20Two%20Weeks" title="Facebook"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F11%2Fa-busy-past-two-weeks%2F&amp;title=A%20Busy%20Past%20Two%20Weeks" title="Mixx"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdj-bri-t.net%2F2009%2F11%2Fa-busy-past-two-weeks%2F&amp;title=A%20Busy%20Past%20Two%20Weeks&amp;annotation=So%20my%20twice-per-week%20updates%20seem%20to%20have%20fallen%20a%20bit%20behind%20as%20of%20late.%20To%20those%20one%20or%20two%20dedicated%20readers%2C%20my%20apologies%20for%20not%20giving%20you%20something%20to%20burn%20a%20couple%20minutes%20from%20your%20day%20with.%0D%0A%0D%0AI%20have%20three%20culprits%20to%20lay%20the%20blame%20for%20this" title="Google Bookmarks"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F11%2Fa-busy-past-two-weeks%2F&amp;title=A%20Busy%20Past%20Two%20Weeks" title="Reddit"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dj-bri-t.net/2009/11/a-busy-past-two-weeks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oct. 24 Photography Update</title>
		<link>http://dj-bri-t.net/2009/10/oct-24-photography-update/</link>
		<comments>http://dj-bri-t.net/2009/10/oct-24-photography-update/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 20:05:06 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[swing dancing]]></category>
		<category><![CDATA[UMswing]]></category>

		<guid isPermaLink="false">http://dj-bri-t.net/?p=168</guid>
		<description><![CDATA[Now that I&#8217;ve been taking more photos recently, I&#8217;m getting into the habit of posting them up a little more frequently. Rest assured, I&#8217;ll keep you all updated when I put up new photos. If you want to take a look at some of my other photos, just head to the gallery. As always, I ]]></description>
			<content:encoded><![CDATA[<p>Now that I&#8217;ve been taking more photos recently, I&#8217;m getting into the habit of posting them up a little more frequently. Rest assured, I&#8217;ll keep you all updated when I put up new photos. If you want to take a look at some of my other photos, just head to the <a href="http://dj-bri-t.net/gallery" target="_self">gallery</a>.</p>
<p>As always, I welcome your feedback; just post a comment below!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-7-168">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://dj-bri-t.net/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=7&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-58" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2009-10-25/IMG_4503.jpg" title=" " class="thickbox" rel="set_7" >
								<img title="IMG_4503" alt="IMG_4503" src="http://dj-bri-t.net/wp-content/gallery/2009-10-25/thumbs/thumbs_IMG_4503.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-59" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2009-10-25/IMG_4511.jpg" title=" " class="thickbox" rel="set_7" >
								<img title="IMG_4511" alt="IMG_4511" src="http://dj-bri-t.net/wp-content/gallery/2009-10-25/thumbs/thumbs_IMG_4511.jpg" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-60" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2009-10-25/IMG_4512.png" title=" " class="thickbox" rel="set_7" >
								<img title="IMG_4512" alt="IMG_4512" src="http://dj-bri-t.net/wp-content/gallery/2009-10-25/thumbs/thumbs_IMG_4512.png" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-61" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2009-10-25/IMG_4520.png" title=" " class="thickbox" rel="set_7" >
								<img title="IMG_4520" alt="IMG_4520" src="http://dj-bri-t.net/wp-content/gallery/2009-10-25/thumbs/thumbs_IMG_4520.png" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-62" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2009-10-25/IMG_4522.png" title=" " class="thickbox" rel="set_7" >
								<img title="IMG_4522" alt="IMG_4522" src="http://dj-bri-t.net/wp-content/gallery/2009-10-25/thumbs/thumbs_IMG_4522.png" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-63" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2009-10-25/IMG_4545.png" title=" " class="thickbox" rel="set_7" >
								<img title="IMG_4545" alt="IMG_4545" src="http://dj-bri-t.net/wp-content/gallery/2009-10-25/thumbs/thumbs_IMG_4545.png" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-64" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2009-10-25/IMG_4547.png" title=" " class="thickbox" rel="set_7" >
								<img title="IMG_4547" alt="IMG_4547" src="http://dj-bri-t.net/wp-content/gallery/2009-10-25/thumbs/thumbs_IMG_4547.png" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-65" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2009-10-25/IMG_4548.png" title=" " class="thickbox" rel="set_7" >
								<img title="IMG_4548" alt="IMG_4548" src="http://dj-bri-t.net/wp-content/gallery/2009-10-25/thumbs/thumbs_IMG_4548.png" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-66" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2009-10-25/IMG_4564.png" title=" " class="thickbox" rel="set_7" >
								<img title="IMG_4564" alt="IMG_4564" src="http://dj-bri-t.net/wp-content/gallery/2009-10-25/thumbs/thumbs_IMG_4564.png" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-67" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://dj-bri-t.net/wp-content/gallery/2009-10-25/IMG_4568.png" title=" " class="thickbox" rel="set_7" >
								<img title="IMG_4568" alt="IMG_4568" src="http://dj-bri-t.net/wp-content/gallery/2009-10-25/thumbs/thumbs_IMG_4568.png" width="60" height="60" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>



<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F10%2Foct-24-photography-update%2F&amp;partner=sociable" title="Print"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F10%2Foct-24-photography-update%2F&amp;title=Oct.%2024%20Photography%20Update&amp;bodytext=Now%20that%20I%27ve%20been%20taking%20more%20photos%20recently%2C%20I%27m%20getting%20into%20the%20habit%20of%20posting%20them%20up%20a%20little%20more%20frequently.%20Rest%20assured%2C%20I%27ll%20keep%20you%20all%20updated%20when%20I%20put%20up%20new%20photos.%20If%20you%20want%20to%20take%20a%20look%20at%20some%20of%20my%20other%20photos%2C%20just%20head" title="Digg"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdj-bri-t.net%2F2009%2F10%2Foct-24-photography-update%2F" title="Sphinn"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F10%2Foct-24-photography-update%2F&amp;title=Oct.%2024%20Photography%20Update&amp;notes=Now%20that%20I%27ve%20been%20taking%20more%20photos%20recently%2C%20I%27m%20getting%20into%20the%20habit%20of%20posting%20them%20up%20a%20little%20more%20frequently.%20Rest%20assured%2C%20I%27ll%20keep%20you%20all%20updated%20when%20I%20put%20up%20new%20photos.%20If%20you%20want%20to%20take%20a%20look%20at%20some%20of%20my%20other%20photos%2C%20just%20head" title="del.icio.us"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdj-bri-t.net%2F2009%2F10%2Foct-24-photography-update%2F&amp;t=Oct.%2024%20Photography%20Update" title="Facebook"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F10%2Foct-24-photography-update%2F&amp;title=Oct.%2024%20Photography%20Update" title="Mixx"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdj-bri-t.net%2F2009%2F10%2Foct-24-photography-update%2F&amp;title=Oct.%2024%20Photography%20Update&amp;annotation=Now%20that%20I%27ve%20been%20taking%20more%20photos%20recently%2C%20I%27m%20getting%20into%20the%20habit%20of%20posting%20them%20up%20a%20little%20more%20frequently.%20Rest%20assured%2C%20I%27ll%20keep%20you%20all%20updated%20when%20I%20put%20up%20new%20photos.%20If%20you%20want%20to%20take%20a%20look%20at%20some%20of%20my%20other%20photos%2C%20just%20head" title="Google Bookmarks"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F10%2Foct-24-photography-update%2F&amp;title=Oct.%2024%20Photography%20Update" title="Reddit"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dj-bri-t.net/2009/10/oct-24-photography-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Have Air Miles, Will Donate To Charity</title>
		<link>http://dj-bri-t.net/2009/09/have-air-miles-will-donate-to-charity/</link>
		<comments>http://dj-bri-t.net/2009/09/have-air-miles-will-donate-to-charity/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 16:00:19 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Air Miles]]></category>
		<category><![CDATA[charities]]></category>
		<category><![CDATA[donations]]></category>
		<category><![CDATA[Kids Help Phone]]></category>
		<category><![CDATA[reward programs]]></category>
		<category><![CDATA[rewards]]></category>
		<category><![CDATA[Special Olympics]]></category>
		<category><![CDATA[World Wildlife Fund]]></category>
		<category><![CDATA[WWF]]></category>

		<guid isPermaLink="false">http://dj-bri-t.net/?p=135</guid>
		<description><![CDATA[Think about how many reward miles you have. When was the last time you redeemed them? Do you think you could spare a few to help a good cause]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure many of you collect some sort of rewards on a reward program, be it Aeroplan or Air Miles, or some other similar program. Myself, I&#8217;m an Air Miles person, and a lot of that has to do with the really good deal that I get for Safeway prescriptions.</p>
<p>But I digest <img src='http://dj-bri-t.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>While casually browsing the rewards catalog online, I was going through the gift cards and subscriptions. I happened to notice a new section for charities. Under there, you have redeem 170 Air Miles to donate $20 to one of three charities: <a href="http://www.kidshelpphone.ca/">Kids Help Phone</a>, <a href="http://www.specialolympics.ca/">Special Olympics Canada</a>, and the <a title="World Wildlife Fund" href="http://wwf.ca/">World Wildlife Fund</a>. Unfortunately, Air Miles has yet to add any more charities, but I sincerely hope that they add more than those three. I&#8217;ve made a firm decision to redeem a donation for every item I redeem on there.</p>
<p>I&#8217;ve never seen this on a rewards site, and I think it&#8217;s a great thing to do. Think about how many reward miles you have. When was the last time you redeemed them? Do you think you could spare a few to help a good cause? I hope the answer is yes. Some people don&#8217;t donate to charities because they can&#8217;t afford it. Now that you can use Air Miles, this should make things a little easier. Alternatively, redeem a gift certificate somewhere you would normally shop, and use the saved money to a charity of your choice. Either way, it&#8217;s a free donation.</p>
<p>Just a little food for thought.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fhave-air-miles-will-donate-to-charity%2F&amp;partner=sociable" title="Print"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fhave-air-miles-will-donate-to-charity%2F&amp;title=Have%20Air%20Miles%2C%20Will%20Donate%20To%20Charity&amp;bodytext=Think%20about%20how%20many%20reward%20miles%20you%20have.%20When%20was%20the%20last%20time%20you%20redeemed%20them%3F%20Do%20you%20think%20you%20could%20spare%20a%20few%20to%20help%20a%20good%20cause%3F" title="Digg"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fhave-air-miles-will-donate-to-charity%2F" title="Sphinn"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fhave-air-miles-will-donate-to-charity%2F&amp;title=Have%20Air%20Miles%2C%20Will%20Donate%20To%20Charity&amp;notes=Think%20about%20how%20many%20reward%20miles%20you%20have.%20When%20was%20the%20last%20time%20you%20redeemed%20them%3F%20Do%20you%20think%20you%20could%20spare%20a%20few%20to%20help%20a%20good%20cause%3F" title="del.icio.us"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fhave-air-miles-will-donate-to-charity%2F&amp;t=Have%20Air%20Miles%2C%20Will%20Donate%20To%20Charity" title="Facebook"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fhave-air-miles-will-donate-to-charity%2F&amp;title=Have%20Air%20Miles%2C%20Will%20Donate%20To%20Charity" title="Mixx"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fhave-air-miles-will-donate-to-charity%2F&amp;title=Have%20Air%20Miles%2C%20Will%20Donate%20To%20Charity&amp;annotation=Think%20about%20how%20many%20reward%20miles%20you%20have.%20When%20was%20the%20last%20time%20you%20redeemed%20them%3F%20Do%20you%20think%20you%20could%20spare%20a%20few%20to%20help%20a%20good%20cause%3F" title="Google Bookmarks"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fhave-air-miles-will-donate-to-charity%2F&amp;title=Have%20Air%20Miles%2C%20Will%20Donate%20To%20Charity" title="Reddit"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dj-bri-t.net/2009/09/have-air-miles-will-donate-to-charity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding the IIS FTP Vulnerability</title>
		<link>http://dj-bri-t.net/2009/09/finding-the-iis-ftp-vulnerability/</link>
		<comments>http://dj-bri-t.net/2009/09/finding-the-iis-ftp-vulnerability/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 16:00:06 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://dj-bri-t.net/?p=127</guid>
		<description><![CDATA[On September 1st, Microsoft released a security advisory regarding an exploit that was discovered in their IIS FTP service, which you can find here. In short, the vulnerability allowed servers which allowed anonymous write access to be compromised. Opening up my email, I notice the vulnerability in my inbox, and a message attached asking me ]]></description>
			<content:encoded><![CDATA[<p>On September 1st, Microsoft released a security advisory regarding an exploit that was discovered in their IIS FTP service, which you can find <a href="http://www.microsoft.com/technet/security/advisory/975191.mspx">here</a>. In short, the vulnerability allowed servers which allowed anonymous write access to be compromised.</p>
<p>Opening up my email, I notice the vulnerability in my inbox, and a message attached asking me to find all the servers in the government which might be vulnerable to this exploit. Now, as you can imagine, it&#8217;s not like there&#8217;s 50 servers in the government. This isn&#8217;t a situation where you go to each server manually and check for the vulnerability. This worked out to be a perfect situation to use nmap.</p>
<p>Nmap, as I had mentioned last post, is a security scanner. It&#8217;s powerful: really, REALLY powerful. There&#8217;s so many command line switches that they have to use two characters for a lot of them, and they&#8217;re case sensitive as well. To top it all off, it also provides scripting support. In layman&#8217;s terms, you tell it to jump, and it asks you how high, how many flips it should do, what music should be playing in the background, and what the acrobat&#8217;s costumes should look like. You get the picture.</p>
<p>Anyways, the task was put before me to determine which servers were vulnerable, and how many FTP services could simply be turned off. After acquiring a list of IP addresses of assets, I sorted the list, changed each IP to refer to the class C subnet (255.255.255.0 or /24), and remove duplicates. I then came up with a list of IPs which had an FTP service. Some had closed ports, and others were filtered. Some of them were also open. A few quick grep commands and I had narrowed down the list to open Windows boxes. Below, I have the nmap command that I used to find all the servers with FTP running on them. I&#8217;d be curious to see if anyone has come up with a similar command that might be useful for this same purpose, and where improvements can be made.</p>
<p><code>./nmap -T4 -PS21 -p21 -O --max-rtt-timeout 200 --initial-rtt-timeout 150 --min-hostgroup 100 -oG /tmp/WindowsFTP.grep -iL ../WindowsServers24</code></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Ffinding-the-iis-ftp-vulnerability%2F&amp;partner=sociable" title="Print"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Ffinding-the-iis-ftp-vulnerability%2F&amp;title=Finding%20the%20IIS%20FTP%20Vulnerability&amp;bodytext=On%20September%201st%2C%20Microsoft%20released%20a%20security%20advisory%20regarding%20an%20exploit%20that%20was%20discovered%20in%20their%20IIS%20FTP%20service%2C%20which%20you%20can%20find%20here.%20In%20short%2C%20the%20vulnerability%20allowed%20servers%20which%20allowed%20anonymous%20write%20access%20to%20be%20compromised.%0D%0A" title="Digg"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Ffinding-the-iis-ftp-vulnerability%2F" title="Sphinn"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Ffinding-the-iis-ftp-vulnerability%2F&amp;title=Finding%20the%20IIS%20FTP%20Vulnerability&amp;notes=On%20September%201st%2C%20Microsoft%20released%20a%20security%20advisory%20regarding%20an%20exploit%20that%20was%20discovered%20in%20their%20IIS%20FTP%20service%2C%20which%20you%20can%20find%20here.%20In%20short%2C%20the%20vulnerability%20allowed%20servers%20which%20allowed%20anonymous%20write%20access%20to%20be%20compromised.%0D%0A" title="del.icio.us"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Ffinding-the-iis-ftp-vulnerability%2F&amp;t=Finding%20the%20IIS%20FTP%20Vulnerability" title="Facebook"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Ffinding-the-iis-ftp-vulnerability%2F&amp;title=Finding%20the%20IIS%20FTP%20Vulnerability" title="Mixx"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Ffinding-the-iis-ftp-vulnerability%2F&amp;title=Finding%20the%20IIS%20FTP%20Vulnerability&amp;annotation=On%20September%201st%2C%20Microsoft%20released%20a%20security%20advisory%20regarding%20an%20exploit%20that%20was%20discovered%20in%20their%20IIS%20FTP%20service%2C%20which%20you%20can%20find%20here.%20In%20short%2C%20the%20vulnerability%20allowed%20servers%20which%20allowed%20anonymous%20write%20access%20to%20be%20compromised.%0D%0A" title="Google Bookmarks"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Ffinding-the-iis-ftp-vulnerability%2F&amp;title=Finding%20the%20IIS%20FTP%20Vulnerability" title="Reddit"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dj-bri-t.net/2009/09/finding-the-iis-ftp-vulnerability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upcoming Swing Events</title>
		<link>http://dj-bri-t.net/2009/09/upcoming-swing-events/</link>
		<comments>http://dj-bri-t.net/2009/09/upcoming-swing-events/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 16:00:44 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[HepCat]]></category>
		<category><![CDATA[swing]]></category>
		<category><![CDATA[swing dancing]]></category>
		<category><![CDATA[UMswing]]></category>
		<category><![CDATA[Winnipeg Swing]]></category>

		<guid isPermaLink="false">http://dj-bri-t.net/?p=124</guid>
		<description><![CDATA[For this Monday&#8217;s blog post, I&#8217;d like to stray a little from my typical technology discussions and focus on something far from that: dance. Not just any kind of dance, though. I&#8217;d like to quickly discuss swing dancing. This might seem like an odd topic for a geek to discuss. After all, I&#8217;m supposed to ]]></description>
			<content:encoded><![CDATA[<p>For this Monday&#8217;s blog post, I&#8217;d like to stray a little from my typical technology discussions and focus on something far from that: dance. Not just any kind of dance, though. I&#8217;d like to quickly discuss swing dancing.</p>
<p>This might seem like an odd topic for a geek to discuss. After all, I&#8217;m supposed to be glued to my computer, make obtuse references to nerdy shows and movies, and have a natural inability to talk to women. While all of the above may or may not be true (heh), I also found myself two years ago to have an interest in swing dancing, thanks to a friend who convinced me to go to the University of Manitoba Swing Dance Club (<a title="University of Manitoba Swing Dance Club" href="http://umswing.ca">UMSwing</a>) open house (thanks Jacklynn!). Although initially I didn&#8217;t think I would enjoy it that much, I found myself addicted by the end of that open house, and walked out that night with a full membership. I&#8217;m still shocked that I&#8217;m even capable of dancing, but regardless, it&#8217;s a great way to get some exercise, meet new people, and get out of the house.</p>
<p>Two years later, and I&#8217;m on the executive committee for UMSwing as their omnipotent web administrator. I&#8217;ve met a lot of great people through the club, and by being on the executive committee, I can hopefully give back to a club which has helped me a lot. One of the events that is happening in just over a week is this semester&#8217;s open house, which I will be MCing. The club puts on one open house per semester, usually within the first few weeks. We pride ourselves on being able to teach anybody to dance, regardless of skill level. You don&#8217;t need to bring a partner to dance with, and you don&#8217;t need experience. We do some demos, teach you basic Jive, and do some social dancing. Oh yeah, and there&#8217;s a bunch of prizes that we will give away.</p>
<ul>
<li><a href="http://maps.google.ca/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=university+centre,+university+of+manitoba&amp;sll=49.891235,-97.15369&amp;sspn=31.042996,93.076172&amp;ie=UTF8&amp;ll=49.807527,-97.136371&amp;spn=0.00189,0.005681&amp;z=18">Multi-Purpose Room (MPR), 2nd Floor University Center, University of Manitoba</a></li>
<li>September 16, 2009 @ 7:00pm &#8211; 11:00pm</li>
<li>Free!</li>
<li>Prizes!</li>
<li>No experience required!</li>
<li>No partner required!</li>
</ul>
<p>So, if you have nothing to do that night, come out and enjoy yourself.</p>
<p>UMSwing&#8217;s classes tend to be geared towards beginner swing dance. If you happen to have swing experience, HepCat Studio is a swing studio that is starting up today at 6:00pm. The first class today is free, and they will teach both beginner and intermediate swing dancing. You can find their website over at <a href="http://www.winnipegswing.com">http://www.winnipegswing.com</a>.</p>
<p>So, I will continue with random technological rants and whatnot next Friday. Methinks that my next post will probably discuss my upcoming server build and the parts involved. Although I had posted on it a while back, I&#8217;ve solidified my decisions for the next server incarnation. It will be awesome. Very, very awesome.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fupcoming-swing-events%2F&amp;partner=sociable" title="Print"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fupcoming-swing-events%2F&amp;title=Upcoming%20Swing%20Events&amp;bodytext=For%20this%20Monday%27s%20blog%20post%2C%20I%27d%20like%20to%20stray%20a%20little%20from%20my%20typical%20technology%20discussions%20and%20focus%20on%20something%20far%20from%20that%3A%20dance.%20Not%20just%20any%20kind%20of%20dance%2C%20though.%20I%27d%20like%20to%20quickly%20discuss%20swing%20dancing.%0D%0A%0D%0AThis%20might%20seem%20like%20an%20odd%20" title="Digg"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fupcoming-swing-events%2F" title="Sphinn"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fupcoming-swing-events%2F&amp;title=Upcoming%20Swing%20Events&amp;notes=For%20this%20Monday%27s%20blog%20post%2C%20I%27d%20like%20to%20stray%20a%20little%20from%20my%20typical%20technology%20discussions%20and%20focus%20on%20something%20far%20from%20that%3A%20dance.%20Not%20just%20any%20kind%20of%20dance%2C%20though.%20I%27d%20like%20to%20quickly%20discuss%20swing%20dancing.%0D%0A%0D%0AThis%20might%20seem%20like%20an%20odd%20" title="del.icio.us"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fupcoming-swing-events%2F&amp;t=Upcoming%20Swing%20Events" title="Facebook"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fupcoming-swing-events%2F&amp;title=Upcoming%20Swing%20Events" title="Mixx"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fupcoming-swing-events%2F&amp;title=Upcoming%20Swing%20Events&amp;annotation=For%20this%20Monday%27s%20blog%20post%2C%20I%27d%20like%20to%20stray%20a%20little%20from%20my%20typical%20technology%20discussions%20and%20focus%20on%20something%20far%20from%20that%3A%20dance.%20Not%20just%20any%20kind%20of%20dance%2C%20though.%20I%27d%20like%20to%20quickly%20discuss%20swing%20dancing.%0D%0A%0D%0AThis%20might%20seem%20like%20an%20odd%20" title="Google Bookmarks"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F09%2Fupcoming-swing-events%2F&amp;title=Upcoming%20Swing%20Events" title="Reddit"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dj-bri-t.net/2009/09/upcoming-swing-events/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Car Upgrades, Pt. 3</title>
		<link>http://dj-bri-t.net/2009/08/car-upgrades-pt-3/</link>
		<comments>http://dj-bri-t.net/2009/08/car-upgrades-pt-3/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 16:00:34 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://dj-bri-t.net/?p=106</guid>
		<description><![CDATA[In the last part on my series of upgrades I will be doing to my car, I thought I&#8217;d focus a little bit (although not entirely) on the electrical components in my car. As you may remember in the first part, I talked about the sound system I put in my car and the homebrew ]]></description>
			<content:encoded><![CDATA[<p>In the last part on my series of upgrades I will be doing to my car, I thought I&#8217;d focus a little bit (although not entirely) on the electrical components in my car. As you may remember in the <a title="Car Upgrades, Pt. 1" href="http://dj-bri-t.net/2009/08/car-upgrades-pt-1/">first part</a>, I talked about the sound system I put in my car and the homebrew neon lighting I tried out. In the <a title="Car Upgrades, Pt. 2" href="http://dj-bri-t.net/2009/08/car-upgrades-pt-2/">second part</a>, I mentioned the neon upgrades and the paint job that I was toying around with.</p>
<p>Although I already did accent lighting, I&#8217;d like to look at expanding it a little more. I had previously mentioned that I was going to add more neon lighting, but I&#8217;m also going to look into lighting up the running boards. Although my car is a red/maroon and my neon lighting is blue, I think I&#8217;m going to go with red <abbr title="Light Emitting Diode">LED</abbr>s along the boards; red and blue accent lighting together should look pretty nice. Since <abbr title="Light Emitting Diode">LED</abbr>s tend to run at an optimum voltage of 2.5 volts, I can get about 5 in every series, since a car runs on 12 volts. I&#8217;d like those to turn on when the doors open. Since they will be wired in with the door light, I can force them to turn on just like if I wanted the door light to turn on. I would also like to replace the door light, glove compartment light, and dashboard lights with <abbr title="Light Emitting Diode">LED</abbr>s (blue, white, and white respectively).</p>
<p>For exterior lighting, I&#8217;d like to also replace those with <abbr title="Light Emitting Diode">LED</abbr> lights. They&#8217;re much brighter than conventional bulbs and use less electricity, which in turn improves fuel efficiency. Although I&#8217;m not sure about the headlights, I&#8217;m sure I can replace all of the other bulbs, and potentially make the enclosures clear, since the bulbs will be colored the proper colors. I&#8217;d like to get nice headlights as well, but I don&#8217;t know if they&#8217;re available for my car. But, if I can find ones that fit, I can take them out when I get a new car, and if they don&#8217;t fit I can sell them and get part of my money back since they last forever.</p>
<p>The last thing I&#8217;d like to look into is redoing the upholstery. The seats are boring and bland, but the front ones are an irregular shape, which may make finding seat covers difficult. I already found a faux-leather seat cover for the back bench seat which will look nice, and I also picked out black-with-red seat covers for the front seat, pending that they&#8217;ll actually fit. If it proves to be difficult, I might end up doing alterations to them with a sewing machine.</p>
<p>And thus completes my plans for my car. Since it didn&#8217;t cost me anything and it&#8217;s not exactly new, I think it&#8217;s a reasonable time to try a few things out and see what works and what doesn&#8217;t. That way, when I get a nice car, I can do some customization on it and not be worried about destroying something.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F08%2Fcar-upgrades-pt-3%2F&amp;partner=sociable" title="Print"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F08%2Fcar-upgrades-pt-3%2F&amp;title=Car%20Upgrades%2C%20Pt.%203&amp;bodytext=In%20the%20last%20part%20on%20my%20series%20of%20upgrades%20I%20will%20be%20doing%20to%20my%20car%2C%20I%20thought%20I%27d%20focus%20a%20little%20bit%20%28although%20not%20entirely%29%20on%20the%20electrical%20components%20in%20my%20car.%20As%20you%20may%20remember%20in%20the%20first%20part%2C%20I%20talked%20about%20the%20sound%20system%20I%20put%20in%20my%20c" title="Digg"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fdj-bri-t.net%2F2009%2F08%2Fcar-upgrades-pt-3%2F" title="Sphinn"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F08%2Fcar-upgrades-pt-3%2F&amp;title=Car%20Upgrades%2C%20Pt.%203&amp;notes=In%20the%20last%20part%20on%20my%20series%20of%20upgrades%20I%20will%20be%20doing%20to%20my%20car%2C%20I%20thought%20I%27d%20focus%20a%20little%20bit%20%28although%20not%20entirely%29%20on%20the%20electrical%20components%20in%20my%20car.%20As%20you%20may%20remember%20in%20the%20first%20part%2C%20I%20talked%20about%20the%20sound%20system%20I%20put%20in%20my%20c" title="del.icio.us"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdj-bri-t.net%2F2009%2F08%2Fcar-upgrades-pt-3%2F&amp;t=Car%20Upgrades%2C%20Pt.%203" title="Facebook"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F08%2Fcar-upgrades-pt-3%2F&amp;title=Car%20Upgrades%2C%20Pt.%203" title="Mixx"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdj-bri-t.net%2F2009%2F08%2Fcar-upgrades-pt-3%2F&amp;title=Car%20Upgrades%2C%20Pt.%203&amp;annotation=In%20the%20last%20part%20on%20my%20series%20of%20upgrades%20I%20will%20be%20doing%20to%20my%20car%2C%20I%20thought%20I%27d%20focus%20a%20little%20bit%20%28although%20not%20entirely%29%20on%20the%20electrical%20components%20in%20my%20car.%20As%20you%20may%20remember%20in%20the%20first%20part%2C%20I%20talked%20about%20the%20sound%20system%20I%20put%20in%20my%20c" title="Google Bookmarks"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdj-bri-t.net%2F2009%2F08%2Fcar-upgrades-pt-3%2F&amp;title=Car%20Upgrades%2C%20Pt.%203" title="Reddit"><img src="http://dj-bri-t.net/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dj-bri-t.net/2009/08/car-upgrades-pt-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
