<?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>Chris Everson</title>
	<atom:link href="http://www.chriseverson.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chriseverson.net</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 20 Jun 2010 22:45:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Intro to Linux for Web Developers &#8211; Part One</title>
		<link>http://www.chriseverson.net/intro-to-linux-for-web-developers-part-one/</link>
		<comments>http://www.chriseverson.net/intro-to-linux-for-web-developers-part-one/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 22:45:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[web developement]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://www.chriseverson.net/?p=32</guid>
		<description><![CDATA[
One of the more important tasks of web development and your success as a developer is knowing how to properly configure and maintain your web server. As your abilities grow you’ll often run into things that require you get into the dirty technology behind your website.
My inspiration for this post was a memory of years [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-33" title="linux-pt1" src="http://www.chriseverson.net/wp-content/uploads/2010/06/linux-pt1.jpg" alt="" width="668" height="211" /></p>
<p>One of the more important tasks of web development and your success as a developer is knowing how to properly configure and maintain your web server. As your abilities grow you’ll often run into things that require you get into the dirty technology behind your website.</p>
<p>My inspiration for this post was a memory of years ago when I had to learn this stuff. In the process I found that &#8220;beginners guides&#8221; weren&#8217;t really for beginners at all.</p>
<p>The beast that serves it to the world is more than likely running on <a href="http://en.wikipedia.org/wiki/Linux">Linux</a> thusly requiring you to make updates to your server configuration through the command line or shell as some people refer to it.</p>
<p>Part one of this three part series will guide you through the most basic of Linux commands to help you get around your server and edit files that need a bit of modification.</p>
<p><strong>Connecting to your server – SSH</strong></p>
<p><a href="http://en.wikipedia.org/wiki/Secure_Shell">SSH</a> is a method of remotely connecting to your shell account. Much like HTTP and FTP, it is a protocol allowing you to access your machine without having it physically available to you.</p>
<p><span id="more-32"></span></p>
<p>Accessing your server through SSH is a fairly simple process. For Mac and Linux users, this is as simple as opening up a command line or terminal window and entering a simple command to connect to your machine, Windows users, you’ll need to download a separate client to do this, I’d suggest <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">PuTTY</a>. The example below kills two birds with one stone, entering both your username and hostname in the same command (be sure to replace “username” and “your.hostname.tld” with your actual information:</p>
<pre class="prettyprint">ssh username@your.hostname.tld</pre>
<p>If you entered your username and hostname successfully, you will then be prompted to enter your password. Do that and you should be in and good to go!</p>
<p><strong>Navigating your machine</strong></p>
<p>Once you’ve got yourself in the door, it’s time to start looking around.  Let’s start by taking a look at where we landed in the file system by having the system return our current location in the filesystem:</p>
<pre class="prettyprint">[username]$:  pwd
/home/username</pre>
<p>More than likely you’ll be in your home directory so it should return something similar to the above “/home/username”. Our next step is to check out what files are in there using the list command to show the contents of a directory:</p>
<pre class="prettyprint">[username]$: ls</pre>
<p>This command will output a list of directories and files located in your current location. Let’s go ahead and go a level deeper and enter one of the folders listed there:</p>
<pre class="prettyprint">[username]$: cd logs</pre>
<p>Replace “logs” with the name of a directory you saw in your list and you will then  be in that directory. Moving back up a level is the same as if you were accessing a relative directory through HTML:</p>
<pre class="prettyprint">[username]$: cd ../</pre>
<p>This will bring you back up a level. One final trick to using the cd command is referring to the root / top level of the entire system. You do this using a forward slash:</p>
<pre class="prettyprint">[username]$: cd /</pre>
<p>The above will take you to the root of the file system. You can also use this to access a directory not within the one you’re currently accessing by starting at the top using the forward slash:</p>
<pre class="prettyprint">[username]$: cd /home/username/logs</pre>
<p>This will take you to the logs directory regardless of where you are at the moment.</p>
<p>Play around with navigating your web host for a while until next time when we cover how to edit files through the command line interface.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chriseverson.net/intro-to-linux-for-web-developers-part-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp Houston</title>
		<link>http://www.chriseverson.net/wordcamp-houston/</link>
		<comments>http://www.chriseverson.net/wordcamp-houston/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 01:24:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Life in General]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[houston]]></category>
		<category><![CDATA[wordcamp]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.chriseverson.net/?p=29</guid>
		<description><![CDATA[
Over the past few months Monica, Mr. Valdez, Katie and yours truly have been hard at work putting together the first ever WordCamp Houston. For those of you not familiar with the whole WordCamp thing, here is a brief description from the official WordCamp website:
&#8220;WordCamp is a conference that focuses on everything WordPress. WordCamps are [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-31" title="wordcamp" src="http://www.chriseverson.net/wp-content/uploads/2010/06/wordcamp.jpg" alt="" width="668" height="211" style="border:1px solid #666;" /></p>
<p>Over the past few months <a href="http://cosmopolitician.net">Monica</a>, <a href="http://twitter.com/thewhether">Mr. Valdez</a>, <a href="http://www.happykatie.com/">Katie</a> and yours truly have been hard at work putting together the first ever <a href="http://wordcamphouston.com">WordCamp Houston</a>. For those of you not familiar with the whole WordCamp thing, here is a brief description from the official <a href="http://central.wordcamp.org/">WordCamp</a> website:</p>
<p style="padding-left: 30px;"><em>&#8220;WordCamp is a conference that focuses on everything WordPress. WordCamps are informal, community-organized events that are put together by WordPress users like you. Everyone from casual users to core developers participate, share ideas, and get to know each other. WordCamps are open to </em><a href="http://wordpress.com"><em>WordPress.com</em></a><em> and </em><a href="http://wordpress.org"><em>WordPress.org</em></a><em> users alike.&#8221;</em></p>
<p>We have been incredibly lucky so far and have gotten an amazing venue, <a href="http://www.hmns.org/">The Houston Museum of Natural Science</a> and an amazing keynote speaker, <a href="http://ma.tt/">Matt Mullenweg</a>, the Houston-raised founder of WordPress.</p>
<p>The event is taking place on August 7th, 2010 and will be quite the event. For more information be sure to check out the website at <a href="http://wordcamphouston.com/">www.wordcamphouston.com</a> and head over to <a href="http://twitter.com/wordcamphtx">@wordcamphtx</a> on Twitter for even more WordCamp Houston goodness. Tickets are on sale now and the quantity is limited so be sure to get yours today!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chriseverson.net/wordcamp-houston/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A very happy birthday to Mr. Chris Valdez</title>
		<link>http://www.chriseverson.net/a-very-happy-birthday-to-mr-chris-valdez/</link>
		<comments>http://www.chriseverson.net/a-very-happy-birthday-to-mr-chris-valdez/#comments</comments>
		<pubDate>Wed, 19 May 2010 21:30:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life in General]]></category>

		<guid isPermaLink="false">http://www.chriseverson.net/?p=26</guid>
		<description><![CDATA[Every now and then we like to have fun at the office. One of my beloved business partners, Chris, had his birthday today. He&#8217;s currently living the rough life on a cruise somewhere in the vicinity of Italy right now to celebrate so we decided to make a little something for him while he&#8217;s on his journey [...]]]></description>
			<content:encoded><![CDATA[<p>Every now and then we like to have fun at the office. One of my beloved business partners, Chris, had his birthday today. He&#8217;s currently living the rough life on a cruise somewhere in the vicinity of Italy right now to celebrate so we decided to make a little something for him while he&#8217;s on his journey to wish him a special day.</p>
<div style="text-align:center;margin-top:35px;"><object width="601" height="338"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11878241&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=cc0000&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=11878241&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=cc0000&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="601" height="338"></embed></object></div>
]]></content:encoded>
			<wfw:commentRss>http://www.chriseverson.net/a-very-happy-birthday-to-mr-chris-valdez/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I Finally Switched to Google Chrome</title>
		<link>http://www.chriseverson.net/why-i-finally-switched-to-google-chrome/</link>
		<comments>http://www.chriseverson.net/why-i-finally-switched-to-google-chrome/#comments</comments>
		<pubDate>Tue, 04 May 2010 22:55:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.chriseverson.net/?p=23</guid>
		<description><![CDATA[
I&#8217;ve used just about every browser out there as my primary internet wandering tool over the last decade or so, and I&#8217;ve finally switched to yet another one, Google Chrome, which has to-date provided the best experience yet. Many years ago I started exploring the good ole internet using Netscape, things have come quite a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-24" title="Google Chrome" src="http://www.chriseverson.net/wp-content/uploads/2010/05/chrome.jpg" alt="Why I Finally Switched to Chrome" width="668" height="211" /></p>
<p>I&#8217;ve used just about every browser out there as my primary internet wandering tool over the last decade or so, and I&#8217;ve finally switched to yet another one, <a href="http://www.google.com/chrome/">Google Chrome</a>, which has to-date provided the best experience yet. Many years ago I started exploring the good ole internet using Netscape, things have come quite a ways since then.</p>
<p>Most recently my weapon of choice has been Firefox, mainly for its capabilities as a development tool with all the plugins a geek could ever ask for to aid your day-to-day development. While I still wouldn&#8217;t say Firefox is a bad browser, it has definitely gotten bulkier and bulkier over time, while some basic third-party elements, such as Flash, seemed to work properly less and less. At the point when I started consistently having problems with Firefox stalling or closing due to failure altogether, I started to contemplate the big switch.</p>
<p>I have had Chrome installed on my machine since day one of the public beta, but had never really taken a huge dive into it until recently. Now that I&#8217;ve started using it full-time, I am extremely pleased. It&#8217;s fast, it&#8217;s smart, it&#8217;s easy, and it&#8217;s much more attractive while taking up less screen real estate.</p>
<p>If you haven&#8217;t tried it out yet, <a href="http://www.google.com/chrome/">download it</a>, give it a couple solid days of use, and you&#8217;re guaranteed to be in love.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chriseverson.net/why-i-finally-switched-to-google-chrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Choosing a Web Host</title>
		<link>http://www.chriseverson.net/choosing-a-web-host/</link>
		<comments>http://www.chriseverson.net/choosing-a-web-host/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 14:23:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://www.chriseverson.net/?p=20</guid>
		<description><![CDATA[
Choosing a hosting solution for your website (hooray for &#8220;website&#8221; officially being one word now) is one of the most important choices in the development process. What good is your completely awesome website if no one can access it? There are seemingly endless different companies, providing numerous packages each, with a daunting list of specs [...]]]></description>
			<content:encoded><![CDATA[<p><img title="datacenter" src="http://www.chriseverson.net/wp-content/uploads/2010/04/datacenter.png" alt="" width="668" height="211" /></p>
<p>Choosing a hosting solution for your website (hooray for &#8220;website&#8221; officially being one word now) is one of the most important choices in the development process. What good is your completely awesome website if no one can access it? There are seemingly endless different companies, providing numerous packages each, with a daunting list of specs to make sure that this won&#8217;t be an easy choice for you, but in all reality, it&#8217;s not that hard. Hopefully the things outlined in this post will help you feel confident about your web hosting descision.</p>
<h4>Decision #1: Shared hosting VS Private server</h4>
<p>The two main options offered by most hosting providers are shared hosting and private servers / virtual private servers. How many sites do you plan on hosting? If you&#8217;re hosting more than a couple, the private server route is the way to go. Another advantage to being on a private server is the ability to have complete shell access. You might want total control of your web server and the environment that it&#8217;s running in, this is something that would definitely make the need for a private server.</p>
<p>Now that I&#8217;ve talked up the private server, there are time when using a shared hosting solution would benefit you greatly. If you&#8217;ve just got a website or two, shared hosting would probably be your best bet. It&#8217;s cheap, it&#8217;s effective, and it will surely get the job done. Think of shared hosting as an apartment in a complex whereas a private server is more of a home in a community.</p>
<h4>Decision #2: Linux VS Windows</h4>
<p>This decision is actually a pretty simple one to make. If you&#8217;re an experienced developer, you already know the answer to this one without even thinking about it, but maybe you&#8217;re not an experienced developer, and maybe the difference between these two options is unknown to you. Most hosting companies don&#8217;t really make this option so blatantly obvious, but for some like Go Daddy and a few other mainstream hosting companies, it&#8217;s part of the initial signup process. There is really only one reason as far as I know to ever go with a Windows hosting environment and that is if you plan on developing in Windows languages such as ASP.NET, so unless that&#8217;s your jam, I&#8217;d highly recommend going with a Linux environment.</p>
<h4>Decision #3: Resources</h4>
<p>When it comes to the lists of different packages, it always comes down to comparing resources available. How much hard drive space do you need? How much RAM do you need? How much bandwidth do you need? These are unfortunately all questions that I can&#8217;t really help you answer. There are many hosts out there with scalable solutions that allow you to monitor usage, then adjust allotted resources on the fly. Another great solution if you don&#8217;t know what you need is to just start with the lowest one that you feel might be adequate then just simply upgrade if you run into any problems. No web hosting company will ever make it a hassle for you to upgrade to a better package. You&#8217;ll be safe no matter what, don&#8217;t fret too much over the fine details, just keep an eye on your usage and adjust accordingly.</p>
<h4>Decision #4: Provider</h4>
<p>Choosing a hosting provider is the last step to take. Some hosting providers are better than others, but there really isn&#8217;t any hard data to base this choice off of. Everyone will advertise their 99% uptime, but that also always comes with a hefty hidden disclaimer excluding nearly everything that causes downtime from that percentage. I&#8217;ve worked with countless providers whether they were providers that a client was already setup with, or providers that I have had accounts with, and there&#8217;s only thing that I&#8217;ve learned from all of them is that none of them are perfect. I&#8217;ll give my input on a few below, good and bad, and let you do the rest.</p>
<p style="padding-left: 30px;"><strong>The Good</strong></p>
<p style="padding-left: 30px;"><a href="http://dreamhost.com/">DreamHost</a> &#8211; I am currently on a DreamHost private server account and so far am quite pleased. They have excellent tech support, scalable resources, and a very awesome administration interface<strong>. </strong>Like I said above, no one is perfect, and I have run into a couple of issues in my time with DreamHost, but overall, they are definitely my favorite so far. Plus, they have one-click WordPress installs, a pure godsend.</p>
<p style="padding-left: 30px;"><a href="http://mediatemple.net/">Media Temple</a> &#8211; Media Temple is also a great provider. They also have great customer service and an awesome administration interface. One of the great things about them is that they have a good variety of choices for everyone from first-time hosting customers to super-complex programmers, they definitely will have what you need.</p>
<p style="padding-left: 30px;"><a href="http://laughingsquid.net">Laughing Squid</a> &#8211; With prices that can&#8217;t be beat, Laughing Squid is definitely my recommendation to anyone looking for a standard shared hosting solution. They recently started to phase out their old system and have been replacing it with a cloud solution to make their service even better. Like the two above, they also carry great customer service and are sure to satisfy your shared hosting needs.</p>
<p style="padding-left: 30px;"><strong>The Bad</strong></p>
<p style="padding-left: 30px;"><a href="http://networksolutions.com">Network Solutions</a> &#8211; I never have been a fan of Network Solutions. They seem to constantly have problems with one service or another and getting through to the customer service is a nightmare. Recently they have also had major security problems, check out <a href="http://cmdshiftdesign.com/blog/2010/04/08/web-hosting-woes-a-letter-to-my-readers-and-network-solutions/">Liz&#8217;s blog post</a> for more details on that. Luckily she has moved and is now in a safer place.</p>
<p style="padding-left: 30px;"><a href="http://godaddy.com">Go Daddy</a> &#8211; Go Daddy is a monster. Commercials, race cars, they are definitely in the public eye. I love them as a domain registrar, but their hosting leaves a lot to be desired. It seems as though anything running on their servers, including their own administration panel, runs about as slow as molasses.</p>
<p style="padding-left: 30px;"><a href="http://www.bluehost.com/">Bluehost</a> &#8211; I have never experienced as much confusion and downtime as I have with Bluehost. They have an incredible pricing structure, but once you use it for a while, you truly do realize that you get what you pay for.</p>
<p style="padding-left: 30px;"><strong>The Geeky</strong></p>
<p style="padding-left: 30px;"><a href="http://www.slicehost.com/">Slicehost</a> &#8211; If you&#8217;re into complete fiddling with your web server setup, Slicehost is definitely your love. When you initially signup for an account, there isn&#8217;t even an operating system installed. If you know your stuff, Slicehost is definitely a fun little venture.</p>
<p>There you have it. Have a good time on your search for a web host, and don&#8217;t worry, picking the wrong one is definitely NOT the end of the world.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chriseverson.net/choosing-a-web-host/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Busy, Busy, Busy.</title>
		<link>http://www.chriseverson.net/busy-busy-busy/</link>
		<comments>http://www.chriseverson.net/busy-busy-busy/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 23:47:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life in General]]></category>
		<category><![CDATA[houston]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.chriseverson.net/?p=12</guid>
		<description><![CDATA[
What a busy past couple weeks it has been, I feel like I haven&#8217;t even gotten time to breathe much less update the ole&#8217; website. Here is my roundup of the past couple of weeks, and things to come in the future.
Twestival Houston 2010
Twestival is a wonderful charity event that takes place in hundreds of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-13" title="twestival2010" src="http://www.chriseverson.net/wp-content/uploads/2010/04/twestival2010.png" alt="" width="668" height="211" /></p>
<p>What a busy past couple weeks it has been, I feel like I haven&#8217;t even gotten time to breathe much less update the ole&#8217; website. Here is my roundup of the past couple of weeks, and things to come in the future.</p>
<h4>Twestival Houston 2010</h4>
<p><a href="http://twestival.com/">Twestival</a> is a wonderful charity event that takes place in hundreds of cities all around the world on the same day. I have been a part of the <a href="http://houston.twestival.com/">Houston Twestival</a> since it started and gladly donated my live sound services once again this time around. It was wonderful to see how many people came out to donate their time and money to a wonderful cause; <a href="http://www.concern.net/">Concern Worldwide</a>. It was great meeting all the new people that I never fail to meet at these events. The bands were great to work with, the people were fun to be around and the photo booth was surely a bad idea for me to step into (see above).</p>
<h4>Golf at Jersey Meadows</h4>
<p>I finally found a group of people to golf with after not having played 18 holes on a full course in well over a year. Regardless of how awful I played, it was still a great time and reminded me how much I love that game. Hopefully I can make this a more regular event and get my skills back on track because as I quickly found out, the driving range and the golf course are two completely different monsters.</p>
<h4>Roadshow Blondes Send-off</h4>
<p><a href="http://roadshowblondes.com/">Roadshow Blondes</a> is a duo of, you guessed it, blondes, from Houston taking a roadtrip from Houston to New York to raise awareness and money for suicide prevention and the <a href="http://www.jedfoundation.org/">Jed Foundation</a>. Basically, the idea is that they are driving across the country doing all sorts of crazy things decided by donation. The send-off was a wonderful event and much like Twesitval, it was full of meeting new people and all-around good times. There is still time to donate even though they are already on the road so <a href="http://roadshowblondes.com/">visit their website</a> and get your helping on!</p>
<h4>WordPress 3.0, Beta 1</h4>
<p>It&#8217;s coming, and it&#8217;s coming quick. <a href="http://wordpress.org">WordPress</a> released the first beta of <a href="http://wordpress.org/development/2010/04/wordpress-3-0-beta-1/">WordPress 3</a> this past week. The upgrade is perfectly balanced having a great bunch of improvements to WP2 while still being the same familiar system we&#8217;re all used to using. Custom post types, built-in multi-user functionality, featured images, automatic thumbnails and a whole host of other awesome improvements make WordPress 3 my new best friend. While it may be a little bit before I start using it for production purposes, I have definitely started to dive in head first and love absolutely everything that I&#8217;ve seen so far.</p>
<h4>Primer Grey + Colab Block Party</h4>
<p>This coming Thursday is our ever-so-awesome block party. What originally started as an open house quickly turned into a full-fledged &#8220;everyone come and meet each other&#8221; party. We realized once we moved into our offices that there were a ton of creatives and other companies hidden in the area that no one really knew were there. That said, we decided to do our best to pull everyone from within our community and everyone outside of it together for a night of fun and excitement. We&#8217;ve also added a little twist involving <a href="http://onedaywithoutshoes.com/">One Day Without Shoes</a>, a cause organized by <a href="http://www.toms.com/">Tom&#8217;s Shoes</a>. Be sure to check out the links below for more details on the party, see you then!</p>
<p style="padding-left: 30px;"><a href="http://www.startwithgrey.com/were-having-a-party-be-here/">Party Details @ Primer Grey &gt;&gt;</a><br />
<a href="http://www.facebook.com/event.php?eid=104813529558899">Facebook Event &gt;&gt;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chriseverson.net/busy-busy-busy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essential Web Development Tools</title>
		<link>http://www.chriseverson.net/essential-web-development-tools/</link>
		<comments>http://www.chriseverson.net/essential-web-development-tools/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 02:35:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[workspace]]></category>

		<guid isPermaLink="false">http://www.chriseverson.net/?p=9</guid>
		<description><![CDATA[
So you’re just starting out in web development and wondering what tools you need to start getting on par with the big boys? Here is a great starting point, but by no means the web development tools bible. If you find something that works for you, roll with it.
Google Talk
Everyone needs a way to instantly [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.chriseverson.net/wp-content/uploads/2010/03/webdev-graphic.png" style="border:0;"><img class="aligncenter size-full wp-image-10" title="webdev-graphic" src="http://www.chriseverson.net/wp-content/uploads/2010/03/webdev-graphic.png" alt="" width="668" height="211" /></a></p>
<p>So you’re just starting out in web development and wondering what tools you need to start getting on par with the big boys? Here is a great starting point, but by no means the web development tools bible. If you find something that works for you, roll with it.</p>
<p><strong>Google Talk<br />
</strong>Everyone needs a way to instantly communicate online. There are all sorts of services to achieve this, but <a href="http://www.google.com/talk/">Google Talk</a> is by far the best experience I’ve had in my days. You can access it through your gMail account, by the official client, or through any multi-IM client you may have (<a href="http://adium.im/">Adium</a> and <a href="http://www.pidgin.im/">Pidgin</a> are some great choices in this department).</p>
<p><strong>A Good Text Editor<br />
</strong>There is nothing you will use more than your text editor. I think I’ve used just about everything on the planet for all platforms, but certainly have a few preferences. There are loads and loads of text editors out there, so it’s just a matter of finding the one with the features that work best for you. I’m a man of simplicity and ease-of-use so I tend to go for the basic ones. Windows users, check out <a href="http://www.sublimetext.com/">Sublime Text</a>, it&#8217;s a champ. If you&#8217;re on OSX <a href="http://www.barebones.com/products/TextWrangler/">Text Wrangler</a> is your new best friend.</p>
<p><strong> </strong></p>
<p><strong>A Solid FTP Client<br />
</strong>Next in your list of most used tools is definitely your FTP client. If you don’t end up with a text editor with built-in FTP capabilities, this is definitely an important decision to make. FTP clients vary, what I look for is one with a good bookmarking system so that I can easily open up my client, click a button, and be inside of the directory I need. It’s all about speed and usability. OSX users, I&#8217;d strongly suggest <a href="http://cyberduck.ch/">Cyberduck</a>. If you&#8217;re on Windows, take a look at <a href="http://winscp.net/">WinSCP</a>, it&#8217;s functionality is superb.</p>
<p><strong> </strong></p>
<p><strong>An Efficient Workspace<br />
</strong>A tidy workspace is a happy workspace. Be sure to keep yours clean and you will be rewarded. Working at an actual desk or table is essential as your wrists are your friends, sitting with your laptop on your lap, or a coffee table is definitely not the way to go. Ergonomics baby! The one workspace add-on that all developers will agree is absolutely essential is a dual-monitor setup. I set mine up to have my web browser on one screen and my text editor on another, this makes for quick testing and speeds your development process up essentially.</p>
<p><strong>SSH Client<br />
</strong>As you development, chances are you’ll need to get in and edit some things on your server. This could be your Apache configuration or your PHP configuration among a vast host of other things. If you’re working on OSX, you can do this through <a href="http://www.helpdesk.umd.edu/topics/applications/terminal/osx/4556/">Terminal</a>, however Windows doesn’t have SSH functionality built-in so you’ll need to get your hands on <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">PuTTy</a>, a fantastic tool for all of your SSH needs.</p>
<p><strong>Sugar-free Red Bull<br />
</strong>Okay, maybe this one isn’t completely necessary, but, if energy drinks are your jam (I don’t do the coffee thing), I’d definitely suggest keeping them sugar-free. You don’t need the sugar crash, no one wants that feeling in their body.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chriseverson.net/essential-web-development-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Magic of 960px</title>
		<link>http://www.chriseverson.net/the-magic-of-960px/</link>
		<comments>http://www.chriseverson.net/the-magic-of-960px/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 04:23:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.chriseverson.net/?p=7</guid>
		<description><![CDATA[
One of the biggest questions I’ve been faced with by people just beginning to design for web is: “How big should I make the website?” This single question causes more stress and consideration than any other in the web design world. There are so many different variables to take into consideration that the concept of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-8" title="960-graphic" src="http://www.chriseverson.net/wp-content/uploads/2010/03/960-graphic.jpg" alt="" width="668" height="211" /></p>
<p>One of the biggest questions I’ve been faced with by people just beginning to design for web is: “How big should I make the website?” This single question causes more stress and consideration than any other in the web design world. There are so many different variables to take into consideration that the concept of an ideal width seems impossible.</p>
<p>The first place your mind will likely delve into is trying to determine what the average resolution is. There was a time when the answer to this was a much simpler one, 800 pixels by 600 pixels. Now it’s a different story, with the standard resolution being more of a debate. Should you design for the minimum? Should you design for the most common? Or should you design for the more advanced user? The easy answer to all three of those questions is “yes”. That being said, you can’t typically do three things at once, so why not cater to the common?</p>
<p>Modern monitors typically support up to 1024 × 768 and most new machines these days ship with either 1024 x 768 or 1440 x 900 as the default.</p>
<p>This brings us back to the original question; the generally accepted answer is 960 pixels wide.</p>
<p>Designing to 960 is surely going to fit within browsers on screens at 1024 or 1440, but there’s quite a bit more magic to the choice of using 960 pixels for your design width. This magic is given birth by the sheer mathematical flexibility of the number, it is divisible by 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 60, 64, 80, 96, 120, 160, 192, 240, 320 and 480. Imagine how much easier that layout math will be with all of those numbers producing a whole number though basic math!</p>
<p>So there you have it, the magic of 960 pixels. Now that’s not nearly to say you should always stick to 960 pixels, hell, my site is based on the 960 system, but I do break it off to the left. Some people would also argue that a fluid layout is much more practical, but I’ll leave that argument to the birds.</p>
<p>Now go get your 960 on!</p>
<p>If this is the first time you’ve heard about the magic of 960, be sure to check out the places I’ve read about it before to stay on top of your game:</p>
<p style="padding-left: 30px;"><a href="http://www.cameronmoll.com/archives/001220.html">“Optimal Width for 1024px Resolution?”</a> – Cameron Moll<br />
<a href="http://960.gs/">960 Grid System</a> – Excellent site with a framework of sorts</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chriseverson.net/the-magic-of-960px/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome back, me.</title>
		<link>http://www.chriseverson.net/welcome-back-me/</link>
		<comments>http://www.chriseverson.net/welcome-back-me/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 06:15:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life in General]]></category>
		<category><![CDATA[andrewkarnavas]]></category>
		<category><![CDATA[cosmopolitician]]></category>
		<category><![CDATA[houston]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.chriseverson.net/?p=3</guid>
		<description><![CDATA[Well, I&#8217;ve finally got my website back up with a new theme and all. In the near future expect to see a couple plugins as well as free WordPress themes for download hosted here. I&#8217;ve created quite a few WordPress goodies over the past few years, and would love to share them with everybody.
I had [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve finally got my website back up with a new theme and all. In the near future expect to see a couple plugins as well as free <a href="http://wordpress.org">WordPress </a>themes for download hosted here. I&#8217;ve created quite a few <a href="http://wordpress.org">WordPress</a> goodies over the past few years, and would love to share them with everybody.</p>
<p>I had a great night tonight, especially considering it was a Wednesday. Met up with some dear friends at <a href="http://www.beavershouston.com/">Beaver&#8217;s</a> to celebrate <a href="http://www.andrewkarnavas.com/">Andrew</a> quitting his job. Everyone wish him luck in his future endeavors with music and the like.</p>
<p>Well, that&#8217;s all I&#8217;ve got for now. Working on my goal of trumping <a href="http://cosmopolitician.net">Monica&#8217;s</a> web traffic, so you should surely see more posts from me here soon, and the obligatory bio.</p>
<p>Adios.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chriseverson.net/welcome-back-me/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
