<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>BowlOfPixels</title>
	<atom:link href="http://bowlofpixels.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bowlofpixels.wordpress.com</link>
	<description>The Weblog of a Web Designer and Photographer in the 21st Century.</description>
	<lastBuildDate>Sun, 19 Apr 2009 03:19:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bowlofpixels.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>BowlOfPixels</title>
		<link>http://bowlofpixels.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bowlofpixels.wordpress.com/osd.xml" title="BowlOfPixels" />
	<atom:link rel='hub' href='http://bowlofpixels.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Basic CSS Series: Font Styling</title>
		<link>http://bowlofpixels.wordpress.com/2008/06/23/basic-css-seried-font-styling/</link>
		<comments>http://bowlofpixels.wordpress.com/2008/06/23/basic-css-seried-font-styling/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 21:00:02 +0000</pubDate>
		<dc:creator>Iwz</dc:creator>
				<category><![CDATA[Basic CSS Series]]></category>

		<guid isPermaLink="false">http://bowlofpixels.wordpress.com/?p=16</guid>
		<description><![CDATA[This is probably one of the most often used stylings on a website as font readability aswell as appeal contribute greatly to the overall look of a website. There are many possible css attributes that can be used to control the look of your text. In this tutorial i will cover all of those that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bowlofpixels.wordpress.com&amp;blog=3348419&amp;post=16&amp;subd=bowlofpixels&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is probably one of the most often used stylings on a website as font readability aswell as appeal contribute greatly to the overall look of a website. There are many possible css attributes that can be used to control the look of your text. In this tutorial i will cover all of those that i know of and if i have missed any out i urge you to let me know by leaving a comment. Let&#8217;s begin.</p>
<p><strong>Font Family</strong></p>
<p>Font Family refers to the &#8216;name&#8217; and/or &#8216;family of the font you want to use on the website. This can be described as the name of a font you would select from the drop down menu in a word processor, common examples are arial, verdana etc.</p>
<p>Example:</p>
<blockquote><p>p {</p>
<p>font-family: arial, verdana, sans-serif;</p>
<p>}</p></blockquote>
<p>What this selector does is tell the browser that the font you want the text to be displayed in mostly is arial but if the browser cannot find the primary font, use your second choice, third choice etc. If the browser cannot find any of the fonts specified then it should use any &#8216;sans-serif&#8217; font on your computer instead.</p>
<p><em>I would suggest using no more than 2 fonts and a family when using this property in your website styles.</em></p>
<p><strong>Font Size</strong></p>
<p>Obviously this attribute controls the size of the text on your webpage.</p>
<p>Example:</p>
<blockquote><p>p {</p>
<p>font-family: arial, verdana, sans-serif;</p>
<p>font-size: 12px;</p>
<p>}</p></blockquote>
<p>You can specify the font size in many different ways. I would suggest using pixels (px) which is the same as you would see in a word processor, you can also specify a percentage, so obvious using this technique requires some experimentaiton. You can also specify a size in words. For example:</p>
<p>&#8220;xx-small, x-small, small, medium, large, x-large, xx-large&#8221;</p>
<p><strong>Font Weight</strong></p>
<p>You can use this attribute to bolden the text and set how bold you want it to be.</p>
<p>Example:</p>
<blockquote><p>p {</p>
<p>font-family: arial, verdana, sans-serif;</p>
<p>font-size: 12px;</p>
<p>font-weight: bold;</p>
<p>}</p></blockquote>
<p>You can specify the boldness in words, &#8220;normal, lighter, bold, bolder&#8221; or in numbers, &#8220;100, 200, 300, 400 etc&#8221;.</p>
<p><strong>Font Style</strong></p>
<p>This attribute allows you to specify the &#8216;style&#8217; of your font, being italic, oblique etc.</p>
<p>Example:</p>
<blockquote><p>p {</p>
<p>font-family: arial, verdana, sans-serif;</p>
<p>font-size: 12px;</p>
<p>font-weight: bold;</p>
<p>font-style: italic;</p>
<p>}</p></blockquote>
<p>The possible values are, &#8220;normal, italic and oblique&#8221;.</p>
<p><em>The attributes mentioned above are the ones that you are likely to come across or use most often, however i will specify some others which you may need to use in special circumstances.</em></p>
<p><strong>Font Stretch</strong></p>
<p>Using this attribute you can expand or condense your text, meaning you can stretch smaller text to fit the width that you need. It can be described as a manual &#8216;justify&#8217;.</p>
<p>Example:</p>
<blockquote><p>p {</p>
<p>font-family: arial, verdana, sans-serif;</p>
<p>font-size: 12px;</p>
<p>font-weight: bold;</p>
<p>font-style: italic;</p>
<p>font-stretch: wider;</p>
<p>}</p></blockquote>
<p>Possible values are, &#8220;normal, wider, narrower, ultra-condensed, extra-condensed, condensed, semi-condensed, semi-expanded, expanded, extra-expanded, ultra-expanded&#8221;.</p>
<p><strong>Font Variant</strong></p>
<p>This attribute is used to provide one special effect tot he font, which is making it all small caps.</p>
<p>Example:</p>
<blockquote><p>p {</p>
<p>font-family: arial, verdana, sans-serif;</p>
<p>font-size: 12px;</p>
<p>font-weight: bold;</p>
<p>font-style: italic;</p>
<p>font-stretch: wider;</p>
<p>font-variant: small-caps;</p>
<p>}</p></blockquote>
<p>The only possible values are &#8220;normal, small-caps&#8221;.</p>
<p>That concludes the second installment of the <strong>BowlOfPixels Basic CSS Series.</strong> Thanks for reading and good luck in all of your CSS ventures!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bowlofpixels.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bowlofpixels.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bowlofpixels.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bowlofpixels.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bowlofpixels.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bowlofpixels.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bowlofpixels.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bowlofpixels.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bowlofpixels.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bowlofpixels.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bowlofpixels.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bowlofpixels.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bowlofpixels.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bowlofpixels.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bowlofpixels.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bowlofpixels.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bowlofpixels.wordpress.com&amp;blog=3348419&amp;post=16&amp;subd=bowlofpixels&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bowlofpixels.wordpress.com/2008/06/23/basic-css-seried-font-styling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4907a56d5dd9c7f5f9aa0b9ae9f72d9b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Iwz</media:title>
		</media:content>
	</item>
		<item>
		<title>My First Attempt At HDR.</title>
		<link>http://bowlofpixels.wordpress.com/2008/05/12/my-first-attempt-at-hdr/</link>
		<comments>http://bowlofpixels.wordpress.com/2008/05/12/my-first-attempt-at-hdr/#comments</comments>
		<pubDate>Mon, 12 May 2008 21:44:58 +0000</pubDate>
		<dc:creator>Iwz</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Flower]]></category>
		<category><![CDATA[HDR]]></category>
		<category><![CDATA[Photograph]]></category>
		<category><![CDATA[Picture]]></category>
		<category><![CDATA[Pot Purri]]></category>
		<category><![CDATA[Red]]></category>

		<guid isPermaLink="false">http://bowlofpixels.wordpress.com/?p=13</guid>
		<description><![CDATA[A HDR Photograph of a pot pourri bowl, my first attempt!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bowlofpixels.wordpress.com&amp;blog=3348419&amp;post=13&amp;subd=bowlofpixels&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, here it is, my first HDR. Composed from 3 images each 2 f/stops apart. The picture is of a pot pourri bowl, yes, not the most lively of subjects but it had great colours. I&#8217;m quite please with how the image turned out.</p>
<p><img style="vertical-align:middle;" src="http://i125.photobucket.com/albums/p65/iwz/Photography/potpuribyiwz.jpg" alt="Purri By Iwz (HDR)" width="668" height="475" /></p>
<p>The full size image can be seen <a title="Purri By Iwz" href="http://i125.photobucket.com/albums/p65/iwz/Photography/potpuribyiwz.jpg" target="_blank">Here</a>.<a title="Purri By Iwz" href="http://i125.photobucket.com/albums/p65/iwz/Photography/potpuribyiwz.jpg" target="_blank"><br />
</a></p>
<p><em>Any feedback appreciated.</em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bowlofpixels.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bowlofpixels.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bowlofpixels.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bowlofpixels.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bowlofpixels.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bowlofpixels.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bowlofpixels.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bowlofpixels.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bowlofpixels.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bowlofpixels.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bowlofpixels.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bowlofpixels.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bowlofpixels.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bowlofpixels.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bowlofpixels.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bowlofpixels.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bowlofpixels.wordpress.com&amp;blog=3348419&amp;post=13&amp;subd=bowlofpixels&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bowlofpixels.wordpress.com/2008/05/12/my-first-attempt-at-hdr/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4907a56d5dd9c7f5f9aa0b9ae9f72d9b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Iwz</media:title>
		</media:content>

		<media:content url="http://i125.photobucket.com/albums/p65/iwz/Photography/potpuribyiwz.jpg" medium="image">
			<media:title type="html">Purri By Iwz (HDR)</media:title>
		</media:content>
	</item>
		<item>
		<title>Understanding Aperture</title>
		<link>http://bowlofpixels.wordpress.com/2008/04/11/understanding-aperture/</link>
		<comments>http://bowlofpixels.wordpress.com/2008/04/11/understanding-aperture/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 00:32:30 +0000</pubDate>
		<dc:creator>Iwz</dc:creator>
				<category><![CDATA[Photography Tutorials]]></category>
		<category><![CDATA[Aperture]]></category>
		<category><![CDATA[apertures]]></category>
		<category><![CDATA[Enthusiast]]></category>
		<category><![CDATA[f/number]]></category>
		<category><![CDATA[f/stop]]></category>
		<category><![CDATA[Light]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[what is aperture]]></category>

		<guid isPermaLink="false">http://bowlofpixels.wordpress.com/?p=11</guid>
		<description><![CDATA[Understand one of the most important of optics fundamentals and how to utalise the principle in your everday photography.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bowlofpixels.wordpress.com&amp;blog=3348419&amp;post=11&amp;subd=bowlofpixels&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>What is Aperture?</strong></p>
<p>Aperture can be defined (in photography) as being a &#8220;hole or opening through which light is emitted&#8221;. But how is this applied in modern photography. Well, put simply, Aperture&#8217;s main use in photography is to control the depth of field (DOF) but Aperture is also used in conjunction with your Camer&#8217;a shutter speed to control exposure. For those that don&#8217;t know, the definition of depth of field is the distance in front and behind an object which remains to be in focus.</p>
<p>Therefore a larger depth of field keeps more of the image in focus and a smaller depth of field focuses on one main part of an image (the focal point) leaving more of the image out of focus.</p>
<p><strong>How is Aperture Measured?</strong></p>
<p>Aperture is measure in f/stops or f/numbers. The lower the f/stop, the greater the aperture (size of the hole that light can pass through) the smaller the depth of field. Therefore more of the image will be out of focus than on a higher Aperture setting.</p>
<p>Therefore, the higher the f/stop, the smaller the aperture and the greater the depth of field. Meaning more of the image will be in focus.</p>
<p><strong>Wow! Now I understand Aperture, how can i use it?</strong></p>
<p>Typically, larger aperatures are used when you want the most of the image in focus, Landscape photography, HDR etc. A smaller aperature are more often used when a photographer only wants a viewer to focus on his chosen subject/focal point, macro photography is a prominent example.</p>
<p>The principles of aperture can also be applied with more creative photography and can produce some interesting and unique effects.</p>
<p><strong>How do i change the aperture on my camera?</strong></p>
<p>Before we move any further, please understand that aperture of course works with shutter speed, so for know i would suggest that whilst practicing this technique, that you shoot in Aperture Priority Mode, (Av). This allows you to set the aperture, and the camera will choose a suitable shutter speed. This feature is avaiable on pretty much every modern DSLR.</p>
<p>There are too many cameras on the market for me to list how to change the aperture on each. But the appropiate information will be available in your camera&#8217;s manual. I might later post a short snippet on how to change the aperture on a popular enthusiast camera. Such as the EOS 400D.</p>
<p><em>If you have found this tutorial useful, please share with your friends, fell welcome to link here from a forum etc. I will be releasing many moer tutorials and if your interested in learning more about photography subscribe to the RSS feed and be alerted whenever a new post is uploaded. To suscribe to the sites RSS feed, simply click the link in the side bar. I hope to see you again soon!</em></p>
<p><em>Comments are also appreciated as it proves to me that someone found the tutorial useful.</em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bowlofpixels.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bowlofpixels.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bowlofpixels.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bowlofpixels.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bowlofpixels.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bowlofpixels.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bowlofpixels.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bowlofpixels.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bowlofpixels.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bowlofpixels.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bowlofpixels.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bowlofpixels.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bowlofpixels.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bowlofpixels.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bowlofpixels.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bowlofpixels.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bowlofpixels.wordpress.com&amp;blog=3348419&amp;post=11&amp;subd=bowlofpixels&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bowlofpixels.wordpress.com/2008/04/11/understanding-aperture/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4907a56d5dd9c7f5f9aa0b9ae9f72d9b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Iwz</media:title>
		</media:content>
	</item>
		<item>
		<title>A New Lens!</title>
		<link>http://bowlofpixels.wordpress.com/2008/04/07/a-new-lens/</link>
		<comments>http://bowlofpixels.wordpress.com/2008/04/07/a-new-lens/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 19:33:00 +0000</pubDate>
		<dc:creator>Iwz</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[300m]]></category>
		<category><![CDATA[Canon]]></category>
		<category><![CDATA[lens]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[sigma]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://bowlofpixels.wordpress.com/?p=9</guid>
		<description><![CDATA[What a lens!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bowlofpixels.wordpress.com&amp;blog=3348419&amp;post=9&amp;subd=bowlofpixels&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It isn&#8217;t often that a 15 year old, un-employed student can afford to splash out on a new lens, but that day came today. Walking into my local camera shop to buy an ND Grad Filter, i found my self walking out with not only my new filter, but a new Sigma 70-300m F4-5.6 APO DG MACRO. Aswell as a hoya UV filter for my custom.</p>
<p>Not a bad day eh? Has anyone else got this lens? I&#8217;ve only played around with it in the garden so far. But it&#8217;s lookin pretty promising. I snapped some great macro shots from 10-20ft away.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bowlofpixels.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bowlofpixels.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bowlofpixels.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bowlofpixels.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bowlofpixels.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bowlofpixels.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bowlofpixels.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bowlofpixels.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bowlofpixels.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bowlofpixels.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bowlofpixels.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bowlofpixels.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bowlofpixels.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bowlofpixels.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bowlofpixels.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bowlofpixels.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bowlofpixels.wordpress.com&amp;blog=3348419&amp;post=9&amp;subd=bowlofpixels&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bowlofpixels.wordpress.com/2008/04/07/a-new-lens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4907a56d5dd9c7f5f9aa0b9ae9f72d9b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Iwz</media:title>
		</media:content>
	</item>
		<item>
		<title>A Brilliant Site For Free-lance Webdesigners.</title>
		<link>http://bowlofpixels.wordpress.com/2008/04/06/a-brilliant-site-for-free-lance-webdesigners/</link>
		<comments>http://bowlofpixels.wordpress.com/2008/04/06/a-brilliant-site-for-free-lance-webdesigners/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 01:18:12 +0000</pubDate>
		<dc:creator>Iwz</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://bowlofpixels.wordpress.com/?p=8</guid>
		<description><![CDATA[Summary: A great site for new or young webdesigners to learn the trade and let the work come to them, instead of always having to find work themselves.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bowlofpixels.wordpress.com&amp;blog=3348419&amp;post=8&amp;subd=bowlofpixels&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Looking to wet your tongue in the webdesigning world? I came across a site today, 99designs.com</p>
<p>Bascially it&#8217;s a graphics competition website. We&#8217;re companies in need of new layouts, logo, promotional designs hold competitions. Where anyone registered to the site can enter. The prize pots are usually quite large, $200+ for a logo etc.</p>
<p>In my opinion this is a great way to &#8216;wet your beak&#8217; in the designing world as it where and find out how you stack up against other designers.</p>
<p>I haven&#8217;t joined the site yet but certianly intend on doing so tomorrow. I&#8217;m pretty busy tonight and it is 2:15am.</p>
<p>If anybody knows of any website similar, i&#8217;d love to find out about it. Leave a comment :D</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bowlofpixels.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bowlofpixels.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bowlofpixels.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bowlofpixels.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bowlofpixels.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bowlofpixels.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bowlofpixels.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bowlofpixels.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bowlofpixels.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bowlofpixels.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bowlofpixels.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bowlofpixels.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bowlofpixels.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bowlofpixels.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bowlofpixels.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bowlofpixels.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bowlofpixels.wordpress.com&amp;blog=3348419&amp;post=8&amp;subd=bowlofpixels&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bowlofpixels.wordpress.com/2008/04/06/a-brilliant-site-for-free-lance-webdesigners/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4907a56d5dd9c7f5f9aa0b9ae9f72d9b?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Iwz</media:title>
		</media:content>
	</item>
	</channel>
</rss>
