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

<channel>
	<title>Chris Micek &#187; Blog</title>
	<atom:link href="http://www.micekdesign.com/category/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.micekdesign.com</link>
	<description>Minneapolis Web Designer &#38; Developer</description>
	<lastBuildDate>Tue, 31 Jan 2012 03:35:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>WordPress: Get the the page ID of the Posts Page</title>
		<link>http://www.micekdesign.com/wordpress-get-the-the-page-id-of-the-posts-page</link>
		<comments>http://www.micekdesign.com/wordpress-get-the-the-page-id-of-the-posts-page#comments</comments>
		<pubDate>Sun, 09 Aug 2009 21:44:19 +0000</pubDate>
		<dc:creator>cmicek</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.micekdesign.com/?p=390</guid>
		<description><![CDATA[After specifying a static homepage, you might need to get the page_id of your posts page.]]></description>
			<content:encoded><![CDATA[<p>This took me over an hour of searching. I specified a static front page and then needed to write some custom functions to specifically target the separate post page; however it seemed almost impossible to get that page id, in or out of the loop.</p>
<p>Additionally, this was for a custom theme so I couldn&#8217;t use get_page_by_title() because I wouldn&#8217;t know what the title of the page was going to be.</p>
<p>Instead I dug around and found this WordPress option that isn&#8217;t even documented in the <a href="http://codex.wordpress.org/Option_Reference">Option Reference Table.</a></p>
<h4>get_option(&#8216;page_for_posts&#8217;)</h4>
<p><br/><br />
<img class="alignnone size-full wp-image-406" title="posts-page-id" src="http://www.micekdesign.com/wp-content/uploads/posts-page-id.png" alt="posts-page-id" width="525" height="253" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micekdesign.com/wordpress-get-the-the-page-id-of-the-posts-page/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New Portfolio item: Legal web template</title>
		<link>http://www.micekdesign.com/new-portfolio-item-legal-web-template</link>
		<comments>http://www.micekdesign.com/new-portfolio-item-legal-web-template#comments</comments>
		<pubDate>Wed, 01 Apr 2009 03:57:30 +0000</pubDate>
		<dc:creator>cmicek</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.micekdesign.com/?p=343</guid>
		<description><![CDATA[I&#8217;m testing out various theme selling marketplaces. Once the template gets approved, I&#8217;ll post a link. Update: This theme had been accepted into the Themeforest marketplace. Check out my Law/Legal Business Template]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-344" title="thumb-1" src="http://www.micekdesign.com/images/legal/1.jpg" alt="" width="525" height="693" /></p>
<p>I&#8217;m testing out various theme selling marketplaces. Once the template gets approved, I&#8217;ll post a link.</p>
<p>Update: This theme had been accepted into the Themeforest marketplace. <a href="http://themeforest.net/item/lawlegal-business-template-/38848">Check out my Law/Legal Business Template</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micekdesign.com/new-portfolio-item-legal-web-template/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dynamic Width List Images using just HTML/CSS</title>
		<link>http://www.micekdesign.com/dynamic-width-list-images-using-just-html-css</link>
		<comments>http://www.micekdesign.com/dynamic-width-list-images-using-just-html-css#comments</comments>
		<pubDate>Fri, 20 Feb 2009 16:51:56 +0000</pubDate>
		<dc:creator>cmicek</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.micekdesign.com/?p=185</guid>
		<description><![CDATA[A solution for using images with a dynamic width in lists.]]></description>
			<content:encoded><![CDATA[<p>In an article posted on Smashing Magazine today (<a title="Ask SM [CSS/JS]: Divs of Equal Height, Dealing with IE 6" rel="bookmark" href="http://www.smashingmagazine.com/2009/02/20/ask-sm-css-smooth-page-scrolling-divs-of-equal-height-dealing-with-ie-6/">Ask SM [CSS/JS]: Divs of Equal Height, Dealing with IE 6</a>), the writer determined that the only solution to the following question is the use javascript/jquery.</p>
<blockquote><p>Is it possible to create a list with CSS that has the text aligned to the right side, but on the left side has an image taking up the width of the remaining space?</p></blockquote>
<p>That didn&#8217;t seem right to me, so I came up with a solution that used HTML/CSS and overlaying images. (<a href="/temp/smash-wrong-4.html">Final Solution</a>)</p>
<ol>
<li>Using CSS, I applied a repeating image of the line to each list item (&lt;li&gt;) (<a href="/temp/smash-wrong-1">step 1</a>)</li>
<li>I wrapped the text of each list-item in a &lt;div&gt; and gave that div tag a white background: so that the line doesn&#8217;t cross through it.  (<a href="/temp/smash-wrong-2">step 2</a>)</li>
<li>I put an empty &lt;span&gt; tag at the beginning of the &lt;div&gt; and applied my gradient to that span.  (<a href="/temp/smash-wrong-3">step 3</a>)</li>
<li>Using Absolute positioning I moved the &lt;span&gt; 100px to the left (the width of the gradient image.)  (<a href="/temp/smash-wrong-4">step 4</a>)</li>
</ol>
<p><img class="alignnone size-full wp-image-204" title="list-image1" src="http://www.micekdesign.com/wp-content/uploads/list-image1.jpg" alt="list-image1" width="525" height="93" /></p>
<p>There you go, tested in Firefox 3, Safari, IE6, and IE7</p>
<h2>HTML</h2>
<p><code>&lt;ul&gt;</code></p>
<p>&lt;li&gt;<br />
&lt;div&gt;&lt;span&gt;&lt;/span&gt;List Item Number One&lt;/div&gt;<br />
&lt;/li&gt;</p>
<p>&lt;li&gt;<br />
&lt;div&gt;&lt;span&gt;&lt;/span&gt;Long, Multi Line List Item Long, Multi Line List Item Long, Multi Line List Item Long, Multi Line List Item&lt;/div&gt;<br />
&lt;/li&gt;</p>
<p>&lt;li&gt;<br />
&lt;div&gt;&lt;span&gt;&lt;/span&gt;<code>List Item Number Three</code><code>&lt;/div&gt;<br />
&lt;/li&gt;</code></p>
<p>&lt;/ul&gt;</p>
<h2>CSS</h2>
<p><code> ul{<br />
list-style:none;<br />
width:60%;<br />
}</code></p>
<p>li{<br />
position:relative; <code><br />
float:right;<br />
width:100%; </code><code><br />
text-align:right;<br />
background:url(line.jpg) repeat-x;<br />
background-position:0px 13px;<br />
margin: 0 0 8px 0;<br />
}</code></p>
<p>li span{<br />
position:absolute;<br />
height:100%;<br />
width:100px;<br />
top:0px;<br />
left:-100px;<br />
background:url(line-grad.jpg) no-repeat;<br />
background-position:0px 13px;<br />
}</p>
<p>li div{<br />
font-weight:normal;<br />
background:#fff;<br />
margin-left:200px;<br />
position:relative;<br />
float:right;<br />
}</p>
<h2>Images</h2>
<p><img class="alignnone size-full wp-image-190" title="line" src="http://www.micekdesign.com/wp-content/uploads/line.jpg" alt="line" width="5" height="2" /> (Basic Line)</p>
<p><img class="alignnone size-full wp-image-192" title="line-grad1" src="http://www.micekdesign.com/wp-content/uploads/line-grad1.jpg" alt="line-grad1" width="100" height="2" />(Line Gradient)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.micekdesign.com/dynamic-width-list-images-using-just-html-css/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Chicago Transit Authority (CTA) updates their website!</title>
		<link>http://www.micekdesign.com/the-chicago-transit-authority-cta-updates-their-website</link>
		<comments>http://www.micekdesign.com/the-chicago-transit-authority-cta-updates-their-website#comments</comments>
		<pubDate>Wed, 17 Dec 2008 00:27:04 +0000</pubDate>
		<dc:creator>cmicek</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.micekdesign.com/?p=173</guid>
		<description><![CDATA[The Chicago Transit Authority (CTA) has updated their website for the first time in 5 years!

<a class="teaser" href="/the-chicago-transit-authority-cta-updates-their-website"><img src="/images/cta-teaser.jpg" alt="CTA web redesign" /></a>]]></description>
			<content:encoded><![CDATA[<p>The Chicago Transit Authority (CTA) has updated their website for the first time in 5 years and I think it looks amazing! It could just be because the old website was so horrible, but I think this is a HUGE improvement.</p>
<p>I love how they integrated Google&#8217;s trip planner, I&#8217;ve been using that for a couple weeks now and found it much easier to use than the original CTA trip planner.  I like the quicklink icons on the right side and think that the images are well thought out.  The only icon that&#8217;s a little weird is the icon for &#8220;Fare Info&#8221;</p>
<p>I think my only issue with the redesign is the use of drop-down menus for the main navigation. For some reason there is this idea that EVERY page of the website has to be available no matter where you are. Anyways, that&#8217;s a minor concern and my opinions on drop-down menus can be saved for another post.</p>
<p>http://www.transitchicago.com/</p>
<h2>New Homepage</h2>
<p><img class="alignnone size-full wp-image-175" title="cta-new1" src="http://www.micekdesign.com/wp-content/uploads/cta-new1.png" alt="cta-new1" width="525" height="585" /></p>
<h2>Old CTA Site</h2>
<h2><img class="alignnone size-full wp-image-176" title="cta-old" src="http://www.micekdesign.com/wp-content/uploads/cta-old.png" alt="cta-old" width="525" height="472" /></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.micekdesign.com/the-chicago-transit-authority-cta-updates-their-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Its nice to see former clients coming along.</title>
		<link>http://www.micekdesign.com/its-nice-to-see-former-clients-coming-along</link>
		<comments>http://www.micekdesign.com/its-nice-to-see-former-clients-coming-along#comments</comments>
		<pubDate>Tue, 16 Dec 2008 17:55:30 +0000</pubDate>
		<dc:creator>cmicek</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.micekdesign.com/?p=169</guid>
		<description><![CDATA[Update on my first freelance project from a couple years ago.]]></description>
			<content:encoded><![CDATA[<p>My very <a href="http://www.micekdesign.com/caribou-technologies-logo-design">first freelance project ever</a> was to do a logo design for a medical devices company called &#8220;Caribou Technologies.&#8221; I was super nervous, created a TON of design options and overcharged them considering my level of experience (none).</p>
<p>Anyways, I just googled them and saw that they have a website up! I remember them talking about a website when I was first working on their logo and its great to see that they&#8217;ve got something up.</p>
<p>Its not the fanciest site, but hey its a web presence.</p>
<p><a title="Caribou Technologies" href="http://www.caribou-technologies.com/">Caribou Technologies</a></p>
<p>I&#8217;m also glad that they rank higher than I do in the google SERPs. I would feel pretty bad having my blog rank higher than their company site.</p>
<p>Speaking of clients coming along, I&#8217;m currently working on the design and development for a new blog that I&#8217;m hoping will be successful. The woman that will be running it is a newbie to the blogging world but she seems really driven, and I can&#8217;t wait to see where she takes her blog.</p>
<p>Her blog/site should be up early next week and ready to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.micekdesign.com/its-nice-to-see-former-clients-coming-along/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lifestream</title>
		<link>http://www.micekdesign.com/lifestream</link>
		<comments>http://www.micekdesign.com/lifestream#comments</comments>
		<pubDate>Wed, 10 Dec 2008 17:13:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://localhost:8888/wordpress/?p=80</guid>
		<description><![CDATA[[lifestream]]]></description>
			<content:encoded><![CDATA[<p>[lifestream]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.micekdesign.com/lifestream/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upcoming Theme Designs</title>
		<link>http://www.micekdesign.com/upcoming-theme-designs-2</link>
		<comments>http://www.micekdesign.com/upcoming-theme-designs-2#comments</comments>
		<pubDate>Sat, 29 Nov 2008 01:44:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://localhost:8888/wordpress/?p=21</guid>
		<description><![CDATA[About a month ago, I took on a project that has now fallen through due to a lack of communication and payment. Rather than throw away two perfectly good website designs, I&#8217;ve decided to revise them to be used as free wordpress themes! Here are the designs as they were intended for a design/internet services]]></description>
			<content:encoded><![CDATA[<p>About a month ago, I took on a project that has now fallen through due to a lack of communication and payment. Rather than throw away two perfectly good website designs, I&#8217;ve decided to revise them to be used as free wordpress themes!</p>
<p>Here are the designs as they were intended for a design/internet services company, with this in mind.</p>
<blockquote><p>The overall feel of the site should be comfortable rather than hip.  I want it to be fresh but not intimidating since a wide range of clients would be viewing this site.</p>
</blockquote>
<p>Additionally, I had the following sites to use for inspiration.</p>
<ul>
<li><a href="http://www.clearfunction.com/">http://www.clearfunction.com/</a></li>
<li><a href="http://www.webstruments.com/">http://www.webstruments.com/</a></li>
<li><a href="http://www.mikeprecious.com/">http://www.mikeprecious.com/</a></li>
<li><a href="http://www.thrusites.com/">http://www.thrusites.com/</a></li>
</ul>
<p>Within a couple weeks I should have these designs revised and ready for free download.</p>
<h2>Design 1 (larger version:  <a href="http://www.micekdesign.com/images/concom/v2-large.jpg">page 1</a>, <a href="http://www.micekdesign.com/images/concom/v2-1-large.jpg">page 2</a>)</h2>
<p><img src="http://www.micekdesign.com/images/concom/v2.jpg" alt="Design: v1" width="435" height="587" /></p>
<p><img src="http://www.micekdesign.com/images/concom/v2-1.jpg" alt="v1-2" width="435" height="776" /></p>
<h2>Design 2 (larger version:  <a href="http://www.micekdesign.com/images/concom/v1-large.jpg">page 1</a>, <a href="http://www.micekdesign.com/images/concom/v1-2-large.jpg">page 2</a>)</h2>
<p><img src="http://www.micekdesign.com/images/concom/v1.jpg" alt="Design: V2" /></p>
<p><img src="http://www.micekdesign.com/images/concom/v1-2.jpg" alt="V2-2" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micekdesign.com/upcoming-theme-designs-2/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Long Distance Design Issues (Part 2): Accountability &amp; Getting Paid</title>
		<link>http://www.micekdesign.com/long-distance-design-issues-part-2-accountability-getting-paid-3</link>
		<comments>http://www.micekdesign.com/long-distance-design-issues-part-2-accountability-getting-paid-3#comments</comments>
		<pubDate>Fri, 28 Nov 2008 23:50:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://localhost:8888/wordpress/?p=14</guid>
		<description><![CDATA[Working long distance has its own set of challenges regarding accountability and receiving payment.]]></description>
			<content:encoded><![CDATA[<p>The biggest hurdle I have when getting distance jobs is proving my reliability and accountability. I believe that most people feel uncomfortable or worried  when hiring someone without meeting that person face to face. How do we, as distance workers, address their concerns and project a feeling of accountability and reliability?</p>
<h3> To balance out a client&#8217;s fears I do the following:</h3>
<ul class="post">
<li>In my initial communications with a potential client, I explain the entire design process and payment stages.</li>
<li>I give them my cell number.</li>
<li>After the work has started I try to be as responsive as possible and make sure to hit my deadlines.</li>
<li>Provide References</li>
</ul>
<p>Beyond those bullet points, I think its important to develop a relationship with the client. Keeping everything professional 24-7 is boring, and by taking that relationship just a tiny step further you can increase trust.</p>
<p>My roommate is the client for a marketing company in downtown Chicago. Members of that company have made it a point to get to know him personally, even to the point of meeting him for non-work-related dinner and drinks. After dinner and drinks, their relationship has become more comfortable and trustworthy in a professional setting.</p>
<h2>Client Accountability</h2>
<p>The need for accountability and reliability goes both ways. How can a designer be sure that his client is going to provide content on time, make payments, etc?</p>
<p>Money is the greatest motivator here, by taking a percentage of the payment up front, and at specific stages of the project you are ensuring that you don&#8217;t get screwed and they payment stages present nice milestones for the project.</p>
<h2>Getting Paid for Distance Design Work</h2>
<p>In general it takes a long time to get paid. If you&#8217;re freelancing don&#8217;t expect to be getting checks bi-weekly or even on a monthly basis. Two methods that I&#8217;ve used to get paid</p>
<ul class="post">
<li>
<h3>Checks</h3>
<p>You have to wait for checks to get mailed and then you have to wait for them to clear. This can be a problem if you&#8217;re getting paid in stages and can delay the project while you wait to receive the check and then for it to clear.</li>
<li>
<h3>Paypal</h3>
<p>In college I used paypal once a month to receive money from my parents and had no problems. Paypal took out a small percentage of the payment, but I was willing to pay that in order for the convenience. However, recently my accounts have been hacked and I lost some money, basically ending my relationship with paypal for good.</p>
<p>This is a fantastic article about one designers <a href="http://freelanceswitch.com/the-business-of-freelancing/freelancers-beware-of-receiving-payments-via-credit-card-through-paypal/">paypal experiences</a></p>
<p>This is a fantastic article about one designers <a href="http://freelanceswitch.com/the-business-of-freelancing/freelancers-beware-of-receiving-payments-via-credit-card-through-paypal/">paypal experiences</a></p>
</li>
</ul>
<p>Working long distance isn&#8217;t all that difficult as long as you&#8217;re prepared to deal with the special issue and needs it requires.</p>
<p><em>In case you missed it, <a href="long-distance-design-issues-part-1-communication">Click here for part 1</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.micekdesign.com/long-distance-design-issues-part-2-accountability-getting-paid-3/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Working for free: Friends, good causes, and publicity</title>
		<link>http://www.micekdesign.com/working-for-free-friends-good-causes-and-publicity-2</link>
		<comments>http://www.micekdesign.com/working-for-free-friends-good-causes-and-publicity-2#comments</comments>
		<pubDate>Thu, 27 Nov 2008 19:36:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://localhost:8888/wordpress/?p=12</guid>
		<description><![CDATA[One of the problems of being a designer is that I get asked to work for free very frequently. The following are the only situations that I would consider offering my services on the cheap. Designing for friends and family Friends and family can be tricky. Sometimes its acceptable to quote your full rates, sometimes]]></description>
			<content:encoded><![CDATA[<p>One of the problems of being a designer is that I get asked to work for free very frequently. The following are the only situations that I would consider offering my services on the cheap.</p>
<h2>Designing for friends and family</h2>
<p>Friends and family can be tricky. Sometimes its acceptable to quote your full rates, sometimes a partial rate, and sometimes you&#8217;re working for free.</p>
<p>My good friend, Greta, is an illustrator/painter/designer. She needs a proffesional portfolio o show potential employers.  I think it is practically impossible for her to get a design related interview without an online portfolio, so I wanted to help her out. She designed her site and I coded her design and set her up so that she can regularly add new portfolio pieces.</p>
<p>Also, she cooks an awesome meal for me once a week, so I owe her for that.</p>
<p><a href="http://www.gretadohse.com" title="Chicago Illustration">www.GretaDohse.com</a>  (Work in Progress)</p>
<p>On the other hand, I&#8217;ve been working for my aunt and uncle designing a website and some items for their baseball team. I&#8217;ve been working for them at a &#8220;family-discount&#8221; rate. I feel comfortable charging them money for two reasons.</p>
<ul>
<li> They were already paying someone else to get this design work done, so they understand that there is value in my work.</li>
<li>I&#8217;ll be doing regular design work for them.</li>
</ul>
<p>I am still working for family, so I&#8217;m working for less than I would normally charge a client.</p>
<h2>Designing for charities and other good causes</h2>
<p>For my senior project at Purdue, I worked with 2 other guys, <a href="http://www.maxkpage.com">Max</a> and <a href="http://www.andreweberwine.com">Andrew,</a> to create a <a href="/help-roberto-promotional-campaign">promotional campaign for a young boy named Roberto</a>.  Roberto has a disease called <a href="http://en.wikipedia.org/wiki/Congenital_insensitivity_to_pain_with_anhidrosis">CIPA</a>, which prevents him from feeling pain or perspiring. He&#8217;s a very happy and fun little boy, but he just did not know the damage he was doing to his body.</p>
<p>Admittedly this was a school project so I had to do it for free, but even now, this is the type of work that I&#8217;d consider doing again.</p>
<p>I recently found out that the charity was able to raise enough money to get Roberto the help he needs, and its a great feeling to know that my web experience and abilities were required to get the charity running.</p>
<h2>Designing for publicity</h2>
<p>Designers hear these phrases and other similar requests very frequently&#8230;</p>
<blockquote><p> I have this great website idea that I know will be really popular! But I don&#8217;t have a web design budget. I&#8217;ll let you put a link to your website!    </p></blockquote>
<blockquote><p> I need a new, creative logo. I don&#8217;t have any money to pay you but I bet it will look fantastic in your portfolio!</p></blockquote>
<p>Normally, I turn down these requests, but occasionally an opportunity comes through that will actually produce great publicity and generate some solid word-of-mouth referrals.</p>
<p>I&#8217;m currently designing several custom WordPress themes to be used by my fraternity at chapters around the country. Its actually a pretty big deal, most fraternity&#8217;s have pitiful websites, so this will be a great way to help my fraternity stand out!</p>
<p>Sure, its great that I&#8217;m helping out my national fraternity, but the main reasons for my involvement are the following.</p>
<ul>
<li>
<h3>Publicity</h3>
<p>These templates will be used nationwide and implemented on over 20 websites. It also lets every brother know that I&#8217;m a web designer.</li>
<li>
<h3>WordPress Experience</h3>
<p>I&#8217;m looking to use WordPress as a CMS for most of my future clients and this is a great way to get some experience and portfolio pieces.</li>
</ul>
<p>If you have some free work that doesn&#8217;t fall into one of those 3 categories don&#8217;t bother with me! I&#8217;ve got bills to pay and drinks to buy! However, if you&#8217;ve got work that does fall into one of these categories feel free to <a href="/contact">contact me</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.micekdesign.com/working-for-free-friends-good-causes-and-publicity-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Really Simple RSS Explanation</title>
		<link>http://www.micekdesign.com/really-simple-rss-explanation</link>
		<comments>http://www.micekdesign.com/really-simple-rss-explanation#comments</comments>
		<pubDate>Thu, 27 Nov 2008 06:38:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://localhost:8888/wordpress/?p=3</guid>
		<description><![CDATA[HTTP, IMHO, CSS, W3C, L337, HTML, ROFL, XML, PHP, WYSIWYG, RSS, etc. RSS is Really. Simple. Syndication. RSS, is a really simple way to keep track of all of your favorite websites. RSS takes all the recent updates from all websites you care about and aggregates them into one, easy to use interface. Before RSS,]]></description>
			<content:encoded><![CDATA[<blockquote><p>HTTP, IMHO, CSS, W3C, L337, HTML, ROFL, XML, PHP, WYSIWYG, RSS, etc.</p>
</blockquote>
<h2>RSS is Really. Simple. Syndication.</h2>
<p>RSS, is a really simple way to keep track of all of your favorite websites. RSS takes all the recent updates from all websites you care about and aggregates them into one, easy to use interface.</p>
<p>Before RSS, I had to visit between 10 and 30 websites everyday to see if they&#8217;ve been updateed with new content. It was a huge waste of time! Now I just visit one website that grabs information from all of those pages.</p>
<p>In the following screenshot of my RSS reader,  I can see that Katie Holmes might be pregnant again, that there is a new web comic from Penny Arcade, and that there is a potential job that I&#8217;m interested in.</p>
<p><img src="/images/google-reader.jpg" alt="Google Reader Screenshot" /></p>
<h2>How to use RSS</h2>
<h3>Get an RSS Reader</h3>
<p>The RSS reader is the website that aggregates all of your sites. I use <a href="http://www.google.com/reader">Google Reader</a>.  If you&#8217;re not addicated to Google like I am try <a href="http://www.bloglines.com">Bloglines</a> or <a href="http://my.yahoo.com">My Yahoo</a>.</p>
<h3>Subscribing to a Websites RSS</h3>
<p>If you&#8217;re using Firefox (which you should be), then any site that has an RSS feed with have an address bar with the orange RSS icon. Just click the icon and Firefox will take care of the rest.</p>
<p><img src="/images/firefox-rss.jpg" /></p>
<p>Also, many websites will have a link on their website, that link can take many forms. The Micek Design RSS is in the upper left area of this website. Image from <a href="http://www.smashingmagazine.com">Smashing Magazine</a></p>
<p><img src="/images/rss-group.png" /></p>
<p>All you need to do to subsribe is click on the RSS link, or copy the link address into your RSS reader.</p>
<p>So thats it! Try it out and see if you like it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.micekdesign.com/really-simple-rss-explanation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

