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

<channel>
	<title>Connor Wilson</title>
	<atom:link href="http://www.connorwilson.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.connorwilson.com</link>
	<description>Musings on design, sports and life.</description>
	<pubDate>Mon, 01 Sep 2008 22:00:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quicksilver Style Livesearch with WordPress</title>
		<link>http://www.connorwilson.com/2008/09/01/quicksilver_style_livesearch_with_wordpress/</link>
		<comments>http://www.connorwilson.com/2008/09/01/quicksilver_style_livesearch_with_wordpress/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 22:00:07 +0000</pubDate>
		<dc:creator>Connor Wilson</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.connorwilson.com/?p=441</guid>
		<description><![CDATA[Over at OrderedList, John Nunemaker wrote a guide on using jQuery (or Prototype, whichever works for you) to implement a Quicksilver Type Livesearch. QuickSilver is an awesome Mac app that lets you search through your apps, files, etc&#8230; By typing fragments of a string. From there you can launch apps, open files, and tons of [...]]]></description>
			<content:encoded><![CDATA[<p class="firstp"><span class="firstl">O</span>ver at <a href="http://www.orderedlist.com">OrderedList</a>, John Nunemaker wrote a guide on using jQuery (or Prototype, whichever works for you) to implement a <a href="http://orderedlist.com/articles/live-search-with-quicksilver-style/">Quicksilver Type Livesearch</a>. QuickSilver is an awesome Mac app that lets you search through your apps, files, etc&#8230; By typing fragments of a string. From there you can launch apps, open files, and tons of other options.</p>
<div id="attachment_442" class="wp-caption alignnone" style="width: 518px"><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/quicksilver.png" alt="I just type &#039;F&#039; an it presents Firefox." title="quicksilver" width="518" height="250" class="size-full wp-image-442" /><p class="wp-caption-text">I just type 'F' an it presents Firefox.</p></div>
<h3>Get Your Files Setup</h3>
<p>There&#8217;s a few Javascript files you&#8217;ll need to setup before we can start editing our WordPress theme. Here are the files you&#8217;ll need to save and upload to your theme&#8217;s folder:</p>
<ul>
<li><a href="http://orderedlist.com/demos/quicksilverjs/javascripts/quicksilver.js">Quicksilver.js</a> — This processes the input and gives back a value based on matches with the search area (our posts).</li>
<li><a href="http://orderedlist.com/demos/quicksilverjs/javascripts/jquery.livesearch.js">Livesearch jQuery Plugin</a> by John. This is what makes everything work together, with the live input and the search area.</li>
<li>And of course, you&#8217;ll need to go get <a href="http://docs.jquery.com/Downloading_jQuery">jQuery</a>.</li>
</ul>
<p>Now set those files up in <strong>header.php</strong> like this:</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="">'template_directory'</span><span style="color: #009900;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span>/scripts/jquery.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="">'template_directory'</span><span style="color: #009900;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span>/scripts/quicksilver.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="">'template_directory'</span><span style="color: #009900;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span>/scripts/jquery.livesearch.js&quot;&gt;&lt;/script&gt;</pre></div></div>

<p>Once that&#8217;s setup, it&#8217;s time to get going on the real stuff.</p>
<h3>Archive.php vs. Archives.php</h3>
<p>Before we continue, I&#8217;m just going to clear something up. There are always these two files in your theme&#8217;s directory, but what&#8217;s the difference? Basically, one is a page template and the other is the display for the archived posts, like dated archives and the like.</p>
<ul>
<li><strong>Archive.php</strong> is the archive that shows posts based on date, author, category, etc&#8230; <em>This is the file we will be editing!</em></li>
<li><strong>Archives.php</strong> is the page template, which in the end just links off to pages that use the former page to display.</li>
</ul>
<p>If you go to the archives link at the top of this page in my navigation, it will take you to my <strong>Archives.php</strong> page. If you click a link on that page, it will take you to my QS Livesearch enabled <strong>Archive.php</strong>.</p>
<h3>Modifying the Loop</h3>
<p>What we&#8217;re going to do is basically put all the posts we have in a list so the JS we downloaded can do it&#8217;s magic. Find the loop in your <strong>archive.php</strong> file and we&#8217;re going to change it to the code below. I&#8217;ll explain it after.</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;div class=&quot;post&quot;&gt;
&lt;form method=&quot;get&quot;&gt;
&lt;div class=&quot;livesearch&quot;&gt;
&lt;input type=&quot;text&quot; value=&quot;&quot; name=&quot;q&quot; id=&quot;q&quot; /&gt;
		&lt;/div&gt;
&lt;/form&gt;
&lt;ul id=&quot;posts&quot;&gt;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;li&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt;&lt;/li&gt;
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span>
	&lt;/ul&gt;
&lt;/div&gt;
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">else</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
Oops, no posts!
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span>; <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>This is going to display the form and text input that users can use to refine the posts on the page. It&#8217;s also going to take all the posts and put each one in an LI. The reason we only display the title is because the script searches through all the text in each LI. Besides that, it&#8217;s nothing fancy. <em>Get the posts, display the posts</em> to work with the JavaScript.</p>
<h3>Potential Problems</h3>
<p>The first thing I ran into with this was that if you have a low number of posts per page, you won&#8217;t get many items to search through. You can try writing different queries for each option, but in the end, there is a plugin that can fix this. It&#8217;s called <a href="http://www.maxblogpress.com/plugins/dppp/">Different Posts per Page</a>.</p>
<p><strong>A word of warning</strong> — you will need to sign up for their stupid newsletter to <em>activate</em> their plugin. It&#8217;s worth the trouble, though. Just block the letter if you don&#8217;t want it, because this is the easiest solution to the problem.</p>
<p>Next, it&#8217;s always possible that you might have uploaded your JS files into a different directory than the <code>/scripts/</code> that I provided in the code. Make sure the files are included properly before asking any questions, because this is the number problem that users have when doing something involving JavaScript.</p>
<p>If you have any questions that don&#8217;t fall into those two common errors, then feel free to leave a comment and I&#8217;ll help you out. You can see the example as I mentioned above, right here an my site. For instance, go check out my <a href="http://www.connorwilson.com/category/design/">Design category</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.connorwilson.com/2008/09/01/quicksilver_style_livesearch_with_wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Resurgence of Tutorial Sites</title>
		<link>http://www.connorwilson.com/2008/08/30/a_resurgence_of_tutorial_sites/</link>
		<comments>http://www.connorwilson.com/2008/08/30/a_resurgence_of_tutorial_sites/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 23:53:57 +0000</pubDate>
		<dc:creator>Connor Wilson</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.connorwilson.com/?p=436</guid>
		<description><![CDATA[Everybody gets their start somewhere. My entire entity on the web and the skills that I have as a designer and developer are because of a few things. This is going to be a terrible reflection on past and how ended up &#8220;here&#8221;.
Some people are naturally drawn to certain things. I&#8217;m obviously drawn to my [...]]]></description>
			<content:encoded><![CDATA[<p class="firstp"><span class="firstl">E</span>verybody gets their start somewhere. My entire entity on the web and the skills that I have as a designer and developer are because of a few things. This is going to be a terrible reflection on past and how ended up &#8220;here&#8221;.</p>
<p>Some people are naturally drawn to certain things. I&#8217;m obviously drawn to my computer chair, but I have an equal passion for sports. An odd combination, but I digress. I remember the first day I had <em>the Internet</em>, and just the awe it induced. Shortly after that I was instantly interested in creating my own website and learned bare bones HTML. It might have been a black page with giant white text saying &#8220;My First Website&#8221; but it was an accomplishment.</p>
<p>Sometime after that, and all HTML forgotten, I managed to get into graphic design. And by graphic design I mean making cool looking abstract wallpapers in Photoshop. I think sometime around 2002 I had a trial copy of Photoshop 7. I wasn&#8217;t exactly net savvy at this point, so it expired. The pinnacle of Photoshop tutorials at this time was <a href="http://good-tutorials.com/">Good Tutorials</a>. I&#8217;d spend hours just finding cool effects and recreating them on my crappy little PC.</p>
<p>Eventually the whole Kazaa thing got to the harddrive and after reformatting I once again got my trial back. Of course I had no idea that you could just grab a serial key of the &#8216;net and have it forever, so it expired again. This is where the seed was planted. What I was doing wasn&#8217;t particularly creative, but it was fun an produced a myriad of effects I could be proud of at that time.</p>
<p>Fast forward a couple years, I had already designed my first website, but still had no idea to get it from Photoshop to Internet Explorer (oh, yeah). In fact, when I found out that Photoshop is what you used to design them in the first place was a revelation. Go figures that I would learn to code HTML right before the whole CSS uprising. <a href="http://www.slicingguide.com/">The Slicing Guide</a> taught me how to use sliced Photoshop images and use Dreamweaver to turn them into websites.</p>
<p>Sooner or later I took to finding a way to make things easier, more dynamic and bigger. I came to the conclusion that PHP was what I needed, and shortly found out after I needed MySQL to go with it. At this time I was on a free host with a &#8220;blog&#8221; that I maintained with static HTML pages. Imagine updating that! Coming into programming showed me a whole new community of tutorial sites.</p>
<p>This got me into paying for hosting and actually having a domain name. I&#8217;ll spare the details but I basically got really good at PHP by taking other people&#8217;s code and learning to modify it to my needs. Sooner or later I could just write it myself with MySQL to boot. During the development of this theme it was nice to get some MySQL queries in amongst the WordPress stuff just to know I could still do it.</p>
<p>The unfortunate bit of this is that these coding focused tutorial sites were rampant with immiture kids looking for new systems for their Habbo Hotel fansites. It wears on you if you&#8217;re serious about getting better and developing websites, and it did. I remember when the main site I learned pretty much everything from was sold for $1000 and I was amazed. It went in the tank from there, but not without starting my freelance &#8220;career&#8221;.</p>
<h3>The Point</h3>
<p><em>I&#8217;m going somewhere with this, trust me. </em></p>
<p>I had basically abandoned these sites because I was focused more on designing and getting myself established and my blog afloat. I did eventually go back for a while but that ended ugly. When you have temperamental kids running your sites, someone as honest as I am can get on your nerves. I went from a forum moderator to a disgruntled member because I spoke my mind. Live and learn - actually, don&#8217;t learn. I&#8217;m still going to be honest if you ask for my opinion.</p>
<p>The amazing thing about that whole scene is that it&#8217;s huge in the form of blogs. Gone are the forums, shoutboxes and poorly designed websites. The TUTS network (PSD, Vector, Net, Audio, etc&#8230;) has given me faith in the web&#8217;s educational programming.</p>
<p>I&#8217;m not about to start a copycat site like the many that have sprung up, but what these sites allow is for newcomers to learn properly. If you read any of the above, it&#8217;s obvious I didn&#8217;t learn properly, starting off with tables and Dreamweaver. I had no idea what a standard was or how to write CSS on my own. I had to figure all that out on my own by asking stupid questions, but now it&#8217;s all out there. </p>
<p>It still kills me how I can have a teacher try to teach like HTML 3 with no CSS at school, yet anyone nowadays can pick up a laptop and be a client side expert in a matter of days.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.connorwilson.com/2008/08/30/a_resurgence_of_tutorial_sites/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Create a WordPress Login Form Overlay</title>
		<link>http://www.connorwilson.com/2008/08/25/how_to_create_a_wordpress_login_form_overlay/</link>
		<comments>http://www.connorwilson.com/2008/08/25/how_to_create_a_wordpress_login_form_overlay/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 00:15:22 +0000</pubDate>
		<dc:creator>Connor Wilson</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.connorwilson.com/?p=432</guid>
		<description><![CDATA[For those that have seen the feature I coded up for my recent redesign and were curious as to how it&#8217;s done, you can see it over at ProBlogDesign!
WordPress is more than just a blogging tool. It can be used as a Content Management System (CMS) for many different purposes. It has a built in [...]]]></description>
			<content:encoded><![CDATA[<p>For those that have seen the feature I coded up for my <a href="http://www.connorwilson.com/2008/08/21/new_design_and_overall_changes/">recent redesign</a> and were curious as to how it&#8217;s done, you can see it over at <a href="http://www.problogdesign.com/how-to/how-to-create-a-wordpress-login-form-overlay/">ProBlogDesign</a>!</p>
<blockquote><p>WordPress is more than just a blogging tool. It can be used as a Content Management System (CMS) for many different purposes. It has a built in system for most things you would have to code yourself, or pay for an expensive custom application. With a little creativity, you can use basic features to power almost anything you want.</p></blockquote>
<p>Go check it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.connorwilson.com/2008/08/25/how_to_create_a_wordpress_login_form_overlay/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Jays vs. Red Sox</title>
		<link>http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/</link>
		<comments>http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 23:13:21 +0000</pubDate>
		<dc:creator>Connor Wilson</dc:creator>
		
		<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://www.connorwilson.com/?p=425</guid>
		<description><![CDATA[Not much to say besides the Red Sox got defiled 11-0. Awesome. On Flickr »
]]></description>
			<content:encoded><![CDATA[
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0339/' title='img_0339'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0339-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0340/' title='img_0340'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0340-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0341/' title='img_0341'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0341-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0342/' title='img_0342'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0342-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0343/' title='img_0343'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0343-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0344/' title='img_0344'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0344-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0345/' title='img_0345'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0345-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0346/' title='img_0346'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0346-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0347/' title='img_0347'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0347-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0348/' title='img_0348'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0348-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0349/' title='img_0349'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0349-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0350/' title='img_0350'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0350-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0351/' title='img_0351'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0351-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0352/' title='img_0352'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0352-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0353/' title='img_0353'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0353-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/img_0354/' title='img_0354'><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/img_0354-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>

<p>Not much to say besides the Red Sox got defiled 11-0. Awesome. <strong><a href="http://www.flickr.com/photos/connorwilson/sets/72157606910651936/">On Flickr »</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.connorwilson.com/2008/08/23/jays_vs_red_sox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Design and Overall Changes</title>
		<link>http://www.connorwilson.com/2008/08/21/new_design_and_overall_changes/</link>
		<comments>http://www.connorwilson.com/2008/08/21/new_design_and_overall_changes/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 19:34:09 +0000</pubDate>
		<dc:creator>Connor Wilson</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.connorwilson.com/?p=395</guid>
		<description><![CDATA[It&#8217;s been a couple months, eh? Oh well. One thing I&#8217;ve always said is after a long time without posting to try and avoid referencing it. So I won&#8217;t.
That being said, the reason I didn&#8217;t write anything since early April was due to a lack of ideas and the will to write them. A year [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_396" class="wp-caption alignnone" style="width: 518px"><img src="http://www.connorwilson.com/wp-content/uploads/2008/08/newdesign.png" alt="RSS Readers — Come check out the new design!" title="newdesign" width="518" height="115" class="size-full wp-image-396" /><p class="wp-caption-text">RSS Readers — Come check out the new design!</p></div>
<p class="firstp"><span class="firstl">I</span>t&#8217;s been a couple months, eh? Oh well. One thing I&#8217;ve always said is after a long time without posting to try and avoid referencing it. So I won&#8217;t.</p>
<p>That being said, the reason I didn&#8217;t write anything since early April was due to a lack of ideas and the will to write them. A year ago I was posting twice a day and going strong, but after a while I guess I had a dip in the passion. </p>
<h3>The New Design</h3>
<p>I&#8217;ve always had troubles designing for myself in a way that represents my own style. It seems odd that I can put a personal touch on a design for someone else more than on my own site. I probably just over think it to the point where I doubt the design.</p>
<p>So, with this I get across a few things that I like to have in a design. It&#8217;s simple, linear and sits on somewhat of a grid. Also, there isn&#8217;t any blue. Hard to believe for me, but the last couple things I&#8217;ve designed have been devoid of blue. I&#8217;ve been trying to put a brown/orange/white scheme together for a while now, and finally it got developed far enough where I can actually use it.</p>
<p>I wouldn&#8217;t call this my best work, or even the best design I&#8217;ve made for this site (one in particular that will never get developed comes to mind- too much going on in there), but it suits my cause.</p>
<h3>Overall Changes</h3>
<p>I&#8217;m going to continue writing about web design, WordPress and all the other things I was focusing on before. I have a bunch of new WordPress stuff I worked into this theme that I&#8217;ll write up tutorials on, but I&#8217;ll touch on that later.</p>
<p>I didn&#8217;t post for ages because I didn&#8217;t have anything write about web design. Considering that&#8217;s not my only interest, I&#8217;m going to write about pretty well whatever I want now. I&#8217;m going to clean up the categories and try to keep them around 10. </p>
<p>This will make the whole site more personal in a way, but at the same time more interesting because the focus will constantly shift.</p>
<p>Another reason I couldn&#8217;t put fingers to keyboard early on in the &#8216;<em>drought</em>&#8216; had to do with my infatuation for numbers/statistics. Seeing everything going up like I was trying to make it is a good feeling, but website statistics are eternally unreliable. Something I should have learned <em>years ago</em> when I got my first hit on a free host, but inevitably did not.</p>
<p>A couple months of not checking stats (actually took a while for me to stop) and I built up a solid wall of apathy. Hopefully it holds.</p>
<h3>Nifty Things</h3>
<p>While developing this theme I created some extra features which will go totally unused, but it was a good learning experience for me to do it. Before I was doing my own WordPress themes I had coded my own blogs and tutorial sites, so I was fairly proficient with PHP.</p>
<p>Over a year and a half of exclusively developing on WordPress has dwindled that. But, I did get to use some of those old skills in creating these new features. &#8220;<em>Features</em>&#8221; is a little powerful, actually.</p>
<p>These all basically revolve around being logged in, so you&#8217;ll have to sign up for my blog to see these.</p>
<ul>
<li><strong>Login Overlay</strong>. I made an overlay using a modified Lightbox script I found and some of my own code to make a login form overlay. I did this because I wanted to take out the inconvenience of logging into WordPress if you want to comment (and have an account).</li>
<li><strong>See all your comments</strong> on a page and where you posted them. This is a logged in only thing, though.</li>
</ul>
<p>That&#8217;s actually it. Anti-climatic, eh? Seemed like more as I was coding them. But it was fun (yes, fun) for me to write my own MySQL queries again without using <code>query_posts()</code>.</p>
<p>That was a bit wordy. I&#8217;ll work some of the new blockquotes and stuff in the future <img src='http://www.connorwilson.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.connorwilson.com/2008/08/21/new_design_and_overall_changes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Elaborating on a Complete Idea</title>
		<link>http://www.connorwilson.com/2008/04/05/elaborating_on_a_complete_idea/</link>
		<comments>http://www.connorwilson.com/2008/04/05/elaborating_on_a_complete_idea/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 01:29:46 +0000</pubDate>
		<dc:creator>Connor Wilson</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.connorwilson.com/?p=385</guid>
		<description><![CDATA[Something I&#8217;m proud to say is that I have reached a point with the design of this site that I am happy with. That doesn&#8217;t mean that the process of tweaking it and improving stops. Not now, not ever.
Because I am happy with it, doesn&#8217;t mean it looks even close to perfect to me. There [...]]]></description>
			<content:encoded><![CDATA[<p class="firstp"><span class="firstl">S</span>omething I&#8217;m proud to say is that I have reached a point with the design of this site that I am happy with. That doesn&#8217;t mean that the process of tweaking it and improving stops. Not now, not ever.</p>
<p>Because I am happy with it, doesn&#8217;t mean it looks even close to perfect to me. There are many flaws that mostly involve consistency.</p>
<h3>Realign, Refresh, Reuse and Recycle</h3>
<p>I don&#8217;t know if the &#8220;Three Rs&#8221; were hammered into your head to help save the environment (or something like that) while your were young, but in essence the ideas were a pretty solid foundation to web design.</p>
<p>Once the design is done, in the sense that you are happy, I like the start thinking of different approaches right away. With this site it is hard, because not much really sees a canvas in Photoshop. Most is just created live, while everything is running.</p>
<ul>
<li><strong>Familiarity</strong>. With designs that stay reasonably consistent in theme and colour, it keeps readers happy to see something similar, but different at the same time.</li>
<li><strong>Simplicity</strong>. I like to make things easier to get to and overall simpler every time I revise the design. This never has to mean less images or flashy elements, just improved usability. In fact, if you don&#8217;t improve on usability with a new version, that&#8217;s never very good, is it?</li>
<li><strong>Less boring</strong>. Having the same design for years at a time is alright if it has changed the web (for the better), but otherwise it&#8217;s best to keep readers awake with a little change every now and then.</li>
</ul>
<h3>Refresh Frequency</h3>
<p>Depending on how often you post, the amount of traffic you get and how good your design is, there are numerous factors factoring into when you should change it up.</p>
<p>Every couple of months might be a little much for anyone, but every 6 months something new is always nice. I&#8217;m going to clean this design up next month, and though it hasn&#8217;t been long, this would be a sort of a beginning to a more regular schedule.</p>
<h3>A Chance to Improve</h3>
<p>A design can only get better, so there is no use in being timid about changing things. If you have a shot at it and you decide the attempt has failed, you can always revert quickly or try again. The key is not to waste your time with coding something you don&#8217;t fully believe in.</p>
<p>Not only on the screen can you improve, but also in the XHTML and CSS you use. Use the best structure, validate code and format it. All those things you were putting off till next time, it&#8217;s time to get those going.</p>
<p>Who knows? Maybe after a couple good refreshing realigns to your site it <em>actually will be perfect</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.connorwilson.com/2008/04/05/elaborating_on_a_complete_idea/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Contest Winners</title>
		<link>http://www.connorwilson.com/2008/04/04/twitter_contest_winners/</link>
		<comments>http://www.connorwilson.com/2008/04/04/twitter_contest_winners/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 22:27:42 +0000</pubDate>
		<dc:creator>Connor Wilson</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.connorwilson.com/?p=384</guid>
		<description><![CDATA[The Twitter contest is now over, but still feel free to follow me anyway. I was doing this as an experiment to see how something like this, like blatantly asking you to follow me, would work.
Overall, there we a few new followers, but not much. I still liked the ideas. Plus, this way I can [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://http//www.connorwilson.com/2008/04/01/quick_contest_free_ad_space/">Twitter contest</a> is now over, but still feel free to <a href="http://twitter.com/connorwilson">follow me</a> anyway. I was doing this as an experiment to see how something like this, like blatantly asking you to follow me, would work.</p>
<p>Overall, there we a few new followers, but not much. I still liked the ideas. Plus, this way I can fill my lonely ad space. I&#8217;ve been thinking about scrapping it for a while, and this will give me an excuse to keep it for at least another month.</p>
<h3>The Winners</h3>
<p>To tickle my brain, I wrote a script to put out two random numbers between 1 and 83 (amount of followers) that were different. From there I just counted down on the page that lists all those people to find the two winners.</p>
<p>Coincidentally, one winner had just entered this morning, and the other had already been following my Twitter updates when this mini contest began. Because I know you&#8217;ve already skipped past this part, I&#8217;ll get right to it.</p>
<p>The winners are <strong>Alex</strong> (<a href="http://twitter.com/epicalex">@epicalex</a>) and <strong>Malin</strong> (<a href="http://twitter.com/infektia">@infektia</a>).</p>
<p>Alex was actually the last entry, I believe. The Twitter page I used in conjuction with my random numbers (17 and 15, in case you were wondering) doesn&#8217;t order by date, though.</p>
<h3>Claim Your Prize</h3>
<p>Just email the advertisment (125 by 125) to me (hit the <a href="http://www.connorwilson.com/contact/">contact page</a> for my email), preferably from the email you&#8217;ve commented with before. I&#8217;ll give you a week or so before I start proding you for one. If you want to pass the prize on for some reason, I can always draw another number.</p>
<p>Real content starts again this weekend, hopefully. It&#8217;s be a busy two days, that&#8217;s for sure.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.connorwilson.com/2008/04/04/twitter_contest_winners/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quick Contest: Free Ad Space!</title>
		<link>http://www.connorwilson.com/2008/04/01/quick_contest_free_ad_space/</link>
		<comments>http://www.connorwilson.com/2008/04/01/quick_contest_free_ad_space/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 23:47:06 +0000</pubDate>
		<dc:creator>Connor Wilson</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.connorwilson.com/?p=383</guid>
		<description><![CDATA[Today I&#8217;d like to offer you the opportunity to snatch up some free ad space, valued at $50/month for free. There are two spots available, so there will be to winners chosen.
How to Enter
Entering this contest is simple. If you follow me on Twitter, you are eligible to win. That simple!
If you don&#8217;t currently use [...]]]></description>
			<content:encoded><![CDATA[<p class="firstp"><span class="firstl">T</span>oday I&#8217;d like to offer you the opportunity to snatch up some free ad space, valued at $50/month for free. There are two spots available, so there will be to winners chosen.</p>
<h3>How to Enter</h3>
<p>Entering this contest is simple. If you follow me on <a href="http://twitter.com/connorwilson">Twitter</a>, you are eligible to win. That simple!</p>
<p>If you don&#8217;t currently use Twitter, it is a great service that after a while can become very useful and fun. Give it a try if you&#8217;re mildly interested, and <a href="http://twitter.com/connorwilson"><strong>follow me to enter</strong></a>!</p>
<h3>The Prize</h3>
<p>Two (2) winners will be selected, for one 125*125 ad spot in my sidebar. Value is $50 for one month, and the ad will run for one month. Contest ends <strong>Friday April 4th, 5PM EST</strong>. Winners will be selected at random.</p>
<h3>Fine Print</h3>
<p>Can&#8217;t say there is any catch here. I&#8217;m not requesting anything from you except for following me on Twitter to enter. If you want to link to this post I&#8217;ll give you an extra entry, but it is not a recquirment.</p>
<p>Also, this is not an April Fool&#8217;s day joke. On that note I haven&#8217;t seen a good one yet. Maybe next year.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.connorwilson.com/2008/04/01/quick_contest_free_ad_space/feed/</wfw:commentRss>
		</item>
		<item>
		<title>3 Things I Could do to Improve my Site</title>
		<link>http://www.connorwilson.com/2008/03/29/3_things_i_could_do_to_improve_my_site/</link>
		<comments>http://www.connorwilson.com/2008/03/29/3_things_i_could_do_to_improve_my_site/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 17:46:07 +0000</pubDate>
		<dc:creator>Connor Wilson</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.connorwilson.com/2008/03/29/3_things_i_could_do_to_improve_my_site/</guid>
		<description><![CDATA[Being critical of yourself is nearly impossible, because you will always have a different perception of your own work than others will. Though I have spent a lot of time on this theme, there are always tons of things you can do to improve.
Cliché? Yep. However, will I do these things? Eventually, yes, I hope [...]]]></description>
			<content:encoded><![CDATA[<p class="firstp"><span class="firstl">B</span>eing critical of yourself is nearly impossible, because you will always have a different perception of your own work than others will. Though I have spent a lot of time on this theme, there are always tons of things you can do to improve.</p>
<p>Cliché? Yep. However, will I do these things? Eventually, yes, I hope to implement all these ideas.</p>
<h3>1. Improve Comments</h3>
<p>This is a multifaceted feature of every blog that always has a ton of room for improvement. First, <strong>here&#8217;s what I&#8217;m already doing</strong>:</p>
<ul>
<li><strong>Separate trackbacks and comments</strong>. I show comments first, then the form to reply, and if there are any trackbacks, they are shown below.</li>
<li><strong>Gravatars</strong>. Every comment has the respective avatar showing, if they&#8217;ve signed up for <a href="http://gravatar.com">Gravatar</a>.</li>
<li><strong>Highlight author comments and alternate colours</strong>. This is so my comments stand out and there&#8217;s an aesthetic order with the alternating colours.</li>
<li><strong>AJAX editing</strong>. I just added this today. Try it out and tell me how it goes, because I can&#8217;t test it as a regular user (or at least I&#8217;m too lazy).</li>
</ul>
<p>I&#8217;ve spent quite a bit of time tweaking my CSS and comment.php file, but especially in this part of any site there is a vast space to<strong> improve reader experience</strong> and <strong>encourage mroe comments</strong>. Here are some things I&#8217;d like to implement:</p>
<ul>
<li><strong>Threaded comments</strong>. By default, these are ugly. But if I could fully integrate them into my own stylings, then I&#8217;d love to have two levels of comments. Any more gets a little out of hand, especially at the width I have for content.</li>
<li><strong>Add more incentive</strong>. There are many plugins that allow to show the latest headline for their blog, add their link to your sidebar, etc&#8230; But I&#8217;m tired of adding plugins by now. I&#8217;d want to write something my self to cut down on my already heavy server load.</li>
<li><strong>Change styling</strong>. I like the structure I have my comments in right now, but I&#8217;m always thinking it would look much better with a few major tweaks. I could even inject some colour to get rid of the grey.</li>
</ul>
<p>There are always more things you can do to improve this area, but I&#8217;ve found you are more successful when taking a few things at once.</p>
<h3>2. Display More Information</h3>
<p>The DOMtab JavaScript is nice, but it can be a pain to setup while maintaining a certain structure, like that of my sidebar. I found a jQuery plugin equivilent that offers more flexibility and options (plus it&#8217;s on jQuery, so that&#8217;s even more possibilties). It also allows for multiple instances on once page with ease.</p>
<p>I just think that there are some things in my sidebar that don&#8217;t need to be displayed at all times. Here&#8217;s a rough draft on what could go in (bolded would be default shown if tabbed):</p>
<ol>
<li><strong>About text</strong>. Sort of necessary at the top.</li>
<li><strong>Sponsors</strong>/Search/Stats. Two things that need to be near the top but don&#8217;t get a lot of love. Combine them! Plus that neat little stats plugin at the bottom right now.</li>
<li><strong>Top  Commentators</strong>/Categories/Blogroll. This way the commenters get their links front and center as usual. The tabs might even draw more users th their sites.</li>
<li><strong>Twitter</strong>/Flickr/Other Stuff lik that. Twitter is updated the most, and I could grab another feed, like Digg or something if I thought it would work well.</li>
<li>Recent posts/<strong>Popular posts</strong>. Something I really need but am lacking.</li>
</ol>
<p>One problem here is that there would be all those tabs, which may annoy some people. I think it would be a great opportunity for me to get more useful things into my sidebar without making it run longer than all my posts.</p>
<h3>3. Write More</h3>
<p>When I&#8217;m busy I tend to put certain things ahead of others. This site is something that can always fall to the bottom because it&#8217;s just me. I&#8217;ve always got client&#8217;s sites that need designing and coding, and even other writing ventures.</p>
<p>Considerring I don&#8217;t make a single cent from this site, posting a couple times a week is pretty good in my books. Once summer comes around I&#8217;ll probably be back to once a day, maybe more. The summer schedule allows for a lot more time for me to write, which explain the awesome quantity of posts from last summer.</p>
<p>This is the instant way to improve your site when all else seems to be going nowhere.</p>
<p>I wonder what would be a better usage of time then: numbers 1 and 2, or 3?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.connorwilson.com/2008/03/29/3_things_i_could_do_to_improve_my_site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What does your Comment Leave?</title>
		<link>http://www.connorwilson.com/2008/03/23/what_does_your_comment_leave/</link>
		<comments>http://www.connorwilson.com/2008/03/23/what_does_your_comment_leave/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 21:37:33 +0000</pubDate>
		<dc:creator>Connor Wilson</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.connorwilson.com/2008/03/23/what_does_your_comment_leave/</guid>
		<description><![CDATA[Some people leave comments for different reasons. There are many benefits for such a small task, but I&#8217;d like to go a little deeper than that. In the simplest terms, there are only two types of people who leave comments.
Those who add something, and those who do not.
How do you know?
You may think your comments [...]]]></description>
			<content:encoded><![CDATA[<p class="firstp"><span class="firstl">S</span>ome people leave comments for different reasons. There are many benefits for such a small task, but I&#8217;d like to go a little deeper than that. In the simplest terms, there are only two types of people who leave comments.</p>
<p><strong>Those who add something, and those who do not</strong>.</p>
<h3>How do you know?</h3>
<p>You may think your comments provide an extra insight or a quick thought, but in reality it likely doesn&#8217;t. I read every comment I get, and a trend I&#8217;m starting to notice is a slight pickup in relatively worthless comments.</p>
<p>Don&#8217;t get me wrong, if a (real) person takes time away from something better they could be doing and spends it on my site, I&#8217;m more than grateful, but this is about you. How your comments can benefit you.</p>
<blockquote><p>What will happen if I delete your comment?</p>
</blockquote>
<p><strong>Will anything change?</strong> If the answer is no (or you are unsure), then you have left a worthless comment. Not lacking of any value to the author, necessarily, <em>but lacking of value to you and the other commenters</em>.</p>
<p>Every time I get a comment I imagine the thread without that comment. Every time I read a comment on another blog I imagine the same thing.</p>
<p>Imaging you have a friend that during a conversation (of multiple people) chimes in with something everyone either ignores, or it&#8217;s just what someone else said. I know people that do this, and I know everyone else does too.</p>
<p><strong>Don&#8217;t be that person. </strong></p>
<h3>Comment Marketing</h3>
<p>I&#8217;m aware of people that only comment for links, traffic and stuff like that. It&#8217;s a good method of building a name in your niche. Unfortunately, these people are usually the culprits of such comments. You&#8217;ll also find that the more popular a post, the more of these comments you&#8217;ll get.</p>
<p>This is something I should probably do more of, but if I read a post there are a few things I think about before leaving a comment.</p>
<ol>
<li><strong>After reading the comments,</strong> there is something I can add. Contributing to the discussion is important. Spammy comments get deleted in the way of a real discussion.</li>
<li><strong>I disagree</strong>. I disagree with a lot of things, but if I read something and passionately oppose it, I&#8217;ll leave a comment.</li>
</ol>
<p>Otherwise, I just don&#8217;t feel I&#8217;d be doing their comment section justice. Because of this, <strong>my comments aren&#8217;t deletable</strong> (<em>it&#8217;s a word- I looked it up</em> <img src='http://www.connorwilson.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ).</p>
<p>You want people to read your comment. Let that be a reflection on you and your brand every time you leave a comment. You are representing a brand that will make a first impression on whoever reads it.</p>
<p>In the end, do yourself justice, and give the writer the respect you believe they deserve. <strong>That will provide you with more traffic from comments than 10 times the amount of worthless spam. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.connorwilson.com/2008/03/23/what_does_your_comment_leave/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
