<?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>These Days Labs &#187; Docs &amp; Guides</title>
	<atom:link href="http://labs.thesedays.com/category/webdevelopment/docs-guides/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.thesedays.com</link>
	<description></description>
	<lastBuildDate>Fri, 30 Jul 2010 12:41:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>An introduction to regular expressions</title>
		<link>http://labs.thesedays.com/2009/08/24/an-introduction-to-regular-expressions/</link>
		<comments>http://labs.thesedays.com/2009/08/24/an-introduction-to-regular-expressions/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 16:49:56 +0000</pubDate>
		<dc:creator>donotfold</dc:creator>
				<category><![CDATA[Docs & Guides]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[expressions]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regexp]]></category>
		<category><![CDATA[regular]]></category>
		<category><![CDATA[regular expressions]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://labs.thesedays.com/?p=147</guid>
		<description><![CDATA[

Wikipedia describes Regular Expressions like this: &#8220;In computing, regular expressions provide a concise and flexible means for identifying strings of text of interest, such as particular characters, words, or patterns of characters.&#8221;. That&#8217;s almost as clear as a fresh glass of one of the finest Belgian beers   In this post I’ll try my [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%3A%2F%2Flabs.thesedays.com%2F2009%2F08%2F24%2Fan-introduction-to-regular-expressions%2F%22%2C%20%22style%22%3A%20%22small%22%2C%20%22title%22%3A%20%22An%20introduction%20to%20regular%20expressions%22%20%7D);"></div>
<p>Wikipedia <a href="http://en.wikipedia.org/wiki/Regular_expression" target="_blank">describes</a> Regular Expressions like this: <em>&#8220;In computing, regular expressions provide a concise and flexible means for identifying strings of text of interest, such as particular characters, words, or patterns of characters.&#8221;</em>. <a href="http://www.flickr.com/photos/stijnvm/3457177822/" target="_blank">That&#8217;s almost as clear as a fresh glass of one of the finest Belgian beers</a> <img src='http://labs.thesedays.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  In this post I’ll try my best to get you familiarized with the basics of Regular Expressions.</p>
<p><strong>What?</strong></p>
<p>Regular Expressions (regex or regexp) are a very powerful &#8220;tool&#8221; that&#8217;s available is most common programming languages (PHP, Actionscript, Javascript, C#, &#8230;) but can be quite complex to grasp. Simply put: <em>It&#8217;s a unified way of finding or replacing complex parts of a string.</em> Well, it can be much more complex than that, but I guess this is the most common reason why we use regex.</p>
<p><strong>How?</strong></p>
<p>Some <a href="http://en.wikipedia.org/wiki/Stephen_Cole_Kleene" target="_blank">smart bloke</a> just decided to use <strong>patterns</strong> to define Regular Expressions. These patterns are predefined and you just got to learn them by heart (yeah, of course&#8230; there are tools available, more on that later). Some pattern examples:</p>
<p><strong>\d</strong> searches for a digit<br />
<strong>[a-z] </strong>searches for a single character in the range from a to z<br />
<strong>(a|b)</strong> searches for the string &#8220;a&#8221; OR the &#8220;b&#8221;<br />
<strong>a{2,4}</strong> searches for at least 2 &#8220;a&#8221; characters next to each other and maximum 4 (for example: &#8220;a&#8221; and &#8220;aaaaa&#8221; won&#8217;t match, but &#8220;aa&#8221;, &#8220;aaa&#8221; and &#8220;aaaa&#8221; would)</p>
<p><strong>E-mail validation</strong></p>
<p>Although the examples above are quite clear, the whole concept of Regular Expressions might still seem a little vague to you. So to fully explain regex I think it&#8217;s better to give you a real life example of probably the most common use of regex: e-mail validation. Emails addresses always have a similar structure: &lt;part.one&gt;@&lt;part.two&gt;.&lt;tld&gt; (I deliberately used a point in the first two parts because it can contain a point, but it might as well can contain a dash or an underscore). This could be a good example of a regex for e-mail validation:</p>
<pre class="brush: php">
([a-zA-Z0-9_\.\-])+@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+
</pre>
<p>If you&#8217;re new to regex you might find the code above pretty unreadable, but I think it&#8217;s probably the most readable version of a regex for e-mail validation. <img src='http://labs.thesedays.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  This one is not:</p>
<pre class="brush: php">
/^\S+@\S+\.\S+$/
</pre>
<p>Now you know that there always are multiple solutions to get the same effect, but don&#8217;t let that scare you off, let&#8217;s go trough the first example step by step:</p>
<ol>
<li> ([<strong>a-zA-Z0-9</strong>])<strong>+</strong> will match any character in the range from a to z and A to Z (case sensitive) and 0 to 9. Because of the + after the brackets it will fetch multiple chars (unlimited number).</li>
<li> ([a-zA-Z0-9<strong>_\.\-</strong>])+ to allow an underscore, point and dash, you just add these characters (notice the backslash, this is used because a point and dash have a predefined regex meaning too).</li>
<li> @ this is the actual @ character from the e-mail address <img src='http://labs.thesedays.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li> (<strong>([a-zA-Z0-9\-])+</strong>\.)+ same here, the a to z, A to Z and 0 to 9 allow all chars in that range plus the dash and at the end a point. Notice the plus at the end, with this the previous group can be matched multiple times.</li>
<li>([a-zA-Z0-9]<strong>{2,4}</strong>)+ the last bit, same story a to z, A to Z and 0 to 9 but in stead of unlimited chars it&#8217;s limited by 2, 3 or 4. That&#8217;s done with the curly brackets.</li>
</ol>
<p>Now you know how it&#8217;s done, but it&#8217;s going to take a while to get used to and even longer to write them yourself. When you are making Regular Expressions, you often look at the result and are almost amazed that you wrote them yourself, because they look so complex when they are done.</p>
<p>The idea of regex is simple, but you have to write them one step at the time. That&#8217;s the same when you are learning regex: one step at the time. First you&#8217;ll be reading them, understanding them, making some modifications of your own, until you end up writing them yourself. It&#8217;s very important that you know exactly what everything does, for example the curly braces (to limit the previous found element) or the dash (used to find a range of chars). To learn the pattern syntax, check out <a href="http://en.wikipedia.org/wiki/Regular_expression_examples" target="_blank">this page</a> or Google for regex examples.</p>
<p><strong>Tools</strong></p>
<p>There are numerous tools available to make Regular expressions. One of the best is <a href="http://gskinner.com/RegExr/" target="_blank">this RegExr app by gskinner</a>. He made an <a href="http://gskinner.com/RegExr/desktop/" target="_blank">Adobe AIR desktop app</a> out of it too.</p>
<p><strong>Real life examples (Actionscript, Javascript and PHP)</strong></p>
<p>As I said before, there are always multiple solutions for making a regex. Below some real-life examples on how to use e-mail validating Regular Expressions in AS3, JS and PHP:<strong><br />
</strong></p>
<p>AS3</p>
<pre class="brush: php">
private function validMail(mail:String):Boolean {
    var emailExpression:RegExp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/i;
    return emailExpression.test(mail);
}
</pre>
<p>Javascript version:</p>
<pre class="brush: php">
function isEmail(v) {
    return /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/.test(v);
}
</pre>
<p>PHP version:</p>
<pre class="brush: php">
function isEmail($email) {
    $regex = &#039;/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+/&#039;;
    preg_match($regex, $email, $isEmail);
    return (bool) !empty($isEmail);
}
</pre>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://labs.thesedays.com/2009/08/24/an-introduction-to-regular-expressions/&amp;title=An+introduction+to+regular+expressions" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://labs.thesedays.com/2009/08/24/an-introduction-to-regular-expressions/&amp;title=An+introduction+to+regular+expressions" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://labs.thesedays.com/2009/08/24/an-introduction-to-regular-expressions/&amp;title=An+introduction+to+regular+expressions" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://labs.thesedays.com/2009/08/24/an-introduction-to-regular-expressions/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://labs.thesedays.com/2009/08/24/an-introduction-to-regular-expressions/&amp;t=An+introduction+to+regular+expressions" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=An+introduction+to+regular+expressions+-+http://bit.ly/9ieOcQ+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://labs.thesedays.com/2009/08/24/an-introduction-to-regular-expressions/&amp;title=An+introduction+to+regular+expressions&amp;summary=Wikipedia%20describes%20Regular%20Expressions%20like%20this%3A%20%22In%20computing%2C%20regular%20expressions%20provide%20a%20concise%20and%20flexible%20means%20for%20identifying%20strings%20of%20text%20of%20interest%2C%20such%20as%20particular%20characters%2C%20words%2C%20or%20patterns%20of%20characters.%22.%20That%27s%20almost%20as%20clear%20as%20a%20fresh%20glass%20of%20one%20of%20the%20finest%20Belg&amp;source=These Days Labs" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://labs.thesedays.com/2009/08/24/an-introduction-to-regular-expressions/&amp;t=An+introduction+to+regular+expressions" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


]]></content:encoded>
			<wfw:commentRss>http://labs.thesedays.com/2009/08/24/an-introduction-to-regular-expressions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Modulo Saves Lives&#8230; and Time!</title>
		<link>http://labs.thesedays.com/2009/08/03/the-modulo-saves-lives-and-time/</link>
		<comments>http://labs.thesedays.com/2009/08/03/the-modulo-saves-lives-and-time/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 22:11:26 +0000</pubDate>
		<dc:creator>doccie</dc:creator>
				<category><![CDATA[Docs & Guides]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[best practice]]></category>
		<category><![CDATA[division]]></category>
		<category><![CDATA[modulo]]></category>
		<category><![CDATA[remainder]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://labs.thesedays.com/?p=62</guid>
		<description><![CDATA[

Today&#8217;s blog post features one of my favorite operators: the modulo (%). The modulo returns the remainder of the division of one number by another. So for instance if you divide 4 by 2, you will get zero. If you divide 4 by 3, you will get 1, and so on.
Below is a case in [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%3A%2F%2Flabs.thesedays.com%2F2009%2F08%2F03%2Fthe-modulo-saves-lives-and-time%2F%22%2C%20%22style%22%3A%20%22small%22%2C%20%22title%22%3A%20%22The%20Modulo%20Saves%20Lives...%20and%20Time%21%22%20%7D);"></div>
<p>Today&#8217;s blog post features one of my favorite operators: <strong>the modulo</strong> (%). The modulo returns the remainder of the division of one number by another. So for instance if you divide 4 by 2, you will get zero. If you divide 4 by 3, you will get 1, and so on.</p>
<p>Below is a case in which I often use the modulo operator. It&#8217;s basically a row counter, most commonly used when you&#8217;re working with a grid. The code at the bottom, at least in my opinion, is much cleaner and above all, shorter, than the code above it.</p>
<pre class="brush: php">

$counter = 0;
$total = 4;

// Good code

if($counter &amp;amp;amp;amp;amp;lt; $total){
$counter++;
}else{
$counter = 0;
}

// BETTER code...

$counter++;
$counter = $counter % $total;
</pre>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://labs.thesedays.com/2009/08/03/the-modulo-saves-lives-and-time/&amp;title=The+Modulo+Saves+Lives...+and+Time%21" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://labs.thesedays.com/2009/08/03/the-modulo-saves-lives-and-time/&amp;title=The+Modulo+Saves+Lives...+and+Time%21" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://labs.thesedays.com/2009/08/03/the-modulo-saves-lives-and-time/&amp;title=The+Modulo+Saves+Lives...+and+Time%21" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://labs.thesedays.com/2009/08/03/the-modulo-saves-lives-and-time/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://labs.thesedays.com/2009/08/03/the-modulo-saves-lives-and-time/&amp;t=The+Modulo+Saves+Lives...+and+Time%21" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=The+Modulo+Saves+Lives...+and+Time%21+-+http://bit.ly/9nCXkq+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://labs.thesedays.com/2009/08/03/the-modulo-saves-lives-and-time/&amp;title=The+Modulo+Saves+Lives...+and+Time%21&amp;summary=Today%27s%20blog%20post%20features%20one%20of%20my%20favorite%20operators%3A%20the%20modulo%20%28%25%29.%20The%20modulo%20returns%20the%20remainder%20of%20the%20division%20of%20one%20number%20by%20another.%20So%20for%20instance%20if%20you%20divide%204%20by%202%2C%20you%20will%20get%20zero.%20If%20you%20divide%204%20by%203%2C%20you%20will%20get%201%2C%20and%20so%20on.%0D%0A%0D%0ABelow%20is%20a%20case%20in%20which%20I%20often%20use%20the%20mo&amp;source=These Days Labs" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://labs.thesedays.com/2009/08/03/the-modulo-saves-lives-and-time/&amp;t=The+Modulo+Saves+Lives...+and+Time%21" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


]]></content:encoded>
			<wfw:commentRss>http://labs.thesedays.com/2009/08/03/the-modulo-saves-lives-and-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reference guides ++</title>
		<link>http://labs.thesedays.com/2009/07/23/reference-guides-2/</link>
		<comments>http://labs.thesedays.com/2009/07/23/reference-guides-2/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 11:00:18 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Docs & Guides]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[cheat]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[sheet]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://labs.thesedays.com/?p=30</guid>
		<description><![CDATA[

More:

jQuery select element cheatsheet
Flex 3.0 Cheat sheet (by digitalchickenscratch)

and many more on Cheat sheets.org.





		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Share this on Reddit
		
		
			Share this on Technorati
		
		
			Share this on Facebook
		
		
			Tweet This!
		
		
			Share this on Linkedin
		
		
			Submit this to Hacker News
		






]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%3A%2F%2Flabs.thesedays.com%2F2009%2F07%2F23%2Freference-guides-2%2F%22%2C%20%22style%22%3A%20%22small%22%2C%20%22title%22%3A%20%22Reference%20guides%20%2B%2B%22%20%7D);"></div>
<p>More:</p>
<ul>
<li><a href="http://labs.thesedays.com/wp-content/uploads/2009/07/select_element_cheatsheet.pdf" target="_blank">jQuery select element cheatsheet</a></li>
<li><a href="http://labs.thesedays.com/wp-content/uploads/2009/07/flex-chear-sheet.pdf" target="_blank">Flex 3.0 Cheat sheet</a> (by <a href="http://www.digitalchickenscratch.com/misc/flex-css/" target="_blank">digitalchickenscratch</a>)</li>
</ul>
<p>and many more on <a href="http://www.cheat-sheets.org/" target="_blank">Cheat sheets.org</a>.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://labs.thesedays.com/2009/07/23/reference-guides-2/&amp;title=Reference+guides+%2B%2B" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://labs.thesedays.com/2009/07/23/reference-guides-2/&amp;title=Reference+guides+%2B%2B" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://labs.thesedays.com/2009/07/23/reference-guides-2/&amp;title=Reference+guides+%2B%2B" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://labs.thesedays.com/2009/07/23/reference-guides-2/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://labs.thesedays.com/2009/07/23/reference-guides-2/&amp;t=Reference+guides+%2B%2B" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Reference+guides+%2B%2B+-+http://bit.ly/cgTKgL+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://labs.thesedays.com/2009/07/23/reference-guides-2/&amp;title=Reference+guides+%2B%2B&amp;summary=More%3A%0D%0A%0D%0A%09jQuery%20select%20element%20cheatsheet%0D%0AFlex%203.0%20Cheat%20sheet%20%28by%20digitalchickenscratch%29%0D%0A%0D%0A%0D%0Aand%20many%20more%20on%20Cheat%20sheets.org.&amp;source=These Days Labs" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://labs.thesedays.com/2009/07/23/reference-guides-2/&amp;t=Reference+guides+%2B%2B" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


]]></content:encoded>
			<wfw:commentRss>http://labs.thesedays.com/2009/07/23/reference-guides-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reference guides</title>
		<link>http://labs.thesedays.com/2009/07/17/reference-guides/</link>
		<comments>http://labs.thesedays.com/2009/07/17/reference-guides/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 07:53:18 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Docs & Guides]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[cheat]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css2]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[sheet]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://labs.thesedays.com/?p=21</guid>
		<description><![CDATA[

The people at veign.com have created several reference guides that give a quick and handy reference on the standards that will be the foundation for all websites. Many thx to Veign and let&#8217;s print all of them and hang them above our bed like real geeks should do  

CSS2
CSS3
HTML5
SQL
FONTS
Color






		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Share this [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%3A%2F%2Flabs.thesedays.com%2F2009%2F07%2F17%2Freference-guides%2F%22%2C%20%22style%22%3A%20%22small%22%2C%20%22title%22%3A%20%22Reference%20guides%22%20%7D);"></div>
<p>The people at <a href="http://www.veign.com" target="_blank">veign.com</a> have created several reference guides that give a quick and handy reference on the standards that will be the foundation for all websites. Many thx to Veign and let&#8217;s print all of them and hang them above our bed like real geeks should do <img src='http://labs.thesedays.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li><a href="http://labs.thesedays.com/wp-content/uploads/2009/07/css2.pdf" target="_blank">CSS2</a></li>
<li><a href="http://labs.thesedays.com/wp-content/uploads/2009/07/css3.pdf" target="_blank">CSS3</a></li>
<li><a href="http://labs.thesedays.com/wp-content/uploads/2009/07/html5.pdf" target="_blank">HTML5</a></li>
<li><a href="http://labs.thesedays.com/wp-content/uploads/2009/07/sql.pdf" target="_blank">SQL</a></li>
<li><a href="http://labs.thesedays.com/wp-content/uploads/2009/07/fonts.pdf" target="_blank">FONTS</a></li>
<li><a href="http://labs.thesedays.com/wp-content/uploads/2009/07/color.pdf" target="_blank">Color</a></li>
</ul>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://labs.thesedays.com/2009/07/17/reference-guides/&amp;title=Reference+guides" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://labs.thesedays.com/2009/07/17/reference-guides/&amp;title=Reference+guides" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://labs.thesedays.com/2009/07/17/reference-guides/&amp;title=Reference+guides" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://labs.thesedays.com/2009/07/17/reference-guides/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://labs.thesedays.com/2009/07/17/reference-guides/&amp;t=Reference+guides" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Reference+guides+-+http://bit.ly/bz5Ifc+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://labs.thesedays.com/2009/07/17/reference-guides/&amp;title=Reference+guides&amp;summary=The%20people%20at%20veign.com%20have%20created%20several%20reference%20guides%20that%20give%20a%20quick%20and%20handy%20reference%20on%20the%20standards%20that%20will%20be%20the%20foundation%20for%20all%20websites.%20Many%20thx%20to%20Veign%20and%20let%27s%20print%20all%20of%20them%20and%20hang%20them%20above%20our%20bed%20like%20real%20geeks%20should%20do%20%3A%29%0D%0A%0D%0A%09CSS2%0D%0A%09CSS3%0D%0A%09HTML5%0D%0A%09SQL%0D%0A%09FO&amp;source=These Days Labs" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://labs.thesedays.com/2009/07/17/reference-guides/&amp;t=Reference+guides" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


]]></content:encoded>
			<wfw:commentRss>http://labs.thesedays.com/2009/07/17/reference-guides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
