<?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>Blog and Web Design Portfolio of Adrian Pelletier</title>
	<atom:link href="http://www.adrianpelletier.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adrianpelletier.com</link>
	<description></description>
	<lastBuildDate>Mon, 13 Jul 2009 14:31:11 +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>Create a Realistic Hover Effect With jQuery</title>
		<link>http://www.adrianpelletier.com/2009/05/31/create-a-realistic-hover-effect-with-jquery-ui/</link>
		<comments>http://www.adrianpelletier.com/2009/05/31/create-a-realistic-hover-effect-with-jquery-ui/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 00:40:32 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.adrianpelletier.com/?p=1047</guid>
		<description><![CDATA[For one of the projects I&#8217;m currently working on with Rareview, we wanted to add a rising hover effect to a set of icon links. Using jQuery&#8217;s animate effect, I experimented with icons that have reflections and others with shadows. Here is a demo with two examples:

The HTML and CSS are both straightforward and have [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">F</span>or one of the projects I&#8217;m currently working on with <a href="http://www.rareview.com/" title="Visit Rareview's website" target="_blank">Rareview</a>, we wanted to add a rising hover effect to a set of icon links. Using <a href="http://jquery.com/" target="_blank">jQuery&#8217;s</a> animate effect, I experimented with icons that have reflections and others with shadows. Here is a demo with two examples:</p>
<p><a class="img-link" href="http://adrianpelletier.com/sandbox/jquery_hover_nav/" title="View the Demo"><img src="http://www.adrianpelletier.com/wp-content/uploads/2009/05/jquery-rising-hover-3.jpg" alt="jquery-rising-hover-2" width="438" height="150" class="alignnone size-full wp-image-1108" /></a></p>
<p>The HTML and CSS are both straightforward and have a structure and style common to many web navigations and menus (for the sake of post length, I&#8217;m not including HTML/CSS code examples here but you are free to snoop around in the demo or view the files in the download below).</p>
<p>In a nutshell, the JS appends the reflection/shadow to each <code>&lt;li&gt;</code>, then animates the position and opacity of these elements and the icon links on hover. I&#8217;ve added <code>.stop()</code> to eliminate any queue buildup from quickly mousing back and forth over the navigation.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// Begin jQuery</span>
&nbsp;
$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
<span style="color: #006600; font-style: italic;">/* =Reflection Nav
-------------------------------------------------------------------------- */</span>	
&nbsp;
    <span style="color: #006600; font-style: italic;">// Append span to each LI to add reflection</span>
&nbsp;
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#nav-reflection li&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;&lt;span&gt;&lt;/span&gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
&nbsp;
    <span style="color: #006600; font-style: italic;">// Animate buttons, move reflection and fade</span>
&nbsp;
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#nav-reflection a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hover</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> marginTop<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;-10px&quot;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">200</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;span&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> marginTop<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;18px&quot;</span><span style="color: #339933;">,</span> opacity<span style="color: #339933;">:</span> <span style="color: #CC0000;">0.25</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">200</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> marginTop<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;0px&quot;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">300</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;span&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> marginTop<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;1px&quot;</span><span style="color: #339933;">,</span> opacity<span style="color: #339933;">:</span> <span style="color: #CC0000;">1</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">300</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #006600; font-style: italic;">/* =Shadow Nav
-------------------------------------------------------------------------- */</span>
&nbsp;
    <span style="color: #006600; font-style: italic;">// Append shadow image to each LI</span>
&nbsp;
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#nav-shadow li&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;img class=&quot;shadow&quot; src=&quot;images/icons-shadow.jpg&quot; width=&quot;81&quot; height=&quot;27&quot; alt=&quot;&quot; /&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #006600; font-style: italic;">// Animate buttons, shrink and fade shadow</span>
&nbsp;
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#nav-shadow li&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hover</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    	<span style="color: #003366; font-weight: bold;">var</span> e <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> marginTop<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;-14px&quot;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">250</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        	$<span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> marginTop<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;-10px&quot;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">250</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;img.shadow&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> width<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;80%&quot;</span><span style="color: #339933;">,</span> height<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;20px&quot;</span><span style="color: #339933;">,</span> marginLeft<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;8px&quot;</span><span style="color: #339933;">,</span> opacity<span style="color: #339933;">:</span> <span style="color: #CC0000;">0.25</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">250</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    	<span style="color: #003366; font-weight: bold;">var</span> e <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> marginTop<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;4px&quot;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">250</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        	$<span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> marginTop<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;0px&quot;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">250</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">find</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;img.shadow&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> width<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;100%&quot;</span><span style="color: #339933;">,</span> height<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;27px&quot;</span><span style="color: #339933;">,</span> marginLeft<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;0px&quot;</span><span style="color: #339933;">,</span> opacity<span style="color: #339933;">:</span> <span style="color: #CC0000;">1</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">250</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #006600; font-style: italic;">// End jQuery</span>
&nbsp;
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Please note, for the purposes of this quick demo, I did not bother including support for IE6. </p>
<p><a class="grey_button" href="http://adrianpelletier.com/sandbox/jquery_hover_nav/" title="Check out the demo">View Demo</a> <em class="serif">&nbsp; or &nbsp;</em> <a class="grey_button" href="http://adrianpelletier.com/sandbox/jquery_hover_nav/demo.zip" title="Download the demo">Download</a></p>
<p><strong>Update 06/01/2009:</strong> I updated the shadow example so that it has more of a bounce to it.</p>
<p><strong>Update 07/08/2009:</strong> As <a href="http://www.adrianpelletier.com/2009/05/31/create-a-realistic-hover-effect-with-jquery-ui/comment-page-1/#comment-3367">Cody Lindley</a> points out in the comments (thanks!), this example does not require the UI and could work with jQuery alone (I&#8217;ve updated the link in the post). However, this being a navigation example, I&#8217;ll leave the UI script in the demo and download for users who want to experiment with <a href="http://jqueryui.com/demos/animate/" target="_blank">animating text, background, borders, or outline colors</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adrianpelletier.com/2009/05/31/create-a-realistic-hover-effect-with-jquery-ui/feed/</wfw:commentRss>
		<slash:comments>115</slash:comments>
		</item>
		<item>
		<title>4 Months Self-employed: 10 Lessons Learned</title>
		<link>http://www.adrianpelletier.com/2009/04/21/4-months-self-employed-10-lessons-learned/</link>
		<comments>http://www.adrianpelletier.com/2009/04/21/4-months-self-employed-10-lessons-learned/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 04:23:38 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Jobs and Freelance]]></category>

		<guid isPermaLink="false">http://www.adrianpelletier.com/?p=948</guid>
		<description><![CDATA[The transition from working for an employer to being self-employed does not happen over night. I took the leap at the start of 2009 and the experience has been both amazing and enlightening. Over the last four months, I&#8217;ve worked on some incredible projects with very talented people and learned a lot of lessons along [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">T</span>he transition from working for an employer to being self-employed does not happen over night. I took the leap at the start of 2009 and the experience has been both amazing and enlightening. Over the last four months, I&#8217;ve worked on some incredible projects with very talented people and learned a lot of lessons along the way. Here is my top 10 list:</p>
<p><strong>1. Set a routine.</strong> Anxious to start bringing in paid work and getting personal projects off the ground, I quickly overbooked my first few weeks of being self-employed. The more, the better, I had thought. Mornings gradually started later while I continued to work long nights. The fix was to incorporate some kind of daily routine, which, in my case, meant offering to drive my girlfriend to and from work each day. Having a routine schedule has helped productivity and ensures that I&#8217;m available for e-mails, conference calls, or other client needs throughout regular work hours.</p>
<p><strong>2. Archive everything. </strong>Maintaining a well organized work history is essential. I store client discussions, contact lists, project notes, estimates, invoices, expenses, inspiration, and many other work related items so that I can easily reference them in the future. There are a number of applications and services I use to help me keep everything in order but the main ones are: <a title="Task management application" href="http://culturedcode.com/things/" target="_blank">Things</a> for project to-do lists and notes, <a title="The one-in-all Mac editor, well worth the money" href="http://www.panic.com/coda/" target="_blank">Coda</a> for development and site organization, <a title="I've tried them all and Billings is the best" href="http://www.billingsapp.com/" target="_blank">Billings</a> for time tracking, estimates, and invoices, <a title="An amazing way to start the day" href="http://netvibes.com/" target="_blank">Netvibes</a> for following web news, <a title="A great e-mail client, right out of the box" href="http://www.apple.com/macosx/features/mail.html" target="_blank">Apple Mail</a> for checking multiple e-mail accounts, and <a title="An excellent solution to backing up files" href="http://www.apple.com/macosx/features/timemachine.html" target="_blank">Time Machine</a> to back everything up.</p>
<p>Out of all the different bits of info I keep, project hours is one of the most important. My previous jobs led me to believe that time sheets served little more purpose than to prove I was working. However, since being self-employed, I&#8217;ve found it critical to log all of my hours in order to monitor current project budgets as well as create estimates for upcoming work. I use Billings to make new slips for each project task and jot down what was completed and how long it took. I also break the slips down by categories so I can see how much time was spent between research, account management, design, development, and so on.  At the end of a large project, it&#8217;s not uncommon to have a PDF upwards of 20 pages long with all of my task notes. Not only do clients appreciate seeing exactly where my time was spent but each completed project gives me a very clear and detailed outline for comparing future estimates with.</p>
<p><strong>3. Find the work/life balance.</strong> This is probably the most important, and difficult, lesson to learn. I also don&#8217;t believe this is something you can ever perfect; it takes constant effort to stay balanced. There is a fine line between being dedicated and being obsessed. When working for an employer, it&#8217;s much easier to put in your hours and then not worry about the job after quitting time. When self-employed, you have a huge amount of responsibilities and it becomes very easy to justify spending any spare time on your work, whether that means getting ahead on a project or lining up future jobs. Personally, this is part of why I love being self-employed; I enjoy the satisfaction of knowing my success, or failure, is a result of my own doing. However, the danger is when working too much begins to interfere with seeing family, friends, or taking a little break. It all comes down to finding your own balance and keeping everything in moderation.</p>
<p>I&#8217;ve also learned that my mood is often tied directly to my work and that can be both a good and bad thing. On the one hand, the pressure to continually make progress has been a strong motivator and, as long as I have met my goals that day, I can go to bed with an accomplished feeling. On the other hand, inevitable slow patches or days that simply don&#8217;t go well can weigh heavily on me that evening or, worse yet, all weekend if it is Friday. Finding your &#8220;shut off&#8221; switch can really be valuable to both your personal and professional life. Go for a bike ride. Play a video game. Do anything that will shift your mind away from work at the end of the day.</p>
<p><strong>4. Communicate as often as possible.</strong> Always keep clients informed about of your progress and how you plan to meet the next milestone. Frequent discussions will bring up any questions you or the client may have throughout the project and will help reduce client surprises and revisions. It is also a good idea get to any kind of feedback documented in writing. For example, say a client gives the ok on a design but later decides he or she doesn&#8217;t like the look once development begins. By having the previous design approval in writing, it&#8217;ll be much easier to steer the project back to the original agreement or justifying added costs if the client insists on new changes. <a title="Web collaboration and project management software" href="http://www.projecturf.com" target="_blank">Projecturf</a> is a great tool for managing these types of discussions. I&#8217;ve tried <a title="Project managemnt, collaboration, and task software" href="http://www.basecamphq.com/" target="_blank">Basecamp</a>, <a title="Project management and collaboration tool" href="http://www.activecollab.com/" target="_blank">activeCollab</a>, and a many similar services but Projecturf is, by far, my favorite.</p>
<p><strong>5. Pay is not everything.</strong> When considering a new project, also think about what you can learn from the job and what the client relationship is like. Will the work be an exciting challenge or boringly simple? Does the client seem easy or difficult to deal with? These questions are just as important as what the project will pay. Burnout is usually the cause of overly easy projects and/or doing work for nightmare clients. Taking on enjoyable, meaningful projects for people who appreciate your work will keep you and your clients happy.</p>
<p><strong>6. Dedicate a few hours each week to self-promotion.</strong> Write a new blog entry, check in with past clients, join in online web discussions or local meetings, spread the word and let people know you&#8217;re available for hire. Doing the work is only half the battle; you need to line up your next projects and keep your calendar booked in advance. Clients want to see life in the people they hire and regularly updating your site with fresh content is an easy way to do that. Posting tutorials or code examples is also a great way to substantiate your work knowledge.</p>
<p><strong>7. Find your zone.</strong> One of the many benefits I&#8217;ve found in being self-employed is that I feel like I am working toward my own goals rather than someone else&#8217;s now. To remind me of life dreams and things I want to achieve, I have family photos and motivational art decorating the walls. Having a creative, inspiring work environment can be a wonderful aid to productivity. I&#8217;ve also learned that music can play an important role. It is much easier for me to work (especially when coding) with some kind of background beat instead of listening to the clacking of keys and mouse clicks. Everyone has their own preference but I like songs with no lyrical content, or in a different language. Movie soundtracks, for example, can be very inspirational without the distraction of voices.</p>
<p><strong>8. Separate business finances from personal.</strong> Setup a business-only bank account and credit card to help divide business income and expenses from personal. Take the time to record all business costs throughout the year to save yourself from digging through receipts come next April. Usually, a good first step is to meet with a local CPA to find out exactly what you can and can&#8217;t write off. It&#8217;s worth the effort to figure out how to properly deduct as many expenses as possible, otherwise taxes will quickly decimate your income. I&#8217;ve been used to having federal taxes taken out of my paychecks before receiving them so it was rather painful to send out both my 2008 taxes and this year&#8217;s quarterly estimated taxes this month. The good news is there are many expenses you can deduct when self-employed like health care, hardware and software, office rent and supplies, and other work related items. Of course, these deductions need to be directly tied to your job but you&#8217;d be surprised how quickly they can add up.</p>
<p><strong>9. Passive income can help stabilize cash flow.</strong> Most of my work is charged based on the project, not hourly, with 50% up front and the remaining 50% upon completion. Obviously, there are often gaps with no pay at all and that can be worrisome with monthly bills such as housing, health insurance, etc. Passive income can be a great complement to your main sources of revenue because it often follows a consistent pay schedule (i.e. affiliate advertising) and continues to work around the clock.</p>
<p><strong>10. Be professional.</strong> Don&#8217;t write e-mails like you&#8217;re texting from a phone. Don&#8217;t post wild weekend photos on your work blog. Don&#8217;t spend all day on <a title="A great way to get nothing done." href="http://www.facebook.com" target="_blank">Facebook</a> (or don&#8217;t create an account and eliminate the urge altogether!). Use common sense and present yourself and your work in a professional manner. If you end up working with a client for a long time and become good friends, there&#8217;s usually room to be a little more informal, but first impressions are everything.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adrianpelletier.com/2009/04/21/4-months-self-employed-10-lessons-learned/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Rareview Raises the Bar</title>
		<link>http://www.adrianpelletier.com/2009/03/23/rareview-raises-the-bar/</link>
		<comments>http://www.adrianpelletier.com/2009/03/23/rareview-raises-the-bar/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 17:40:16 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.adrianpelletier.com/?p=898</guid>
		<description><![CDATA[
Today, Rareview launched the latest version of their website, boasting their signature style and impressive Flash and Javascript enhancements. The work section, in particular, was creatively organized and includes notes for certain work screenshots. The blog was also updated and I lent a hand in creating the new WordPress theme.
Check out the new Rareview site [...]]]></description>
			<content:encoded><![CDATA[<p><a class="img-link" href="http://www.rareview.com" title="Visit Rareview and check out their latest work and news" target="_blank"><img src="http://www.adrianpelletier.com/wp-content/uploads/2009/03/rv_newsite.jpg" alt="rv_newsite" title="rv_newsite" width="438" height="150" class="alignnone size-full wp-image-899" /></a></p>
<p><span class="drop_cap">T</span>oday, <a href="http://www.rareview.com" title="Visit Rareview and check out their latest work and news" target="_blank">Rareview</a> launched the latest version of their website, boasting their signature style and impressive Flash and Javascript enhancements. The work section, in particular, was creatively organized and includes notes for certain work screenshots. The <a href="http://www.rareviewblog.com/" title="View Rareview's blog" target="_blank">blog</a> was also updated and I lent a hand in creating the new WordPress theme.</p>
<p>Check out the new <a href="http://www.rareview.com" title="Visit Rareview and check out their latest work and news" target="_blank">Rareview</a> site and their latest projects. I guarantee it is unlike any other agency you&#8217;ve seen before.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adrianpelletier.com/2009/03/23/rareview-raises-the-bar/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Creating Passive Income on the Side</title>
		<link>http://www.adrianpelletier.com/2009/03/08/creating-passive-income-on-the-side/</link>
		<comments>http://www.adrianpelletier.com/2009/03/08/creating-passive-income-on-the-side/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 21:30:48 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[Jobs and Freelance]]></category>

		<guid isPermaLink="false">http://www.adrianpelletier.com/?p=852</guid>
		<description><![CDATA[Most independent contractors will agree that the ebb and flow of work can often book months at a time as well as create dry spells with no projects at all. I&#8217;ve been fortunate in being flat out since beginning to work for myself in 2009 but that hasn&#8217;t stopped me from preparing for possible downtime. [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">M</span>ost independent contractors will agree that the ebb and flow of work can often book months at a time as well as create dry spells with no projects at all. I&#8217;ve been fortunate in being flat out since beginning to work for myself in 2009 but that hasn&#8217;t stopped me from preparing for possible downtime. Creating passive income, no matter how large or small the amount, is always a good idea when you don&#8217;t have a steady paycheck to rely on.</p>
<p><a href="http://envato.com" target="_blank">Envato</a>, a rapidly growing collection of resource sites (and much more), is a great place to start if you&#8217;re a designer or developer looking to make some extra cash. Whether you&#8217;re handy with coding, designing, video, or audio, Envato has a site where you can sell stock files. There are many benefits in selling stock but the main attraction is potentially making numerous sales off of a file that you only need to create once. Add enough files and you may find yourself with a consistent stream of side money to help supplement your main sources of income.</p>
<p>The process is as simple as taking a quick seller quiz, uploading your files, then letting time take care of the rest while you continue with your main work. Chances are, most designers and developers already have leftover files or incomplete ideas that could easily be finished and sold as stock (just remember that the work needs to be yours and free of copyright). Envato also has multiple communities where you could become an author and write tutorials on what you know best, although writing a tutorial wouldn&#8217;t count as being passive income since you would only be getting paid once for each submission.</p>
<p>Recently, Envato launched <a href="http://graphicriver.net" target="_blank">Graphic River</a>, one of the few stock websites I&#8217;ve found that allows authors to sell Photoshop files (nice!). I enjoy working in any of the Adobe Creative Suite applications but Photoshop has always been a personal favorite of mine. I quickly signed up for a new account (which works on all Envato sites, by the way) to read more on the fine print and test out the author program. The <a href="http://graphicriver.net/page/rates" target="_blank">payment rates</a> are 25% for non-exclusive sellers and between 40-70% for exclusive members, depending on how many sales your files make. The difference between exclusive and non-exclusive membership is whether you want to sell your files on multiple websites or only on an Envato marketplace. Compared to similar stock sites, such as <a href="http://istockphoto.com" target="_blank">istockphoto</a>, Envato offers slightly higher rates, especially if you think your files will make a lot of sales.</p>
<p>One thing I was not impressed with was the Graphic River upload form, which seems to still be a work-in-progress. There are a small handful of files you need to upload for each submission, such as thumbnail, preview, etc., and every time I uploaded a new asset, the form fields I had already populated would reset. Hopefully that gets ironed out soon. Here&#8217;s a look at my first upload (click to visit the file&#8217;s Graphic River page):</p>
<p><a class="img-link" href="http://graphicriver.net/item/crystal-ball/32988" target="_blank"><img src="http://www.adrianpelletier.com/wp-content/uploads/2009/03/crystal_ball.jpg" alt="crystal_ball" title="crystal_ball" width="438" height="150" class="alignnone size-full wp-image-866" /></a></p>
<p><strong>Update #1:</strong> After testing out the Graphic River seller program a little more over the last week, the file upload and review process certainly requires a lot of patience. I have a feeling the interest in Graphic River is more than Envato anticipated, or was initially prepared for, and it shows in the timeliness and quality of responses from the file reviewers. It has been taking at least two to three days before my files are looked at and the reason I was given for one of them being rejected was laughably short and vague. I responded to the reviewer, kindly asking what the issue was and how could I improve it, but did not receive a straight answer until e-mailing two more times after that. Even then, I learned that there was nothing wrong with the file other than it simply wasn&#8217;t to this particular person&#8217;s taste. The reviewers should do themselves a favor and give honest critiques so that authors who have files rejected can know how to make the work better and ultimately improve the overall file selection of Graphic River.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adrianpelletier.com/2009/03/08/creating-passive-income-on-the-side/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Pirates and GoDaddy: Equally Disappointing</title>
		<link>http://www.adrianpelletier.com/2009/03/05/pirates-and-godaddy-equally-disappointing/</link>
		<comments>http://www.adrianpelletier.com/2009/03/05/pirates-and-godaddy-equally-disappointing/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 22:00:02 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.adrianpelletier.com/?p=796</guid>
		<description><![CDATA[
Shifting Creations is no stranger to being ripped; the design has been stolen several times over the last four years. Surprisingly, the number one way I usually find out one of my sites has been copied is because the designers neglect to remove my contact details from either the contact form or the vcard. Note [...]]]></description>
			<content:encoded><![CDATA[<p><a class="img-link" href="http://articlemsskins.net/" target="_blank"><img class="alignnone size-full wp-image-847" title="articlems2" src="http://www.adrianpelletier.com/wp-content/uploads/2009/03/articlems2.jpg" alt="articlems2" width="438" height="150" /></a></p>
<p><a href="http://adrianpelletier.com/portfolio/shifting_creations/" target="_blank"><span class="drop_cap">S</span>hifting Creations</a> is no stranger to being ripped; the design has been stolen several times over the last four years. Surprisingly, the number one way I usually find out one of my sites has been copied is because the designers neglect to remove my contact details from either the contact form or the vcard. Note to website thieves: if you&#8217;re going to steal someone&#8217;s work, at least follow through with the job!</p>
<p>Usually, I don&#8217;t bother pointing out the infringing website and deal with the matter very quietly but since this seems to be a stubborn case, I figured I would outline some of the steps I take in case this happens to you. I start by sending the offending party a polite <a href="http://en.wikipedia.org/wiki/Digital_Millennium_Copyright_Act" target="_blank">DMCA</a> notice via e-mail (here is <a href="http://futurequest.net/Services/TOS/DMCA/DMCANotice.php" target="_blank">an example</a>). The keyword here is <em>polite</em>. There is no reason to automatically assume the website owner knows they have stolen your work and, often, they are less likely to cooperate if you immediately start the conversation with an angry tone. I&#8217;ve heard all the excuses, everything from, &#8220;We didn&#8217;t know, our intern created it,&#8221; to, &#8220;I was just testing it out to learn from your site.&#8221; I rarely believe any of these stories but go along with it anyway and kindly ask that they take the site down as soon as possible.</p>
<p>If the matter continues and I have not received contact or a reason to believe the design will be removed, I do a quick <a href="http://www.networksolutions.com/whois/index.jsp" target="_blank">WHOIS</a> lookup to find out where the site is being hosted and then contact that company. To date, every host I&#8217;ve dealt with regarding a similar issue has been very understanding and quick to aid in taking down the stolen materials. <a href="http://godaddy.com/" target="_blank">GoDaddy</a>, however, has decided to make the process even more of a hassle.</p>
<p>I&#8217;ve contacted their support multiple times now and, after supplying every bit of info I could think of, the only responses I&#8217;ve received have been the same robotic messages that don&#8217;t clearly explain what my claim is missing. I understand there need to be certain measures in ensuring my request is valid, but I&#8217;ve been amazed at how little GoDaddy is willing to help or even send a human response instead of copying and pasting. Regardless, I will continue to pursue the issue until the design of <a href="http://articlemsskins.net/" target="_blank">ArticleMS Skins</a> has been removed. Until then, here are a couple highlights to check out before the site is down:</p>
<ul>
<li>The <a href="http://articlemsskins.net/contact/" target="_blank">contact page</a> clearly still has my contact details (duh!).</li>
<li>I love the copy in the footer stating, &#8220;Skin Modified By ArticleMS Skins,&#8221; as if that makes it ok to steal a design.</li>
</ul>
<p>The funniest part of it all is I&#8217;ve also been receiving e-mails from potential customers of ArticleMS Skins, asking me where to send payment. Evidently, stealing my work hasn&#8217;t paid off very well for them.</p>
<p><strong>Update #1:</strong> GoDaddy has finally suspended ArticleMS Skins until the site owner indicates they are ready to remove the infringing content.</p>
<p><strong>Update #2:</strong> ArticleMS Skins is back online with a new design (hopefully, this one is original).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adrianpelletier.com/2009/03/05/pirates-and-godaddy-equally-disappointing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How I Chose to Say Farewell to IE6</title>
		<link>http://www.adrianpelletier.com/2009/02/16/how-i-chose-to-say-farewell-to-ie6/</link>
		<comments>http://www.adrianpelletier.com/2009/02/16/how-i-chose-to-say-farewell-to-ie6/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 16:09:48 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://adrianpelletier.com/?p=741</guid>
		<description><![CDATA[
The web community has been abuzz lately with talk about dropping support for IE6 and rightfully so! I couldn&#8217;t agree more for most sites, though I&#8217;m sure there will be the occasional client who either requests IE6 to be included in testing or it turns out their audience actually does use IE6 according to the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-767" title="attention_ie6" src="http://adrianpelletier.com/wp-content/uploads/2009/02/attention_ie6.jpg" alt="attention_ie6" width="438" height="150" /></p>
<p><span class="drop_cap">T</span>he web community has been abuzz lately with talk about dropping support for IE6 and rightfully so! I couldn&#8217;t agree more for <em>most</em> sites, though I&#8217;m sure there will be the occasional client who either requests IE6 to be included in testing or it turns out their audience actually does use IE6 according to the site&#8217;s stats. Nonetheless, the majority of mordern websites could certainly do without supporting IE6. I would guess somewhere between 30% of my development time is spent fixing the crippled browser, if not more, and I&#8217;m looking forward to an enormous decrease in frustrations! It was always a frightful thing to fire up Windows and find out what horrors IE had done to a perfectly good site. I don&#8217;t blame the browser either; the problem was for too long (way too long) IE6 still had a large user group. Thankfully, those numbers are continually decreasing and I&#8217;ve decided this is the year I&#8217;ll be dropping support for IE6. If a future client requests the browser to be supported, that&#8217;s fine, but it will come at additional costs for the extra development and testing time.</p>
<p>As for how I&#8217;m going to ignore the outdated browser, I wanted to notify IE6 users of the issue rather than assume they already knew they were using an outdated browser. My solution was to create a warning message that gets inserted after the opening <code>&lt;body&gt;</code> tag via Javascript. Conditional comments ensure this message (as well as the HTML code within the body) will only appear for IE6 or previous versions. The message is styled in a very Microsoft-esque way so even the hardest-core IE6 user will be able to recognize it. <img src='http://www.adrianpelletier.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Where does the link point to? <a title="Get a better browser!" href="http://www.mozilla.com/firefox/" target="_blank">Firefox</a>, of course.</p>
<p>This site is currently using what I&#8217;ve dubbed the &#8220;Attention IE6&#8243; script so go ahead and open IE6, then visit <a href="http://www.adrianpelletier.com">www.adrianpelletier.com</a>. I&#8217;ve configured the script to work in conjunction with <a title="Visit jQuery" href="http://jquery.com/" target="_blank">jQuery</a> because that is the framework I was already using but I&#8217;m sure you could easily adapt it to fit your own needs. I&#8217;m posting a download link for anyone who cares to use this approach on their own website. The setup is very simple, just include the following conditional comment in the <code>&lt;head&gt;</code> of your document.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="css" style="font-family:monospace;">&lt;!--<span style="color: #00AA00;">&#91;</span>if lte IE <span style="color: #cc66cc;">6</span><span style="color: #00AA00;">&#93;</span><span style="color: #00AA00;">&gt;</span>
    &lt;link rel<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;stylesheet&quot;</span> type<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;text/css&quot;</span> href<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;css/ie6.css&quot;</span> media<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;screen&quot;</span> /<span style="color: #00AA00;">&gt;</span>
    &lt;script type<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> src<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;js/jquery.min.js&quot;</span><span style="color: #00AA00;">&gt;</span>&lt;/script<span style="color: #00AA00;">&gt;</span>
    &lt;script type<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> src<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;js/attention_ie6.js&quot;</span><span style="color: #00AA00;">&gt;</span>&lt;/script<span style="color: #00AA00;">&gt;</span>
&lt;!<span style="color: #00AA00;">&#91;</span>endif<span style="color: #00AA00;">&#93;</span>--<span style="color: #00AA00;">&gt;</span></pre></td></tr></table></div>

<p>Next, download the following files and place in the appropriate Javascript, CSS, and images directories:</p>
<p><a class="grey_button" title="Download the required JS and CSS files" href="http://adrianpelletier.com/sandbox/attention_ie6/attention_ie6.zip">Download</a></p>
<p>And so, farewell to IE6. I cannot say that I will miss you.</p>
<p><strong>Update 05/31/2009:</strong> I want to emphasize that this experiment is not a fix-it-all solution by any means. As stated above, a large majority of modern websites would have no problems dropping support IE6. For example, this site currently receives around 3% of users on IE6 and that number continues to drop. That&#8217;s not a large enough audience to worry about, in my opinion. There are, however, still specific scenario&#8217;s where IE6 maintains a much higher user percentage (i.e. corporate businesses that place restrictions on browser updates). In those cases, I do believe IE6 should be included in development testing.</p>
<p>I also do not advocate blocking or punishing IE6 users. My intentions with the above approach were to 1) inform the user that they are using outdated technology and 2) warn that the site may look as it should. However, I have not restricted the user&#8217;s access to the site&#8217;s content and would never recommend doing so.</p>
<p>I don&#8217;t consider this article to be the final answer, not by a long shot. However, I would hope that ideas such as these will at least strike up conversations and thoughts about advancing web development and what the next step should be. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.adrianpelletier.com/2009/02/16/how-i-chose-to-say-farewell-to-ie6/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>New Year, New Job, New Site</title>
		<link>http://www.adrianpelletier.com/2009/02/15/new-year-new-job-new-site/</link>
		<comments>http://www.adrianpelletier.com/2009/02/15/new-year-new-job-new-site/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 01:27:23 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[Jobs and Freelance]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://adrianpelletier.com/?p=708</guid>
		<description><![CDATA[The start of 2009 has already brought many changes. For starters, I am no longer full-time with Hatchling Studios and now work independently through Build Interactive (website still in progress). Working for myself has been a long time dream of mine and I&#8217;m ecstatic with how well the transition has been so far. While the [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">T</span>he start of 2009 has already brought many changes. For starters, I am no longer full-time with <a title="Visit Hatchling" href="http://hatchling.com/" target="_blank">Hatchling Studios</a> and now work independently through <a title="Visit Build Interactive, LLC" href="http://www.buildinteractive.com" target="_blank">Build Interactive</a> (website still in progress). Working for myself has been a long time dream of mine and I&#8217;m ecstatic with how well the transition has been so far. While the state of the economy continues to trim jobs all over the country, the amount of available work for freelancers and small studios has skyrocketed, from what I&#8217;ve seen. Larger companies are more often choosing to outsource rather than continue paying for premium office space, equipment, employee health care, vacation time, and all the other expenses of running a company. I&#8217;ve taken this opportunity to really focus on lining up great projects and have been involved with some high-end, large-scale websites that I look forward to announcing on this site in the near future.</p>
<p>This year also marks the retirement of Shifting Creations, the previous incarnation of my online portfolio. Shifting Creations was the first site I ever developed and underwent several redesigns during its four year lifetime. One of the difficulties I eventually ran into was separating business from personal and the site was often conflicted between the two. The obvious solution was to create two sites: one strictly for business while the other remains dedicated to my writings and other biographical information. So far, the change has been well received.</p>
<p>A few notes about the process for creating this new portfolio site: I decided on WordPress as the CMS and chose to have the blog be the main focus. The <a title="View the resume of Adrian Pelletier" href="http://adrianpelletier.com/resume/" target="_self">Résumé</a> page is a new addition, something Shifting Creations always lacked. This was also one of the few sites where I started building the page structures in HTML/CSS prior to finishing the designs in Photoshop because I knew exactly how I wanted the grid and certain elements to be laid out. It was an interesting experiment but I think the final design touches ultimately took longer to finish by developing this way. The actual coding was handled in <a title="Visit the Coda website to download your own copy" href="http://www.panic.com/coda/" target="_blank">Coda</a>, my new favorite text editor (more info regarding this app and why I chose a Mac coming soon). <a title="Go buy Mint!" href="http://haveamint.com" target="_blank">Mint</a> takes care of the stats and, even with Google&#8217;s decent free alternative, I still believe this is the way to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adrianpelletier.com/2009/02/15/new-year-new-job-new-site/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Type Set Featured on Smashing Magazine</title>
		<link>http://www.adrianpelletier.com/2008/12/11/css-type-set-featured-on-smashing-magazine/</link>
		<comments>http://www.adrianpelletier.com/2008/12/11/css-type-set-featured-on-smashing-magazine/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 16:12:19 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://shiftingcreations.com/blog/?p=188</guid>
		<description><![CDATA[Cool!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.smashingmagazine.com/2008/12/09/50-really-useful-css-tools/">Cool!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adrianpelletier.com/2008/12/11/css-type-set-featured-on-smashing-magazine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Best Seat in the House</title>
		<link>http://www.adrianpelletier.com/2008/10/14/best-seat-in-the-house/</link>
		<comments>http://www.adrianpelletier.com/2008/10/14/best-seat-in-the-house/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 02:25:42 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://shiftingcreations.com/blog/?p=179</guid>
		<description><![CDATA[
With the topic of bean bags highlighting a number of my daily feeds, I sent the fine folks at Sumo a friendly e-mail with my curiosities. Wouldn&#8217;t you know, shortly after, a charcoal green Omni showed up at work. Being the guy who always receives too many packages at the office, it was comical to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-thumbnail wp-image-450" title="sumo" src="http://adrianpelletier.com/wp-content/uploads/2008/10/sumo-438x150.jpg" alt="sumo" width="438" height="150" /></p>
<p><span class="drop_cap">W</span>ith the topic of bean bags highlighting a number of my daily feeds, I sent the fine folks at <a href="http://sumolounge.com">Sumo</a> a friendly e-mail with my curiosities. Wouldn&#8217;t you know, shortly after, a charcoal green <a href="http://sumolounge.com/omni.shtml">Omni</a> showed up at work. Being the guy who always receives too many packages at the office, it was comical to see the near head-height shipment towering beside my desk.</p>
<p>Without previously knowing about Sumo&#8217;s products, I was both surprised and impressed to see the quality material of the Omni upon opening the package. This isn&#8217;t the cotton twill you remember from 3rd grade; I&#8217;m talking about a thick, robust nylon covering that remains clean and comfortable (although you should check out other available Sumo styles if you&#8217;re looking for a different feel). In less than a week, the Omni has dutiful served as front row movie seat, laptop workstation, and bed to the fattest tabby cat in New England.</p>
<p>The Omni is a great addition to our home office. If I was still in college, I would probably ditch my undersized bunk bed for anything Sumo.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adrianpelletier.com/2008/10/14/best-seat-in-the-house/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>(mt) Redesigns</title>
		<link>http://www.adrianpelletier.com/2008/10/13/mt-redesigns/</link>
		<comments>http://www.adrianpelletier.com/2008/10/13/mt-redesigns/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 16:00:06 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://shiftingcreations.com/blog/?p=177</guid>
		<description><![CDATA[Nicely Done. I wonder if updates to the Account Center will be next.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://mediatemple.net">Nicely Done.</a> I wonder if updates to the Account Center will be next.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adrianpelletier.com/2008/10/13/mt-redesigns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
