<?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>CopperBot Media</title>
	<atom:link href="http://www.copperbot.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.copperbot.net</link>
	<description>Web Design and Illustration portfolio for Jay Darnell</description>
	<lastBuildDate>Tue, 07 Aug 2012 19:10: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>Follow Your Curiosity T-Shirt Design</title>
		<link>http://www.copperbot.net/follow-your-curiosity-t-shirt-design/</link>
		<comments>http://www.copperbot.net/follow-your-curiosity-t-shirt-design/#comments</comments>
		<pubDate>Tue, 07 Aug 2012 19:07:44 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[curiosity]]></category>
		<category><![CDATA[JPL]]></category>
		<category><![CDATA[mars]]></category>
		<category><![CDATA[merch]]></category>
		<category><![CDATA[NASA]]></category>
		<category><![CDATA[redbubble]]></category>
		<category><![CDATA[rover]]></category>
		<category><![CDATA[tshirt]]></category>

		<guid isPermaLink="false">http://www.copperbot.net/?p=334</guid>
		<description><![CDATA[It is a massive understatement to say that I've been really bad at updating this site. I've been far too busy over the last couple years to make regular, or any, updates apparently. I hope to change that with a site redesign currently in the works as I prepare to take a new approach to this business in 2013. In the meantime I FINALLY have a T-Shirt Design up for sale over at RedBubble. ]]></description>
			<content:encoded><![CDATA[<p>It is a massive understatement to say that I&#8217;ve been really bad at updating this site. I&#8217;ve been far too busy over the last couple years to make regular, or any, updates apparently. I hope to change that with a site redesign currently in the works as I prepare to take a new approach to this business in 2013. In the meantime I FINALLY have a T-Shirt Design up for sale over at RedBubble. </p>
<p>For those of you who are fans of science, especially space, I&#8217;ve created a T-Shirt commemorating the successful touchdown of the Curiosity Mars Rover. I hosted a touchdown party at my place this year and it was a really exciting event to watch unfold. Granted I&#8217;m a space geek so I&#8217;m biased. So if space is love Mars, robots and T-shirts this one is for you.</p>
<p><a href="http://www.redbubble.com/people/copperbot/works/9200818-follow-your-curiosity" target="_blank">Follow Your Curiosity T-Shirt &#8211; RedBubble</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.copperbot.net/follow-your-curiosity-t-shirt-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Copyright Code</title>
		<link>http://www.copperbot.net/dynamic-copyright-code/</link>
		<comments>http://www.copperbot.net/dynamic-copyright-code/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 18:09:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.copperbot.net/?p=283</guid>
		<description><![CDATA[<p>Nowadays most, if not all, websites contain a small copyright blurb in their site footer. Take a look at the bottom of this site and you'll see the text: "Copyright &#169; 2009-2010 CopperBot Media" as an example. Even if you're fairly new to web design you're probably already savvy enough to know the ASCII character code for the copyright symbol and you might be thinking, "Creating a copyright blurb is pretty easy. Where are you going with this?" The problem with static copyright blurbs created in HTML is that they become obsolete at the end of the year. The purpose of this post is to provide you with a simple dynamic alternative (using php) that will update automatically and keep your copyright blurbs up to date.</p>]]></description>
			<content:encoded><![CDATA[<p>Nowadays most, if not all, websites contain a small copyright blurb in their site footer. Take a look at the bottom of this site and you&#8217;ll see the text: &#8220;Copyright &copy; 2009-2010 CopperBot Media&#8221; as an example. Even if you&#8217;re fairly new to web design you&#8217;re probably already savvy enough to know the ASCII character code for the copyright symbol and you might be thinking, &#8220;Creating a copyright blurb is pretty easy. Where are you going with this?&#8221; The problem with static copyright blurbs created in HTML is that they become obsolete at the end of the year. The purpose of this post is to provide you with a simple dynamic alternative (using php) that will update automatically and keep your copyright blurbs up to date.</p>
<h3>Code Snippet</h3>
<p>To begin simply copy and paste the code below into the footer of your website.</p>
<p><em>Note: You&#8217;ll need to remove the space in the line &#8220;< ?php". My code format plugin is misbehaving.</em></p>
<pre class="brush: php">&lt;span&gt;
&amp;copy;
&lt; ?php
    ini_set(&#039;date.timezone&#039;, &#039;America/Chicago&#039;);
    $startYear = 2010;
    $thisYear = date(&#039;Y&#039;);
    if ($startYear == $thisYear) {
        echo $startYear;
    }
    else {
        echo &quot;{$startYear}-{$thisYear}&quot;;
    }
?&gt;
Website Design, Development and Search Engine Optimization (SEO) by
&lt;a href=&quot;http://www.yourdomain.com&quot; class=&quot;_blank&quot;&gt;Your Domain Name&lt;/a&gt;
&lt;/span&gt;</pre>
<h3>Customize the Code for Your Site</h3>
<p>To customize the code for your site there are a couple items you&#8217;ll need to change:</p>
<ol>
<li>First off you&#8217;ll need to change the value for the $startYear to the current year. For example: If you were building out a site in 2011 the line would read $startYear = 2011; (Be sure you include the ; mark at the end of the line or the script will break)</li>
<li>The next thing to change is the timezone. Using this link: (<a href="http://www.php.net/manual/en/timezones.america.php" target="_blank">Valid American Timezones</a>) find the appropriate timezone for your client. In the code example I provided above my client was located in Dallas, Texas so I used the timezone &#8216;America/Chicago&#8217;. (Chicago and Dallas are both on Central Time)</li>
</ol>
<p>The most important thing to change is the $startYear. Changing the timezone isn&#8217;t as important since all of our clients are located in North America anyhow. Worst case scenario the script will update the copyright date for the site a couple hours early or late (depending on where the client is located) come New Years.</p>
<h3>Your .htaccess File</h3>
<p><em>(Only necessary for static sites)</em></p>
<p>When a web page is accessed, the server checks the extension to know how to handle the page.  Generally speaking if it sees a .htm or .html file, it sends it right to the browser because it doesn&#8217;t have anything to process on the server.  If it sees a .php extension (or .shtml, or .asp, etc), it knows that it needs to execute the appropriate code before passing it along to the browser.</p>
<p>Because page for static sites end in .htm or .html we need to take one final step to be sure the php code is processed and the copyright date displayed as intended. In dreamweaver, or the text editor of your choice, create a new blank file. Paste the following line of code into the file you just created:</p>
<p><em>AddType application/x-httpd-php .html</em></p>
<p>Save this file with the name .htaccess</p>
<p><em>If for whatever reason a .htaccess file already exists then simply add this line of code at the tail end of the existing .htaccess file.</em></p>
<p>Note: This will create a hidden text file. You may need to adjust your settings for your operating system, text editor and FTP program in order to see the file once it is created. I&#8217;ve included some brief guides for Windows XP, Dreamweaver, &#038; Filezilla below:</p>
<h3>Hidden Files in Dreamweaver</h3>
<ol>
<li>On the &#8220;Files&#8221; tab (the tab where the files and folders are displayed for your site) there is a little button that looks like a bullet list.</li>
<li>Click this button and select the menu option View -> Show Hidden Files</li>
</ol>
<h3>Hidden Files in Windows Explorer (XP)</h3>
<ol>
<li>Select the menu option Tools -> Folder Options</li>
<li>When the Folder Options Window is displayed select the &#8220;View&#8221; tab.</li>
<li>Scroll through the Advanced Settings until you find the option to &#8220;Show Hidden Files and Folders&#8221; Check this and hit Apply.</li>
</ol>
<h3>Hidden Files in Filezilla</h3>
<ol>
<li>Select the menu option Server -> Force Showing Hidden Files</li>
</ol>
<p>Note: Be sure to upload the .htaccess file with the rest of your site and you should be good to go. If you have any problems implementing this please let me know by leaving a comment and I&#8217;ll be happy to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.copperbot.net/dynamic-copyright-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web Design Gallery Updated</title>
		<link>http://www.copperbot.net/webdesign-gallery-updated/</link>
		<comments>http://www.copperbot.net/webdesign-gallery-updated/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 20:19:29 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[page1solutions]]></category>

		<guid isPermaLink="false">http://www.copperbot.net/?p=274</guid>
		<description><![CDATA[It's March! Valentines, St. Patty's &#38; Ground Hog Day have all come and gone and this is my first update since early January. My hopes and dreams of updating the site more frequently have been officially dashed but I have been absent with good reason! Today I am happy to finally update my <a href="http://www.copperbot.net/work/web-design/">Web Design Gallery</a> with three new sites. Of these sites only one has officially "gone live" but the other two should be finished and online within the coming month. Please take a moment to view the fruits of my labor and let me know what you think. Feedback is always appreciated! Thank you kindly for stopping by!]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s March! Valentines, St. Patty&#8217;s &amp; Ground Hog Day have all come and gone and this is my first update since early January. My hopes and dreams of updating the site more frequently have been officially dashed but I have been absent with good reason! Today I am happy to finally update my <a href="http://www.copperbot.net/work/web-design/">Web Design Gallery</a> with three new sites. Of these sites only one has officially &#8220;gone live&#8221; but the other two should be finished and online within the coming month. Please take a moment to view the fruits of my labor and let me know what you think. Feedback is always appreciated! Thank you kindly for stopping by!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.copperbot.net/webdesign-gallery-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010 &#8211; Year of the Robot</title>
		<link>http://www.copperbot.net/2010-year-of-the-robot/</link>
		<comments>http://www.copperbot.net/2010-year-of-the-robot/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 08:09:05 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[concepts]]></category>
		<category><![CDATA[gnads]]></category>
		<category><![CDATA[webcomic]]></category>

		<guid isPermaLink="false">http://www.copperbot.net/?p=260</guid>
		<description><![CDATA[Well folks, another decade has come and gone. Where were you when you rang in the new year? I was venturing through the neighborhoods surrounding downtown Denver with my dear wife and a small cluster of friends in search of the perfect party. I do believe we found not one, not two but three... complete with cans of cool Pabst Blue Ribbon beer and scores of people dancing to hip-hop like there was no tomorrow. (In one particular house I was mildly concerned about the structural integrity of the floor but it held out long enough to ring in the new decade) Now don't go bashing PBR friends! I know it's a cheap beer that peaked in popularity well before I was born. That is precisely why I enjoy drinking it from time to time... and when it's free... well you'd have to be crazy to turn away free beer.]]></description>
			<content:encoded><![CDATA[<p>Well folks, another decade has come and gone. Where were you when you rang in the new year? I was venturing through the neighborhoods surrounding downtown Denver with my dear wife and a small cluster of friends in search of the perfect party. I do believe we found not one, not two but three&#8230; complete with cans of cool Pabst Blue Ribbon beer and scores of people dancing to hip-hop like there was no tomorrow. (In one particular house I was mildly concerned about the structural integrity of the floor but it held out long enough to ring in the new decade) Now don&#8217;t go bashing PBR friends! I know it&#8217;s a cheap beer that peaked in popularity well before I was born. That is precisely why I enjoy drinking it from time to time&#8230; and when it&#8217;s free&#8230; well you&#8217;d have to be crazy to turn away free beer.</p>
<p>Anyhow, I do apologize for not having any updates to share over the last few months. Truth be told I would have loved to post in my blog here but time wouldn&#8217;t allow for it. With the coming of 2010 I will put forth an effort to post more often even if the updates are short and sweet. I appreciate each and every one of you taking the time to visit my site and the last thing I want to do is neglect you for it. Please allow me a moment to fill you in on what you&#8217;ve missed since last October.</p>
<p><strong>2009 Wrap-Up</strong></p>
<ul>
<li>I snagged a killer illustration job from Bob Hazlett over at <a href="http://www.onehalfamazing.com" target="_blank">One Half Amazing</a>. You see, Bob had this genius idea to take his existing resume and transform it into a comic book and after I showed him just how BAM! POW! SHAZZAM! awesome I was he was sold! Have a look at the <a href="http://onehalfamazing.com/resume/" target="_blank">finished product</a>.</li>
<li>In addition to using the artwork I created to make a comic book style resume Bob also went the extra mile to create his own iPhone App (also featuring my illustrations). I don&#8217;t know about the rest of you but I think this is totally rad. <a href="http://bit.ly/8lDyBE" target="_blank">Check it out</a>! (Note: You&#8217;ll need iTunes installed to open this link)</li>
<li>In late November I started a new full-time job as a Web Designer for a company out in Golden Colorado. Upon my arrival on my first day of work I found that my training manual for this position featured He-Man &#038; The Masters of the Universe. Needless to say I was thoroughly amused!</li>
<li>In December I snagged a couple web design projects of my own and a couple of illustrations to boot! Things are going to get fairly busy around here very soon!</li>
<li>Last but not least I finally decided on a writer for my upcoming webcomic. MissDoomCookie and I will be working diligently over the next four months in hopes of having our creative collaboration ready for the public by April 1st 2010! .</li>
</ul>
<p>That said I&#8217;ll close this long overdue post with an image of one of the characters I recently designed for the project. This is merely a first draft and subject to change but here he is nonetheless. </p>
<p><strong>Archibald Blacktusk (of the Derbyshire Blacktusks)</strong></p>
<div class="aligncenter">
<a href="http://www.copperbot.net/wp-content/gallery/sketch-wip/humph_v1_copperbot.jpg" title="GNADS - Archibald Blacktusk" class="shutterset_singlepic51" >
	<img class="ngg-singlepic" src="http://www.copperbot.net/wp-content/gallery/cache/51__300x400_humph_v1_copperbot.jpg" alt="Archibald Blacktusk" title="Archibald Blacktusk" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.copperbot.net/2010-year-of-the-robot/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mr. Lazzaro &#8211; Done and Dusted!</title>
		<link>http://www.copperbot.net/mr-lazzaro-done-and-dusted/</link>
		<comments>http://www.copperbot.net/mr-lazzaro-done-and-dusted/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 06:58:43 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[commission finished]]></category>
		<category><![CDATA[mr lazzaro]]></category>

		<guid isPermaLink="false">http://www.copperbot.net/?p=250</guid>
		<description><![CDATA[Good morning and Happy Friday! It is currently 12:33 am here in the Copper Factory and my optics have started to fade out so you'll have to excuse me for being so brief with this update. I've just finished uploading the final draft for Mr. Lazzaro and I would love to know what you guys think. The coloring style for this one is a first for me. Like some of my other images I used a layered smudge tool based painting method but before calling it quits I decided to give the entire image a bit of a wash. I washed all the layers with a slight golden hue in an attempt to pull everything together and hopefully end up with a somewhat "dream-like" look. Overall I think it turned out fairly well!]]></description>
			<content:encoded><![CDATA[<p>Good morning and Happy Friday! It is currently 12:33 am here in the Copper Factory and my optics have started to fade out so you&#8217;ll have to excuse me for being so brief with this update. I&#8217;ve just finished uploading the final draft for Mr. Lazzaro and I would love to know what you guys think. The coloring style for this one is a first for me. Like some of my other images I used a layered smudge tool based painting method but before calling it quits I decided to give the entire image a bit of a wash. I washed all the layers with a slight golden hue in an attempt to pull everything together and hopefully end up with a somewhat &#8220;dream-like&#8221; look. Overall I think it turned out fairly well!</p>
<div class="aligncenter">
<a href="http://www.copperbot.net/wp-content/gallery/full-color/mr_lazzaro.png" title="Mr. Lazzaro" class="shutterset_singlepic49" >
	<img class="ngg-singlepic" src="http://www.copperbot.net/wp-content/gallery/cache/49__300x400_mr_lazzaro.png" alt="Mr. Lazzaro" title="Mr. Lazzaro" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.copperbot.net/mr-lazzaro-done-and-dusted/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Inking and Plotting</title>
		<link>http://www.copperbot.net/inking-and-plotting/</link>
		<comments>http://www.copperbot.net/inking-and-plotting/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 22:40:18 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[commission update]]></category>
		<category><![CDATA[mr lazzaro]]></category>

		<guid isPermaLink="false">http://www.copperbot.net/?p=244</guid>
		<description><![CDATA[Hello again ladies and gentlemen! Another small art update for you this afternoon. Progress on Mr. Lazzaro is coming along nicely though a bit slower than I would like. There have been lots of distractions this week. Between Nessi being home sick most of the week, reading the scores of submissions I received for potential writers for my upcoming webcomic and trying to get our long overdue taxes for 2008 finished ( yeah don't get me started... the only thing I hate more than taxes is having to file them on an extension ) I've struggled to focus this week. Distractions aside I have made some progress worth sharing.]]></description>
			<content:encoded><![CDATA[<p>Hello again ladies and gentlemen! Another small art update for you this afternoon. Progress on Mr. Lazzaro is coming along nicely though a bit slower than I would like. There have been lots of distractions this week. Between Nessi being home sick most of the week, reading the scores of submissions I received for potential writers for my upcoming web comic and trying to get our long overdue taxes for 2008 finished ( yeah don&#8217;t get me started&#8230; the only thing I hate more than taxes is having to file them on an extension ) I&#8217;ve struggled to focus this week. Distractions aside I have made some progress worth sharing.</p>
<div class="aligncenter">
<a href="http://www.copperbot.net/wp-content/gallery/commission-updates/photoshopscreensnapz007.jpg" title="" class="shutterset_singlepic47" >
	<img class="ngg-singlepic" src="http://www.copperbot.net/wp-content/gallery/cache/47__300x169_photoshopscreensnapz007.jpg" alt="Mr. Lazzaro (Progress 2)" title="Mr. Lazzaro (Progress 2)" />
</a>
</div>
<p>Overall I&#8217;m pretty pleased with the way this image is coming together. I&#8217;ll be submitting this progress report to the real Mr. Lazzaro this evening to see if there are any glaring issues he would like to address before I move forward and begin applying color. As of the other day I had his wife&#8217;s seal of approval so hopefully that will remain intact after their review! </p>
<p>Looking forward I now have two new web projects to begin brainstorming for in the coming weeks. The first is for a wedding, while the second is for a rather &#8220;hush hush&#8221; game related community website. We&#8217;re still bottom of the 1st inning here so anything goes at this point but hopefully both of these projects will pan out nicely and I&#8217;ll have a couple of completed web projects to add to my web design gallery in the very near future.</p>
<p>Last but not least, I made a series of updates yesterday for my visitors using Internet Explorer. Things should look slightly less wonky now and you should actually have the ability to send me messages via the contact form now. So hey, while we&#8217;re on that topic why not pop over and drop me a message now. Alternatively you can leave me a comment right here! I&#8217;d love to hear from my viewers! In the meantime, have a pleasant weekend wherever you may be. I&#8217;ll see you monday.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.copperbot.net/inking-and-plotting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mr. Lazzaro</title>
		<link>http://www.copperbot.net/mr-lazzaro/</link>
		<comments>http://www.copperbot.net/mr-lazzaro/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 20:12:23 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[commission update]]></category>
		<category><![CDATA[mr lazzaro]]></category>

		<guid isPermaLink="false">http://www.copperbot.net/?p=228</guid>
		<description><![CDATA[Hello again friends and good day to you wherever you are.  I'm back from my post site launch weekend break with a small art update for you today. There is currently a small stack of art projects on my desk here so, assuming I don't fall ill with the dreaded flu which is now making the rounds in Colorado, I should have several more of these to share in the coming weeks. Today I give you a first look at a portrait I've named: "Mr. Lazzaro", an image that portrays my colleague and good friend Chris Lazarro. ]]></description>
			<content:encoded><![CDATA[<p>Hello again friends and good day to you wherever you are.  I&#8217;m back from my post site launch weekend break with a small art update for you today. There is currently a small stack of art projects on my desk here so, assuming I don&#8217;t fall ill with the dreaded flu which is now making the rounds in Colorado, I should have several more of these to share in the coming weeks. Today I give you a first look at a portrait I&#8217;ve named: &#8220;Mr. Lazzaro&#8221;, an image that portrays my colleague and good friend Chris Lazarro. </p>
<div class="aligncenter">
<a href="http://www.copperbot.net/wp-content/gallery/commission-updates/photoshopscreensnapz006.jpg" title="A first look at Mr. Lazzaro" class="shutterset_singlepic46" >
	<img class="ngg-singlepic" src="http://www.copperbot.net/wp-content/gallery/cache/46__300x169_photoshopscreensnapz006.jpg" alt="Mr. Lazzaro (Progress 1)" title="Mr. Lazzaro (Progress 1)" />
</a>
</div>
<p>When asked how he wanted to be portrayed in this image Chris was unsure. He and I share the gene responsible for an insatiable thirst for knowledge which can make it hard to commit to one archetype. People with this gene are rarely satisfied with knowing how to do one type of job or skill and instead constantly find themselves in the student role as they continue to learn and grow. Chris, however, has been fortunate enough to be gifted with a natural affinity for teaching as well. I can vouch for this having taken his Introduction to VB.NET 2005 course at Drury University back in 2005. He is a skilled craftsman, master programmer, and analytical problem solver coupled with a light-hearted inner gamer, outdoorsman, husband, and good friend. With that in mind, I decided to take on his online avatar request with broad sweeping strokes by focusing most of my energy on finding a pose that communicated the core of who he is while using a few simple props to illustrate the individual parts of the whole person. Some of these props are already visible: The laptop computer, the stack of books, the crude circle on top of the books which will eventually become an apple (the fruit of knowledge). With more detail I&#8217;ll be able to hint at other aspects of his character as well. Perhaps a logo on the lid of his laptop, or his t-shirt for one of his favorite online games? Maybe I&#8217;ll add the key-chord for his sea-doo on top of the books as well and a wedding ring will most certainly be needed.</p>
<p>Well there you have it friends, my first art project update here on the new site. I hope you&#8217;ve enjoyed this post. As a side note to any IE users viewing the site: I am aware that there are a few CSS issues with IE currently. I will strive to have these fixed this week. Thank you for your patience! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.copperbot.net/mr-lazzaro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh yeah, its GO time!</title>
		<link>http://www.copperbot.net/its-go-time/</link>
		<comments>http://www.copperbot.net/its-go-time/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 20:02:47 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=218</guid>
		<description><![CDATA[Well here we are ladies and gentlemen, standing on the ledge ready to leap. Over the last few months I've poured every free moment into the creation of this new brand for my online presence. My friends and coworkers from hairyLemon down in New Zealand will likely remember how long I mulled over the options. They will likely laugh as they remember how it seemed like I would never decide on a name for the site, let alone get the to the act of actually designing it. However, here I am typing my second and last blog update before I backup the database and begin the upload process.]]></description>
			<content:encoded><![CDATA[<p>Well here we are ladies and gentlemen, standing on the ledge ready to leap. Over the last few months I&#8217;ve poured every free moment into the creation of this new brand for my online presence. My friends and coworkers from hairyLemon down in New Zealand will likely remember how long I mulled over the options. They will likely laugh as they remember how it seemed like I would never decide on a name for the site, let alone get to the act of actually designing it. However, here I am typing my second and last blog update before I backup the database and set the site live.</p>
<p>I&#8217;d like to take a moment to give a few shout outs to those who&#8217;ve helped make this site a reality. First and foremost I have to thank the man upstairs for giving me this passionate gift. Secondly, I want to thank my lovely wife Vanessa for her infinite patience and unyielding support. Thirdly, I want to thank my good friend Daniel Freitag, the quintessential German. You&#8217;re so unbelievably concise &amp; practical. I truly appreciate you saying &#8220;Jay, what are you waiting for? Stop talking about it and just do it already.&#8221; Fourthly, I want to thank Jason Peters and all my former coworkers from hairyLemon for their wonderful critiques &amp; criticisms. You guys really helped me shape this beast into something I&#8217;m proud of. I also want to thank my parents for letting me know I can do anything if I put my mind to it and my grandfather for being the first outspoken fan of my art.</p>
<p>Last but not least I want to thank each of you reading this. Thank you for taking an interest in something I love! Cheers! Lets get this show on the road!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.copperbot.net/its-go-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wordpress: My New Best Friend</title>
		<link>http://www.copperbot.net/wordpress-my-new-best-friend/</link>
		<comments>http://www.copperbot.net/wordpress-my-new-best-friend/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 18:58:20 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=135</guid>
		<description><![CDATA[Hello everyone and welcome to the CopperBot blog! Over the last few days I've been diligently working on getting the site ready for public viewing. It's been a long road getting CopperBot Media designed, cut and integrated but we're nearly there and I'm getting pretty excited! A word to the wise, don't decide to re-brand and thus redesign your website in the midst of an international move. Yes, because I love having more things on my plate than I could ever possibly hope to accomplish I decided to tackle this project just about the time my wife Vanessa and I decided it was time to move back to the United States from New Zealand. Why New Zealand in the first place? Why the move back? Those are questions to be answered at another time. What I want to talk about today is Wordpress.]]></description>
			<content:encoded><![CDATA[<p>Hello everyone and welcome to the CopperBot blog! Over the last few days I&#8217;ve been diligently working on getting the site ready for public viewing. It&#8217;s been a long road getting CopperBot Media designed, cut and integrated but we&#8217;re nearly there and I&#8217;m getting pretty excited! A word to the wise, don&#8217;t decide to re-brand and thus redesign your website in the midst of an international move. Yes, because I love having more things on my plate than I could ever possibly hope to accomplish I decided to tackle this project just about the time my wife Vanessa and I decided it was time to move back to the United States from New Zealand. Why New Zealand in the first place? Why the move back? Those are questions to be answered at another time. What I want to talk about today is Wordpress.</p>
<p>Looking around the site you may notice a few <strong>powered by Wordpress</strong> blurbs here and there. While I&#8217;m not one to put all my eggs into one basket I gotta tell ya, I&#8217;m really digging this CMS so far. Back in New Zealand while I was working for <a href="http://www.hairylemon.co.nz" target="_blank">hairyLemon</a> (yes that is the actual company name) we used Joomla! for a lot of our client web sites and another lesser known (and lesser liked) CMS that I won&#8217;t bother to name here. All in all Joomla! is pretty awesome if you ask me. It may have taken a little getting used to when I first peered under the hood and I admit to having my fair share of frustrations with it but overall I give Joomla! a gold star. I&#8217;m still working with Joomla! now that I&#8217;m stateside again and plan to continue doing so for some time.</p>
<p>Wordpress however has been phenomenally easier to setup, integrate, and customize from the starting line. I love how simple the administration area is compared to Joomla! and how easy it has been for me to find help online anytime I&#8217;ve had one of those &#8220;I wonder how you do that&#8221; moments. Now I&#8217;m not about to start a debate on Joomla! vs Wordpress here. As I said above, I&#8217;m still a Joomla! fan. I merely think for this specific site, and for some of the sites I plan on building in the coming months Wordpress will ultimately be a better fit. With time I&#8217;m sure both content management systems with find their respectable places in my heart as well as my project list. Until then, welcome to CopperBot Media. I&#8217;m extremely pleased that you&#8217;ve decided to join me for this creative ride! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.copperbot.net/wordpress-my-new-best-friend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
