<?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 &#124; WirthDesign</title>
	<atom:link href="http://wirthdesign.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://wirthdesign.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 23 Jun 2010 02:51:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Freelancer Turned Co-Worker Pt. 1</title>
		<link>http://wirthdesign.com/blog/freelancer-turned-co-worker-pt-1.html</link>
		<comments>http://wirthdesign.com/blog/freelancer-turned-co-worker-pt-1.html#comments</comments>
		<pubDate>Wed, 23 Jun 2010 02:51:19 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[My Work]]></category>
		<category><![CDATA[designing]]></category>
		<category><![CDATA[freelancing]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[teamwork]]></category>

		<guid isPermaLink="false">http://wirthdesign.com/blog/?p=130</guid>
		<description><![CDATA[As a freelancer my only source of feedback was from the client and anyone in my Twitter feed who took notice of my project. Feedback is crucial in this line of work because it's very easy to get lost in what your doing and lose sight of the big picture.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been over a month now that I&#8217;ve started my first full time position as a front end programmer/designer. Now that I&#8217;ve had a taste of working within a company I&#8217;ll share my experiences thus far.</p>
<h2>Working with a team</h2>
<p>In the past my experience working with other designers/developers has been limited. I now work directly with programmers as well as a few graphic designers from time to time. Having like minded people to bounce ideas off of has helped me think differently about how and why I do things as I&#8217;m designing.</p>
<p>As a freelancer my only source of feedback was from the client and anyone in my Twitter feed who took notice of my project. Feedback is crucial in this line of work because it&#8217;s very easy to get lost in what your doing and lose sight of the big picture.<span id="more-130"></span></p>
<h2>Designing with less restraints</h2>
<p>During my first big project with the company one of my interviewers had commented that my work was looking better than what I had in my portfolio. The reason for this is that a majority of my clients were interested in web design packages that were competitively priced.  With keeping things competitive I could only produce a limited number concepts. I&#8217;m now in an environment where I am free to conceptualize my ideas.</p>
<h2>In conclusion</h2>
<p>Making the switch from freelancer to full time employee has been a great move for me personally. It&#8217;s shown me that on my previous career path that I could not have gotten as far on my own as I have now. I feel more challenged now than I have in the past six months and I feel this is where I need to be. If I were to have chosen full time freelancer over taking a position I think I would have had to work even harder to keep from becoming stagnant. I see how important it is for freelancers to network and take on bigger fish than they&#8217;re used to.</p>
<p>I&#8217;d love to hear your comments or questions, thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://wirthdesign.com/blog/freelancer-turned-co-worker-pt-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do you code CSS?</title>
		<link>http://wirthdesign.com/blog/how-do-you-code-css.html</link>
		<comments>http://wirthdesign.com/blog/how-do-you-code-css.html#comments</comments>
		<pubDate>Wed, 27 Jan 2010 14:23:57 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[My Work]]></category>

		<guid isPermaLink="false">http://wirthdesign.com/blog/?p=108</guid>
		<description><![CDATA[Over the past year I have seen CSS coded in various ways. I started out learning what I consider to be the most common method. body { &#160;&#160;&#160;&#160;&#160;background-color: #000; &#160;&#160;&#160;&#160;&#160;color: #fff; } &#160; #container { &#160;&#160;&#160;&#160;&#160;height: auto; &#160;&#160;&#160;&#160;&#160;width: 960px; &#160;&#160;&#160;&#160;&#160;margin: 0 auto; } If using Adobe Dreamweaver&#8217;s Source Formatting it will appear like the above. [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past year I have seen CSS coded in various ways. I started out learning what I consider to be the most common method.</p>
<p><code><br />
body {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;background-color: #000;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;color: #fff;<br />
}<br />
&nbsp;<br />
#container {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;height: auto;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;width: 960px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;margin: 0 auto;<br />
}<br />
</code></p>
<p>If using Adobe Dreamweaver&#8217;s Source Formatting <span id="more-108"></span> it will appear like the above. Now when I started getting into WordPress style sheets I found that some authors would code a little different.</p>
<p><code><br />
body {background-color: #000; color: #fff;}<br />
&nbsp;<br />
#container {height: auto; width: 960px; margin: 0 auto;}<br />
</code></p>
<p>This code writing style is a result of the WordPress coding environment. Since your probably at some time or another going to be modifying your style sheet through the WordPress Admin you won&#8217;t be able to use the Tab key in order to space your properties below your selectors. Even though this is a coding style that is a result of problem solving around the Tab key function, it also has some things I find attractive about it. This technique significantly reduces your lines of code. Since the code is being entered in a horizontal orientation you also benefit from heavy vertical scrolling. The first example I find much easier to scan through to find the desired selector.</p>
<p>The last thing I want to touch on is order of the properties. When I first start writing a style sheet I try to organize them but I sometimes end up breaking that order. I always try to keep related things together like dimensions, visual elements, sorting functions etc. In some of the books I read they recommend having multiple style sheets like one for appearances, fonts etc but I just don&#8217;t find that to be very efficient sometimes.</p>
<p>In conclusion I use a combination of these two methods. If a selector only has one property below it for example&#8230;</p>
<p><code>p {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;padding: 10px 5px;<br />
}</code></p>
<p>I will sometimes make it one line like this</p>
<p><code>p {padding: 10px 5px;}</code></p>
<p>There is no confusion for me to find that property because it&#8217;s singular. Only thing I don&#8217;t like about making it one line is that it sticks out and is not consistent but I do like that it takes up less space. I am pretty particular and always striving to do things that make the most sense. Of course it&#8217;s going to work either way but I like to have a higher standard and good reason for doing anything.</p>
<p>I&#8217;d love to hear your thoughts on this, please leave a comment if you have something to contribute. Do you use the first or second example?</p>
]]></content:encoded>
			<wfw:commentRss>http://wirthdesign.com/blog/how-do-you-code-css.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Growing Pains of a Pet Project</title>
		<link>http://wirthdesign.com/blog/growing-pains-of-a-pet-project.html</link>
		<comments>http://wirthdesign.com/blog/growing-pains-of-a-pet-project.html#comments</comments>
		<pubDate>Sun, 24 Jan 2010 22:10:53 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[My Work]]></category>

		<guid isPermaLink="false">http://wirthdesign.com/blog/?p=98</guid>
		<description><![CDATA[Some of you may know I also run a comic blog called PissMeOffAnd.com. It&#8217;s been a lot of fun so far and the greatest thing about it is that I am learning a lot in the process. One of the hardest tasks so far has been answering the question of just who my target audience [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you may know I also run a comic blog called PissMeOffAnd.com. It&#8217;s been a lot of fun so far and the greatest thing about it is that I am learning a lot in the process. One of the hardest tasks so far has been answering the question of just who my target audience is. Are people over 30 going to find this funny or find it pointless? It&#8217;s too early to tell but to my partial surprise there a few people so far who are interested in these comics.</p>
<p>The site is built on a WordPress install and I modified a free theme called ComicPress to my likings. Now that I&#8217;ve had a few months to see how this is going to shape out <span id="more-98"></span>I&#8217;ve come to the conclusion that this blog style format is really not the best solution. Since these comics are not sensitive to time I can use them out of order without it making a difference. Recycling content is going to be a key factor because those unfamiliar with the site aren&#8217;t going to dig three pages back unless they&#8217;re really seeking it out.</p>
<p>So after finding some sources of inspiration I have created a new concept which I am hoping to improve upon some of the things I have mentioned. We (The other authors and myself) have also talked about expanding the site to include videos, store front and possibly a blog. So below you can see that we have the current design (top) and the new concept design (bottom).</p>
<p><a href="http://wirthdesign.com/blog/wp-content/uploads/2010/01/PMOA-layout-current.jpg"><img class="alignnone size-medium wp-image-99" title="PMOA-layout-current" src="http://wirthdesign.com/blog/wp-content/uploads/2010/01/PMOA-layout-current-300x225.jpg" alt="" width="300" height="225" /></a><a href="http://wirthdesign.com/blog/wp-content/uploads/2010/01/PMOA-layout-2.jpg"></a></p>
<p><a href="http://wirthdesign.com/blog/wp-content/uploads/2010/01/PMOA-layout-21.jpg"><img class="alignnone size-medium wp-image-103" title="PMOA-layout-2" src="http://wirthdesign.com/blog/wp-content/uploads/2010/01/PMOA-layout-21-300x225.jpg" alt="" width="300" height="225" /></a></p>
<h3>Header</h3>
<p>The old design is dark and doesn&#8217;t reproduce well between monitor settings, so in this new design I made improvements to the look and play of the navigation. The site will grow by two pages and I think this works well.</p>
<h3>Content Area</h3>
<p>One thing I&#8217;m not happy with in this new design is that the comics are roughly 40 pixels smaller in width. Not a huge loss but a reduction is a reduction. The content to the right of the comic is going to go through some changes as I&#8217;m not happy with it at the moment. I&#8217;ve thought about putting the comic title above everything else and running the width of the content area. I do like the new look of the highly visible social media button which will illuminate into their respective colors upon hover. The images below the main comic will be a gallery of old comics that scroll to the right.</p>
<h3>Footer</h3>
<p>The footer will be the new home of the twitter feed. Some other ideas could be to post a user submited #pissmeoffand tag line and possibly have the users vote on it they like it or and maybe award the winner with a prize. The new blog post section at the moment works for me and helps get the new content up front.</p>
<p>So in conclusion I think this new design is going perform better and improve the look of the site. If you have any comments or suggestions I would love to hear them. I also might be creating a VLog of this process because I&#8217;d really like to share more of what I am doing for others to benefit from. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://wirthdesign.com/blog/growing-pains-of-a-pet-project.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review: WordPress FollowMe Plugin</title>
		<link>http://wirthdesign.com/blog/review-wordpress-followme-plugin.html</link>
		<comments>http://wirthdesign.com/blog/review-wordpress-followme-plugin.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 13:40:58 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[followme]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wpburn]]></category>

		<guid isPermaLink="false">http://wirthdesign.com/blog/?p=86</guid>
		<description><![CDATA[Name: WP FollowMe Author: WPBurn Version: 2.04 Click here for a screen shot (Opens in new tab) Description: WP FollowMe is a wordpress plugin that allows you to add a twitter &#8220;Follow me&#8221; badge on your wordpress blog. What is nice? This plugin is very easy to install. Setup is as simple as going to [...]]]></description>
			<content:encoded><![CDATA[<p>Name: WP FollowMe<br />
Author: WPBurn<br />
Version: 2.04</p>
<p><a href="http://wirthdesign.com/blog/wp-content/uploads/2010/01/wp-followme.jpg" target="_blank">Click here for a screen shot</a> (Opens in new tab)</p>
<h3>Description:</h3>
<p>WP FollowMe is a wordpress plugin that allows you to add a twitter &#8220;Follow me&#8221; badge on your wordpress blog.</p>
<h3><strong>What is nice?</strong></h3>
<p>This plugin is very easy to install. Setup is as simple as going to the plugins setting and entering the path to your Twitter URL. You have a decent amount of icons to chose from though at this moment it doesn&#8217;t appear you can use your own. Changing the color is simple by using Hexadecimal code under settings. Your also give the option of size and position on the page.</p>
<h3>What is NOT so nice?</h3>
<p>I don&#8217;t agree that what you have in the end is a &#8220;badge&#8221; on your page. It&#8217;s much more a tab that is fixed to the side of the browser. A rollover effect would help to give it more user feedback. Seeing that it already uses CSS, a rollover effect would be utilized quite easily.</p>
<h3><strong>In conclusion</strong></h3>
<p>Because this plugin is so easy to install and setup I would suggest it to anyone with limited CSS knowledge looking to achieve this look. This author is a young freelance designer and I think this plugin will get better as they continue to develop. I installed this plugin hoping it would allow you to display your followers as well.</p>
<h3>My Rating: 2.5/5</h3>
<p>Plugin Homepage: <a href="http://wpburn.com/wordpress-plugins/wp-followme-plugin" target="_blank">http://wpburn.com/wordpress-plugins/wp-followme-plugin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wirthdesign.com/blog/review-wordpress-followme-plugin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tired of being the gray man?</title>
		<link>http://wirthdesign.com/blog/tired-of-being-the-gray-man.html</link>
		<comments>http://wirthdesign.com/blog/tired-of-being-the-gray-man.html#comments</comments>
		<pubDate>Tue, 15 Dec 2009 15:58:14 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://wirthdesign.com/blog/?p=76</guid>
		<description><![CDATA[I&#8217;m pretty sure I can say that at some point you have seen or even been &#8220;the gray man&#8221; when posting a comment on a blog. I&#8217;ve been one on my own blog (sad) and I want to share with you how you can fix this very easily. If you see this &#8220;gray man&#8221; when [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m pretty sure I can say that at some point you have seen or even been &#8220;the gray man&#8221; when posting a comment on a blog. I&#8217;ve been one on my own blog (sad) and I want to share with you how you can fix this very easily. If you see this &#8220;gray man&#8221; when you leave someone a comment (see beow) then you don&#8217;t have an image uploaded to Gravatar.com (Instructions below)</p>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/12/comment-closeup.jpg" alt="comment-closeup" title="comment-closeup" width="590" height="305" class="alignleft size-full wp-image-77" /></p>
<p><span id="more-76"></span></p>
<p>Now you can see &#8220;Jen&#8221; has a nice personal image of herself that is associated with the email she used to leave a comment with. A well chosen image will add a bit of depth to a comment and give you more of a human element. Below is my comment I left for Jen, see the difference? My comment looks cold and generic, like the persona you would associate with spam or some other faceless brand. Below I will show you how to fix this by updating your &#8220;Gravatar&#8221;.</p>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/12/comment-closeup-2.jpg" alt="comment-closeup-2" title="comment-closeup-2" width="590" height="305" class="alignleft size-full wp-image-79" /></p>
<h2>What the heck is a Gravatar?</h2>
<p>Good question, I found myself asking the same thing. If you use online forums or certain social media sites then you may already be familiar with an Avatar. An Avatar is an image that you (most times) are allowed to chose that is associated with your account. If you use multiple login accounts for Windows XP or Leopard then you might be familiar with these and not even know it. What makes a Gravatar special is that it allows you to associate an email address with an image that is globally recognized. So no matter whose blogging website you are commenting on you will see the image you setup at Gravatar.com</p>
<h2>Steps to fix your &#8220;gray man&#8221; blues</h2>
<p>1. Go to Gravatar.com in your browser<br />
2. Sign up/Login (If your not already a WordPress user)<br />
3. Click &#8220;Get your Gravatar today&#8221;<br />
4. Use &#8220;Select an email address (below) to modify or add a new email&#8221;<br />
5. Upload your image</p>
<p>Now no matter whose website you leave a comment with, your image you uploaded will appear next to your comment (Assuming the blog has comment images enabled).</p>
]]></content:encoded>
			<wfw:commentRss>http://wirthdesign.com/blog/tired-of-being-the-gray-man.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>If your short we don&#8217;t want your blood</title>
		<link>http://wirthdesign.com/blog/if-your-short-we-dont-want-your-blood.html</link>
		<comments>http://wirthdesign.com/blog/if-your-short-we-dont-want-your-blood.html#comments</comments>
		<pubDate>Tue, 15 Dec 2009 14:24:39 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[blood]]></category>
		<category><![CDATA[bruising]]></category>
		<category><![CDATA[donating]]></category>
		<category><![CDATA[donation]]></category>
		<category><![CDATA[fainting]]></category>
		<category><![CDATA[needles]]></category>
		<category><![CDATA[Red cross]]></category>

		<guid isPermaLink="false">http://wirthdesign.com/blog/?p=67</guid>
		<description><![CDATA[Decided today to look up my blood type out of curiosity and came across the American Red Cross website and while nosing around I noticed that they had a height requirement for donating blood. I thought this was pretty silly until I did a little research. I found it even more comical that they would [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/12/american-red-cross.jpg" alt="american-red-cross" title="american-red-cross" width="590" height="443" class="alignleft size-full wp-image-68" /></p>
<p>Decided today to look up my blood type out of curiosity and came across the American Red Cross website and while nosing around I noticed that they had a height requirement for donating blood. I thought this was pretty silly until I did a little research. </p>
<p><span id="more-67"></span></p>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/12/american-red-cross-closeup.jpg" alt="american-red-cross-closeup" title="american-red-cross-closeup" width="590" height="443" class="alignleft size-full wp-image-69" /></p>
<p>I found it even more comical that they would take blood donation from a taller female. Could you imagine being a 5&#8242; tall man doing a noble thing like donating blood and being denied? Or better yet being asked to step aside while they take a donation from the 5&#8217;5&#8243; female behind you.</p>
<h2>and the reason for this is&#8230;</h2>
<p>In 2009 a new set of precautions were taken to protect young donors who have a blood volume of less than 3500 mL. These donors can have adverse reactions like fainting or bruising. Even if you have a history of donating blood and do not meet these new requirements you will not be allowed to participate until you meet these requirements. </p>
<p>I won&#8217;t be having this problem but if you are serious about donating blood and don&#8217;t take &#8220;No&#8221; for an answer may I suggest finding one of these? </p>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/12/torture-rack.jpg" alt="torture-rack" title="torture-rack" width="556" height="386" class="alignleft size-full wp-image-70" /></p>
<p>Source Material: <a href="http://www.ecu.edu/cs-studentlife/volunteer/upload/blood-information0001.pdf">East Carolina University&#8217;s Volunteer Blood Donation</a> (PDF)</p>
]]></content:encoded>
			<wfw:commentRss>http://wirthdesign.com/blog/if-your-short-we-dont-want-your-blood.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Al Gore Confronted on Global Warming</title>
		<link>http://wirthdesign.com/blog/al-gore-confronted-on-global-warming.html</link>
		<comments>http://wirthdesign.com/blog/al-gore-confronted-on-global-warming.html#comments</comments>
		<pubDate>Wed, 25 Nov 2009 17:51:26 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[al gore]]></category>
		<category><![CDATA[climate change]]></category>
		<category><![CDATA[we are change]]></category>

		<guid isPermaLink="false">http://wirthdesign.com/blog/?p=65</guid>
		<description><![CDATA[It&#8217;s very odd the way a number of these high profile political types handle themselves when confronted face-to-face. It&#8217;s very uncommon for these types to give any satisfaction by defending themselves or taking charge of the situation. When your surrounded by &#8220;handlers&#8221; you simply don&#8217;t have to acknowledge confrontational opposition. If I were Al Gore [...]]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/JXHDkcy9Wdo&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/JXHDkcy9Wdo&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
<p>It&#8217;s very odd the way a number of these high profile political types handle themselves when confronted face-to-face. It&#8217;s very uncommon for these types to give any satisfaction by defending themselves or taking charge of the situation. When your surrounded by &#8220;handlers&#8221; you simply don&#8217;t have to acknowledge confrontational opposition. If I were Al Gore in this situation (time permitting of course) I would have taken charge and requested that these obviously concerned citizens stay and wait till people are done with the meet and greet. Handling a situation in that matter would show the other guests that you are not afraid to stand up for what you believe in. To ignore opposition is cowardice and to throw someone out for calling you out on something is anti-American in my opinion. </p>
<p>How would you have handled this situation? Leave me a comment below&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://wirthdesign.com/blog/al-gore-confronted-on-global-warming.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crossbreed Releases New Album &#8220;KE 101&#8243; on 9.15.09</title>
		<link>http://wirthdesign.com/blog/crossbreed-to-realse-new-album-ke-101-on-9-15-09.html</link>
		<comments>http://wirthdesign.com/blog/crossbreed-to-realse-new-album-ke-101-on-9-15-09.html#comments</comments>
		<pubDate>Sun, 13 Sep 2009 04:27:38 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[crossbreed]]></category>

		<guid isPermaLink="false">http://wirthdesign.com/blog/?p=58</guid>
		<description><![CDATA[Band: Crossbreed Album: KE 101 Release Date: 9.15.09 I was super excited when I found out Crossbreed was releasing a new album. I first heard Crossbreed when I was in High school and immediately became a fan. I remember cranking their album &#8220;Synthetic Division&#8221; in my 90&#8242; Cutlass Supreme. Good times, definitely a band I [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/09/blog_005-crossbreed.jpg" alt="blog_005-crossbreed" title="blog_005-crossbreed" width="600" height="160" class="alignleft size-full wp-image-63" /></p>
<div style="clear:both; height:10px;"></div>
<p><strong>Band:</strong> Crossbreed<br />
<strong>Album:</strong> KE 101<br />
<strong>Release Date:</strong> 9.15.09</p>
<p>I was super excited when I found out Crossbreed was releasing a new album. I first heard Crossbreed when I was in High school and immediately became a fan. I remember cranking their album &#8220;Synthetic Division&#8221; in my 90&#8242; Cutlass Supreme. <span id="more-58"></span> Good times, definitely a band I have always want to see live. I heard a few of the new tracks and right now &#8220;TBnot&#8221; and &#8220;Kill Everything&#8221; are my favorite tracks on the new album &#8220;KE 101&#8243;. The full album is to be released on 9.15.09 and if you pre-order their album now you get a free t-shirt which has a cool design on it for $13.99. I really hope they do well with this album, so if you like what you hear on this player I would suggest taking advantage of the pre-order and getting the free shirt.</p>
<div style="text-align: center; margin-left: auto; visibility:visible; margin-right: auto; width:450px; margin-top:50px;"> <object width="435" height="270"><param name="movie" value="http://www.myspaceplaylists.com/mc/mp3player_new.swf"></param><param name="flashvars" value="tomy=http%3A%2F%2Fwww...%2Fext%2Fpc%2Fconfig_black.xml&#038;mywidth=435&#038;myheight=270&#038;file=http%3A%2F%2Fwww...%2Floadplaylist.php%3Fplaylist%3D68907446%26t%3D1250824767&#038;wid=ms"></param><param name="allowscriptaccess" value="never"></param><param name="wmode" value="transparent"></param> <embed style="width:435px; visibility:visible; height:270px;" src="http://www.myspaceplaylists.com/mc/mp3player_new.swf" allowScriptAccess="never" width="435" height="270" name="mp3player" wmode="transparent" type="application/x-shockwave-flash" border="0" flashvars="tomy=http%3A%2F%2Fwww...%2Fext%2Fpc%2Fconfig_black.xml&#038;mywidth=435&#038;myheight=270&#038;file=http%3A%2F%2Fwww...%2Floadplaylist.php%3Fplaylist%3D68907446%26t%3D1250824767&#038;wid=ms"/> </object> <br/> <a href="http://www.mysocialgroup.com"><img src="http://www.myspaceplaylists.com/mc/images/create_black.jpg" border="0"></a> <a href="http://www.mysocialgroup.com/standalone/68907446" target="_blank"><img src="http://www.myspaceplaylists.com/mc/images/launch_black.jpg" border="0"></a> <a href="http://www.mysocialgroup.com/download/68907446"><img src="http://www.myspaceplaylists.com/mc/images/get_black.jpg" border="0"></a> </div>
]]></content:encoded>
			<wfw:commentRss>http://wirthdesign.com/blog/crossbreed-to-realse-new-album-ke-101-on-9-15-09.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My two cents on why Macs are better than PCs pt. 1</title>
		<link>http://wirthdesign.com/blog/my-two-cents-on-why-macs-are-better-than-pcs-pt-1.html</link>
		<comments>http://wirthdesign.com/blog/my-two-cents-on-why-macs-are-better-than-pcs-pt-1.html#comments</comments>
		<pubDate>Sat, 12 Sep 2009 19:57:02 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[pc]]></category>

		<guid isPermaLink="false">http://wirthdesign.com/blog/?p=48</guid>
		<description><![CDATA[It seems that the better Apple does the more this topic comes about. I think people for the first time are getting a peek at Apple and their business model through iPones, iPods and other popular Apple products. By business model I mean this for example&#8230; when is the last time you saw a company [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that the better Apple does the more this topic comes about. I think people for the first time are getting a peek at Apple and their business model through iPones, iPods and other popular Apple products. By business model I mean this for example&#8230; <span id="more-48"></span> when is the last time you saw a company announce a new product like the 3GS and they immediately drop 3G down by 50%? That&#8217;s smart business in my book, now people of a different income bracket can get a chance to see what the iPhone is all about and become a &#8220;Apple Fanboy&#8221; or &#8220;Apple Elitist Snob&#8221; like myself.</p>
<h3>Quality vs Quantity</h3>
<p>Hands down Apple makes a better designed computer, components and operating system. I remember how impressed I was when I first got &#8220;my&#8221; 24&#8243; iMac at work. Just by the way they package their products you get a feeling that they put some thought into it. Nice small manual, terry cloth for the screen and really a modest amount of packaging materials. PCs come in a variety of different levels of craftsmanship and materials. For instance I use a Dell Desktop at home and while it&#8217;s not an ugly system it definitely doesn&#8217;t scream quality like I feel with the Mac. PC cases are made by every Tom, Dick and Harry out there and in most cases it&#8217;s &#8220;Cheaper the Better&#8221; materials mixed with a modest design. These same &#8220;Tom, Dick and Harries&#8221; are also pumping out plenty of low quality drives, boards and cards. I&#8217;ve had pretty good luck with these &#8220;low quality&#8221; parts in the past with only a couple failed hard drives and cards. Wait-what? Who cares what it looks like, you say? I see you rolling your eyes. Not everyone cares! But being a person of detail I take notice of these things, just as when you buy a car some people like to look at the engine and other components so it&#8217;s no different. Now lets go inside of a Mac and a PC. Since I referenced an iMac earlier let&#8217;s take a look at the inside of one.</p>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/09/blog_004-mac-inside.jpg" alt="blog_004-mac-inside" title="blog_004-mac-inside" width="600" height="368" class="alignleft size-full wp-image-49" /></p>
<p>That! Is a very nicely designed system. I have been inside many PCs cases and never have I seen such a well designed inside. Apple unlike most PC carriers does not neglect the inside of the case assuming that most users will not ever be opening their cases.</p>
<div style="clear:both; height:50px;"></div>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/09/blog_004-pc-inside.jpg" alt="blog_004-pc-inside" title="blog_004-pc-inside" width="600" height="528" class="alignleft size-full wp-image-50" /></p>
<p>This is a tower from a dell and to me it looks very similar to mine&#8230; spaghetti. Now maybe it&#8217;s &#8220;wrong&#8221; of me to compare an All-In-One system like the iMac and compared it to a tower. So here we go&#8230;</p>
<div style="clear:both; height:50px;"></div>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/09/blog_004-g5-inside.jpg" alt="blog_004-g5-inside" title="blog_004-g5-inside" width="600" height="561" class="alignleft size-full wp-image-53" /></p>
<p>Same nice injection molded parts, branding and cleanliness. I rest my &#8220;case&#8221; bwahahaha.</p>
<div style="clear:both; height:50px;"></div>
<h3>What changed me?</h3>
<p>I like many people my age grew up using a Windows PC in schools, libraries and eventually in my own home since I was 11 years old. It was all I knew existed and had a pretty good relationship with the components and software besides from all the normal frustrations that we learned to write off as the nature of computers or what ever you call it. Macs were pretty taboo to me, I didn&#8217;t take anyone serious who used them. I again like many others were given the impression that Macs were for video production and artists. Almost like an idiot savant of the computer world. In college we have two rooms out of maybe a dozen that had Macs in them. Sometimes when the PC labs were full I would be forced to use these very foreign computers. I was so stuck in my ways (normal for those who know me) that I never gave it the chance it deserved and would get frustrated and leave.</p>
<p>This &#8220;frustration&#8221; was really my years and years of conditioning to PCs. I got my first real opportunity to learn a Mac when I started my job with Bunting Graphics. Their marketing guy was well educated about Apple and when I started working with him he set me up on his old G4. I remember the first few weeks I would get so frustrated at how I couldn&#8217;t figure out how to shut it down on my own or how to use finder to find network drives or how to close a program and have it not just minimize into itself. After a few weeks I realized that I was simply over thinking everything.</p>
<p>Now after a year I have used Tiger, Leopard and now Snow Leopard and I absolutely LOVE this operating system. When I turn that machine on from a cold boot I am up and running in less than 30 seconds. Maybe my favorite thing about this OS is the consistency and stability of how it runs, I get the same performance out of this machine every day I use it. Out of any computer I have ever used I have to say that I have never had such a love for a computer system like I do &#8220;my&#8221; iMac.</p>
<h3>In Summary</h3>
<p>I am pretty sure it&#8217;s going to take another post to cover the rest of why I think Macs are better than PCs. I have barely skimmed the surface. Earlier today on Twitter I wrote something that basically sums up this Mac Vs. PC feud.</p>
<blockquote><p>&#8220;Mac is to Corvette as PC is to Camaro&#8221;</p></blockquote>
<p>Being a car guy I have heard many guys say &#8220;Why would I pay X amount of dollars for a Corvette when I could buy a Camaro and put X amount of dollars into it and have the same thing&#8221; and just like in that situation you will never get a Camaro to out perform a Corvette (of similair years) without heavy modification. There will always be those &#8220;Camaro&#8221; PC guys out there with their proverbial mullets thinking they&#8217;re better than a Corvette. Right now I have a PC at home only because when I made the investment I wasn&#8217;t into Macs at the time. When the time rolls around for me to drop this system you can bet that I am going to spend the money on a Mac.</p>
<p>Also I&#8217;d like to note this&#8230; people who go around bad mouthing Macs because of their price are dumb because they aren&#8217;t seeing the big picture. PCs are less expensive because their components are made by many manufacturers (Samsung, Western Digital, Hitachi etc) therefore creating a competitive market for pricing whereas Apple chooses to control the quality by being the only manufacturer. I&#8217;d rather pay extra for quality than spend my time researching to see if X companies ram is going to burn up in week or if X companies hard drive is going to take a dump in a couple months because of poor design or craftsmanship. &#8220;I&#8217;m a Graphic Designer and I&#8217;m a PC&#8221; &#8230;. spare me, PLEASE lol <img src='http://wirthdesign.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://wirthdesign.com/blog/my-two-cents-on-why-macs-are-better-than-pcs-pt-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Create a Simple CSS Image Rollover</title>
		<link>http://wirthdesign.com/blog/tutorial-create-a-simple-css-image-rollover.html</link>
		<comments>http://wirthdesign.com/blog/tutorial-create-a-simple-css-image-rollover.html#comments</comments>
		<pubDate>Sat, 12 Sep 2009 04:50:01 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://wirthdesign.com/blog/?p=25</guid>
		<description><![CDATA[Create a simple image rollover using just CSS and a single image. It doesn't get much easier than this.]]></description>
			<content:encoded><![CDATA[<p>What you need for this tutorial</p>
<ul>
<li>Image Editing Software (ie: Adobe Photoshop)</li>
<li>An average understanding your editing software</li>
<li>Notepad or other code editing software</li>
</ul>
<p>I believe this is the best way to create any type of image rollover. Other ways are to use JavaScript but I find this unnecessary because the CSS way is very straight forward and easy to do. A example of this would be my &#8220;Portfolio&#8221; button I have on the front of my website. <span id="more-25"></span> You&#8217;ll see when you roll your mouse over the button (On the main page) changes from a shade of green to a shade of blue.</p>
<p><img class="size-full wp-image-26 alignleft" title="blog_003_site-front" src="http://wirthdesign.com/blog/wp-content/uploads/2009/09/blog_003_site-front.jpg" alt="blog_003_site-front" width="600" height="375" /></p>
<div style="clear:both; margin-bottom:100px;"></div>
<p>Now let&#8217;s open your image editing software. I prefer to use Adobe Photoshop because it is the most common editing software available. For this tutorial I am going to be using a button I made when I designed this website.</p>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/09/bglo_003-button-1.jpg" alt="bglo_003-button-1" title="bglo_003-button-1" width="222" height="57" class="alignleft size-full wp-image-28" /></p>
<div style="clear:both; margin-bottom:100px;"></div>
<p>This image is 222 pixels wide and 57 pixels in height. With the image opened in you edit software we&#8217;re going to change the &#8220;Canvas Size&#8221;. You can find &#8220;Canvas Size&#8221; in Photoshop under &#8220;Image&#8221; in the overhead menu.</p>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/09/blog_003-canvas-size.jpg" alt="blog_003-canvas-size" title="blog_003-canvas-size" width="600" height="450" class="alignleft size-full wp-image-29" /></p>
<div style="clear:both; margin-bottom:100px;"></div>
<p>Now the way I&#8217;ve learned to do a proper CSS Image Rollover is to use 1 image for both actions (normal position and hover position). This makes the loading of the images smoother and requires 1 less image. Let&#8217;s double the height of the &#8220;Canvas&#8221; and make it 114 pixels (Original height of 57 pixels X2). Note: Make sure you select the top center box for &#8220;Anchor:&#8221; so that we are adding the extra 57 pixels of canvas BELOW our existing image.</p>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/09/blog_003-extra-canvas.jpg" alt="blog_003-extra-canvas" title="blog_003-extra-canvas" width="600" height="375" class="alignleft size-full wp-image-30" /></p>
<div style="clear:both; margin-bottom:100px;"></div>
<p>Make sure this image above looks like what your looking at. Next under &#8220;File&#8221; in the above menu you want to select &#8220;Place&#8221; and select the same image you&#8217;ve started with but place it underneath using snaps to ensure that it is exactly under neath.</p>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/09/blog_003-double-image.jpg" alt="blog_003-double-image" title="blog_003-double-image" width="600" height="375" class="alignleft size-full wp-image-31" /></p>
<div style="clear:both; margin-bottom:100px;"></div>
<p>From this point we need to alter the bottom image so that it differs from the image above. I&#8217;ve chosen to just make my button green using my original files. You can use some form of &#8220;Blending Options&#8221; to achieve a different look.</p>
<p><img src="http://wirthdesign.com/blog/wp-content/uploads/2009/09/blog_003-final-button.jpg" alt="blog_003-final-button" title="blog_003-final-button" width="222" height="114" class="alignleft size-full wp-image-32" /></p>
<div style="clear:both; margin-bottom:100px;"></div>
<p>Save your file and put away your image editing software. Now open the page you want to add your button to in your favorite code writing software (ie: Notepad, Coda, Dreamweaver etc). Now lets go to your style sheet or inline styling section and add the few lines of code we need to make this work.</p>
<p>Ok, I&#8217;m calling this &#8220;.button_folio&#8221;, name it whatever you want just remember it so when you write your code you don&#8217;t confuse yourself. The height and width are what we want to be visible and since we are telling this to display as a block we wont see anything below 57px of the height. With the background we will be linking to our single image that we created earlier. Note that in background we have &#8220;0 -57&#8243; this very important because we&#8217;re telling the browser to start this background 57 pixels below what it normally would.</p>
<p><code>.button_folio {<br />
     width:222px;<br />
     height:57px;<br />
     display:block;<br />
     background:url(images/button_folio.gif) 0 -57px no-repeat;<br />
}</code></p>
<div style="clear:both; margin-bottom:100px;"></div>
<p>This is the final CSS that will tell the browser to move the background position to &#8220;0 0&#8243; (which is 57 pixels higher) when you &#8220;hover&#8221; your mouse over it.</p>
<p><code>.button_folio:hover {<br />
     background-position:0 0;<br />
}</code></p>
<div style="clear:both; margin-bottom:100px;"></div>
<p>Now to use this new &#8220;Class&#8221; on your page. Since this is a button and we&#8217;re using it to link to a page it only make sense to use this class on a link. Just add the code below to a link before &#8220;href&#8221; or after the URL.</p>
<p><code>class="button_folio"</code></p>
<div style="clear:both; margin-bottom:100px;"></div>
<p>Pow there you go! We made two new classes in a style sheet and called it out on the page. I believe this to be the best way to do this. I&#8217;m sure if you are a &#8220;text replacement nut&#8221; you can add text within the link instead of leaving nothing in between the tag and use a span to indent the text off the screen but I don&#8217;t really understand catering to people who don&#8217;t use style sheets.</p>
<p><a href="#" style="{width:222px: height:57px; display:block; background:url(/images/button_folio.gif) 0 -57px no-repeat;}<br />
                          :hover {background-position:0 0;}"></a></p>
<p>I hope I did a good job of explaining this, this is my first tutorial on here so any feedback would appreciated.</p>
<div style="clear:both; margin-bottom:100px;"></div>
]]></content:encoded>
			<wfw:commentRss>http://wirthdesign.com/blog/tutorial-create-a-simple-css-image-rollover.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
