<?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>Resources for Web Development Students @ Robin's Blog &#187; PHP/MySQL &amp; JavaScript</title>
	<atom:link href="http://www.robinsblog.com/category/web-design-sites/phpmysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robinsblog.com</link>
	<description>Resources for Web Development Students</description>
	<lastBuildDate>Fri, 05 Mar 2010 17:13:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Transparent PNG 24 Images with Internet Explorer 6 for Beginners</title>
		<link>http://www.robinsblog.com/12232009/transparent-png-24-images-with-internet-explorer-6-for-beginners/</link>
		<comments>http://www.robinsblog.com/12232009/transparent-png-24-images-with-internet-explorer-6-for-beginners/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 00:32:08 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[Browser Issues]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Class Notes]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=1692</guid>
		<description><![CDATA[<a href="http://www.robinsblog.com/12232009/transparent-png-24-images-with-internet-explorer-6-for-beginners/"><img align="left" hspace="5" width="150" src="http://www.robinsblog.com/wp-content/uploads/2009/12/badpng.gif" class="alignleft wp-post-image tfe" alt="PNG 24 display problem" title="PNG 24 display problem" /></a>
A common question in class is &#8220;how do I overlap images and still see the background?&#8221; The answer, you use some type of transparent image. Traditionally we used a transparent GIF, but the quality isn&#8217;t so great. PNG has really become the preferred image format for transparency. PNG 8 gives you a transparent image, but you may see some white [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.robinsblog.com/wp-content/uploads/2009/12/badpng.gif" alt="PNG 24 display problem" title="PNG 24 display problem" width="352" height="96" class="center" /></p>
<p>A common question in class is &#8220;how do I overlap images and still see the background?&#8221; The answer, you use some type of transparent image. Traditionally we used a transparent GIF, but the quality isn&#8217;t so great. PNG has really become the preferred image format for transparency. PNG 8 gives you a transparent image, but you may see some white pixels around the edges of the image. PNG 24 transparent images are crisp and clean, but sometimes a bit bloated. Still PNG 24 now being widely used.</p>
<p>Unfortunately, it is well documented that transparent PNG 24 images will not display properly in Internet Explorer 6 without applying some type of fix. Instead of getting a truly transparent image you will see a blue background around the image like the image above.  I&#8217;m not going to go into the technical reasoning for this problem, this is an article for beginners and there are numerous fixes and articles for this issue, <a href="http://perishablepress.com/press/2008/05/28/css-hackz-series-png-fix-for-internet-explorer/">Perishable Press has a great write up on the subject</a>. </p>
<p>I&#8217;ve prepared a page that shows both of these problems; this page was created from the Six Revisions&#8217; tutorials <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-grunge-web-design-using-photoshop/">How to Create a Grunge Web Design Using Photoshop</a> and <a href="http://sixrevisions.com/tutorials/web-development-tutorials/how-to-code-a-grunge-web-design-from-scratch/">How to Code a Grunge Web Design from Scratch</a> &#8211; great tutorials, but I&#8217;ll write about that later. If you <a href="http://theplacetoplay.com/grunge/indexbadpng.html">open my PNG transparency example page</a> in Internet Explorer 6 you should see that the header image &#8220;Get Your Hands Dirty&#8221; has a blue background &#8211; not good. If you look at the heading &#8220;Featured Work&#8221;, a PNG 8 image, you should notice, albeit subtle, little white dots around the edges of the image &#8211; not good either. If you look at the heading &#8220;About this Website&#8221;, a transparent GIF, you will also see the little white dots around the edges of the image. </p>
<p>Now if you look at my <a href="http://theplacetoplay.com/grunge/">example with PNG 24 images and a JavaScript fix</a> applied in Internet Explorer 6 you will see that all of the images look great.</p>
<p>So how did I fix this? If you read the article <a href="http://perishablepress.com/press/2008/05/28/css-hackz-series-png-fix-for-internet-explorer/">PNG Fix for Internet Explorer</a> from Perishable Press you will see that there is a general method for fixing PNG 24 images in IE 6. You&#8217;re going to need to create an IE specific CSS file, this file is linked in the head section of your HTML document after your regular CSS link within conditional comments.</p>
<pre><code>&lt;link href="styles.css" rel="stylesheet" type="text/css" /&gt;

&lt;!--[if lt IE 7]&gt; 

&lt;link rel="stylesheet" type="text/css" href="ie-specific.css" /&gt; 

&lt; ![endif]--&gt;</code></pre>
<p>The conditional comment starts with
<pre><code>&lt;!--[if lt IE 7]&gt;</code></pre>
<p>This tells the browser that if the visitor is using a browser version older than IE 7 then use this special CSS file in addition to the styles.css file. It doesn&#8217;t replace the styles.css file, it just allows you to send specific CSS rules to IE 6. </p>
<p>In the ie-specific.css file you will need one declaration for the transparency fix.</p>
<pre><code>
.png { behavior: url(png.htc); }
</code></pre>
<p>You created a class called png. Behavior is a CSS property that allows you to attach a script to an element, class, or id. The png.htc file contains a JavaScript that will fix the PNG 24 display issues in IE 6 and earlier versions. You can learn more about this property and htc files in the <a href="http://reference.sitepoint.com/css/behavior#">SitePoint Reference</a>.</p>
<p>You also need a special JavaScript file, the htc file. You will find this file all over the Internet, but here is a <a href="http://www.robinsblog.com/png.zip">zip of the png.htc</a> file that I used. You will also need a <a href="http://www.robinsblog.com/transparent.zip">transparent GIF file</a>, this is a 1px x 1px transparent GIF that the HTC file uses.</p>
<p>To make this fix easier to use, the files ie-specific.css, png.htc, and transparent.gif should be placed in the same folder. If you place them in different folders you will need to edit the paths in the CSS file and the HTC file. This isn&#8217;t really a big deal, but sometimes it can cause problems for the beginner.</p>
<p>Ok, you have got your CSS file created and linked using conditional comments, your HTC file and transparent GIF files are in the same folder as your CSS and you preview your page in IE 6 and it still looks like crap, oh I mean bad. We&#8217;ve got a little more editing to do &#8211; remember that class we created in the ie-specific.css file? Ok, in case you forgot, this one</p>
<pre><code>
.png { behavior: url(png.htc); }
</code></pre>
<p>You now have to apply this class in your HTML file whenever you use a PNG 24 image. For example the <a href="http://theplacetoplay.com/grunge/">&#8220;Get Your Hands Dirty&#8221; PNG 24 logo</a> was applied as a background image in the main styles.css file with this code</p>
<pre><code>h1 a {
display: block;
background: url(images/title.png) no-repeat left top;
float: left;
height: 92px;
width: 426px;
}</code></pre>
<p>so the png class from the ie-specific.css file needed to be added to the HTML</p>
<pre><code>&lt;h1&gt;&lt;a href="#" class="png"&gt;Get Your Hands Dirty&lt;/a&gt;&lt;/h1&gt;</code></pre>
<p>Here is another example of how it was added to the featured work image</p>
<pre><code>&lt;h2 class="featured-work png"&gt;Featured Work&lt;/h2&gt;</code></pre>
<p>In the above example two classes have been applied &#8211; featured-work is from the main styles.css file and png is from the ie-specific.css file.</p>
<p>The ie-specific.css file can also contain other declarations that are for Internet Explorer 6 only; you are not limited to using this file just for fixing transparent PNG files. Anytime you think about putting <strong>* html</strong> in your regular CSS file to fix an IE 6 issue you can put the declaration in the ie-specific.css file instead. </p>
<p>Again, there are numerous fixes for this issue and this may not be the perfect fix for you. Check out the great article at <a href="http://perishablepress.com/press/2008/05/28/css-hackz-series-png-fix-for-internet-explorer/">Perishable Press on the subject</a> or remember that Google is your friend. </p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/10292009/css-comments-for-beginners/" rel="bookmark">CSS Comments for Beginners</a></li><li><a href="http://www.robinsblog.com/01132010/easy-to-follow-photoshop-tutorials-for-creating-portfolio-layouts/" rel="bookmark">Easy to Follow Photoshop Tutorials for Creating Portfolio Layouts</a></li><li><a href="http://www.robinsblog.com/12192007/creating-simple-striped-background-images/" rel="bookmark">Creating Simple Striped Background Images</a></li><li><a href="http://www.robinsblog.com/03112005/changing-file-associations/" rel="bookmark">Changing File Associations</a></li><li><a href="http://www.robinsblog.com/03242005/basic-steps-to-create-the-site-in-an-hour/" rel="bookmark">Basic Steps to Create the Site-in-an-Hour</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/12232009/transparent-png-24-images-with-internet-explorer-6-for-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML &amp; CSS Coding Resources</title>
		<link>http://www.robinsblog.com/06242009/html-css-coding-resources/</link>
		<comments>http://www.robinsblog.com/06242009/html-css-coding-resources/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 16:58:27 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=1216</guid>
		<description><![CDATA[<a href="http://www.robinsblog.com/06242009/html-css-coding-resources/"><img align="left" hspace="5" width="150" height="150" src="http://www.robinsblog.com/wp-content/uploads/2009/06/redlight800-150x150.jpg" class="alignleft wp-post-image tfe" alt="Red Light" title="Red Light" /></a>
This is a roundup of wonderful articles that deal with coding Web pages. Most are tips on HTML &#38; CSS, but there are also a few JavaScript and PHP resources.
Remember, these are articles I &#8220;tweet&#8221; on Twitter. Click the @username to see the posts of some of the people who I respect and love to &#8220;follow&#8221; on Twitter, the #hashtags [...]]]></description>
			<content:encoded><![CDATA[<p><img class="centered" title="Red Light" src="http://www.robinsblog.com/wp-content/uploads/2009/06/redlight800.jpg" alt="Red Light" width="500" height="375" /></p>
<p>This is a roundup of wonderful articles that deal with coding Web pages. Most are tips on HTML &amp; CSS, but there are also a few JavaScript and PHP resources.</p>
<p>Remember, these are articles I &#8220;tweet&#8221; on <a title="Aren't you on Twitter Yet?" href="http://www.twitter.com">Twitter</a>. Click the @<a href="http://twitter.com/username" rel="nofollow" target="_blank" title="View username's Twitter Profile">username</a> to see the posts of some of the people who I respect and love to &#8220;follow&#8221; on Twitter, the #<a href="http://search.twitter.com/search?q=%23hashtags" rel="nofollow" target="_blank" title="Search Twitter for &quot;hashtags&quot;">hashtags</a> to search the related topics, and of course the actual links to read the awesome articles.</p>
<p><strong>HTML &amp; CSS Coding Resources</strong></p>
<ol>
<li>Handy Tips for Creating a Print #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Stylesheet <a href="http://bit.ly/XRk08">http://bit.ly/XRk08</a></li>
<li>In the Woods &#8211; HTML, CSS, PHP and jQuery Killer Tutorials <a href="http://tr.im/kif7">http://tr.im/kif7</a> (via @<a href="http://twitter.com/del_javascript" rel="nofollow" target="_blank" title="View del_javascript's Twitter Profile">del_javascript</a> @<a href="http://twitter.com/IsaacVanName" rel="nofollow" target="_blank" title="View IsaacVanName's Twitter Profile">IsaacVanName</a>)</li>
<li>RT @<a href="http://twitter.com/mlane" rel="nofollow" target="_blank" title="View mlane's Twitter Profile">mlane</a>: 13 Must-Have Add-ons To Strengthen Firebug &#8211; <a href="http://bit.ly/14KZQ0">http://bit.ly/14KZQ0</a></li>
<li>Adaptive #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Layouts: New Era In Fluid Layouts? <a href="http://bit.ly/13gUdJ">http://bit.ly/13gUdJ</a></li>
<li>RT @<a href="http://twitter.com/nishanjoomun" rel="nofollow" target="_blank" title="View nishanjoomun's Twitter Profile">nishanjoomun</a>: Experimental #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> compatibility table <a href="http://tinyurl.com/qre2cb">http://tinyurl.com/qre2cb</a></li>
<li>6 Reasons Why Designers Should Code <a href="http://bit.ly/n7IXQ">http://bit.ly/n7IXQ</a> great article and discussion</li>
<li>6 Free PSD/(X)HTML-Templates <a href="http://bit.ly/g96kg">http://bit.ly/g96kg</a></li>
<li>RT @<a href="http://twitter.com/Koufie" rel="nofollow" target="_blank" title="View Koufie's Twitter Profile">Koufie</a>: 16+ Easy #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Techniques that Simplify the Webdesigner’s Life <a href="http://is.gd/O9wB">http://is.gd/O9wB</a></li>
<li>Fixed vs. Fluid vs. Elastic #<a href="http://search.twitter.com/search?q=%23Website" rel="nofollow" target="_blank" title="Search Twitter for &quot;Website&quot;">Website</a> Layout: What&#8217;s The Right One For You? <a href="http://bit.ly/OqF1M">http://bit.ly/OqF1M</a> (via @<a href="http://twitter.com/phaoloo" rel="nofollow" target="_blank" title="View phaoloo's Twitter Profile">phaoloo</a>)</li>
<li>RT @<a href="http://twitter.com/mlane" rel="nofollow" target="_blank" title="View mlane's Twitter Profile">mlane</a>: Everything You Need to Know About the !important #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Declaration &#8211; <a href="http://bit.ly/V69B7">http://bit.ly/V69B7</a></li>
<li>RT @<a href="http://twitter.com/pairadocsdesign" rel="nofollow" target="_blank" title="View pairadocsdesign's Twitter Profile">pairadocsdesign</a> @<a href="http://twitter.com/giographix" rel="nofollow" target="_blank" title="View giographix's Twitter Profile">giographix</a>: 10 #<a href="http://search.twitter.com/search?q=%23HTML" rel="nofollow" target="_blank" title="Search Twitter for &quot;HTML&quot;">HTML</a> Tag Crimes You Really Shouldn’t Commit <a href="http://bit.ly/DPYcg">http://bit.ly/DPYcg</a></li>
<li>Best of TutorialFeed <a href="http://bit.ly/17yCrI">http://bit.ly/17yCrI</a> <a href="http://ff.im/3t1EM">http://ff.im/3t1EM</a> (via @<a href="http://twitter.com/mytutorialfeed" rel="nofollow" target="_blank" title="View mytutorialfeed's Twitter Profile">mytutorialfeed</a>) #<a href="http://search.twitter.com/search?q=%23css" rel="nofollow" target="_blank" title="Search Twitter for &quot;css&quot;">css</a> and more</li>
<li>10 Professional Looking Free #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Menu’s &#8211; <a href="http://bit.ly/VgZ3j">http://bit.ly/VgZ3j</a> (via @<a href="http://twitter.com/Minervity" rel="nofollow" target="_blank" title="View Minervity's Twitter Profile">Minervity</a>)</li>
<li>14 Free Tools To Validate Your #<a href="http://search.twitter.com/search?q=%23HTML" rel="nofollow" target="_blank" title="Search Twitter for &quot;HTML&quot;">HTML</a>, #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> &amp; #<a href="http://search.twitter.com/search?q=%23RSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;RSS&quot;">RSS</a> Feeds <a href="http://is.gd/Ika9">http://is.gd/Ika9</a> (via @<a href="http://twitter.com/briancray" rel="nofollow" target="_blank" title="View briancray's Twitter Profile">briancray</a>)</li>
<li>RT @<a href="http://twitter.com/ronicadesign" rel="nofollow" target="_blank" title="View ronicadesign's Twitter Profile">ronicadesign</a>: 30 Tutorials On Converting A PSD To #<a href="http://search.twitter.com/search?q=%23XHTML" rel="nofollow" target="_blank" title="Search Twitter for &quot;XHTML&quot;">XHTML</a> And #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> &gt; <a href="http://bit.ly/qJEJJ">http://bit.ly/qJEJJ</a> #<a href="http://search.twitter.com/search?q=%23photoshop" rel="nofollow" target="_blank" title="Search Twitter for &quot;photoshop&quot;">photoshop</a></li>
<li>RT @<a href="http://twitter.com/ruhanirabin" rel="nofollow" target="_blank" title="View ruhanirabin's Twitter Profile">ruhanirabin</a> @<a href="http://twitter.com/IsaacVanName" rel="nofollow" target="_blank" title="View IsaacVanName's Twitter Profile">IsaacVanName</a> @<a href="http://twitter.com/designresources" rel="nofollow" target="_blank" title="View designresources's Twitter Profile">designresources</a> #<a href="http://search.twitter.com/search?q=%23CSS" rel="nofollow" target="_blank" title="Search Twitter for &quot;CSS&quot;">CSS</a> Tip: Create effective headline typography &#8211; <a href="http://bit.ly/OiHfc">http://bit.ly/OiHfc</a></li>
<li>How AJAX Works: 10 Practical Uses For #<a href="http://search.twitter.com/search?q=%23AJAX" rel="nofollow" target="_blank" title="Search Twitter for &quot;AJAX&quot;">AJAX</a> <a href="http://bit.ly/6qpw2">http://bit.ly/6qpw2</a> (via @<a href="http://twitter.com/webdesign_news" rel="nofollow" target="_blank" title="View webdesign_news's Twitter Profile">webdesign_news</a>) great for students!</li>
<li>RT @<a href="http://twitter.com/paviles" rel="nofollow" target="_blank" title="View paviles's Twitter Profile">paviles</a> @<a href="http://twitter.com/justdesign" rel="nofollow" target="_blank" title="View justdesign's Twitter Profile">justdesign</a> @<a href="http://twitter.com/RobStajo" rel="nofollow" target="_blank" title="View RobStajo's Twitter Profile">RobStajo</a>: #<a href="http://search.twitter.com/search?q=%23jQuery" rel="nofollow" target="_blank" title="Search Twitter for &quot;jQuery&quot;">jQuery</a> for Absolute Beginners: The Complete Series: <a href="http://is.gd/qNYE">http://is.gd/qNYE</a></li>
</ol>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/06222009/oodles-of-web-design-resources/" rel="bookmark">Oodles of Web Design Resources</a></li><li><a href="http://www.robinsblog.com/06202009/wordpress-resource-roundup/" rel="bookmark">WordPress Resource Roundup</a></li><li><a href="http://www.robinsblog.com/06192009/beautiful-photos-and-photography-resources/" rel="bookmark">Beautiful Photos and Photography Resources</a></li><li><a href="http://www.robinsblog.com/01112010/twitter-web-design-and-development-updates-for-june-2009-part-1/" rel="bookmark">Twitter Web Design and Development Updates for June 2009 - Part 1</a></li><li><a href="http://www.robinsblog.com/06182009/great-resources-around-the-web-freelance-edition/" rel="bookmark">Great Resources Around The Web: Freelance Edition</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/06242009/html-css-coding-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>100 Web Design Cheat Sheets that Will Save you Time, Money &amp; Mistakes</title>
		<link>http://www.robinsblog.com/03262009/100-web-design-cheat-sheets-that-will-save-you-time-money-mistakes/</link>
		<comments>http://www.robinsblog.com/03262009/100-web-design-cheat-sheets-that-will-save-you-time-money-mistakes/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 17:06:25 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Graphics (Photoshop, Illustrator, Fireworks, etc.)]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=908</guid>
		<description><![CDATA[Web Design Schools Guide has compiled a list of 100 Terrific Web Design Cheat Sheets that Will Save you Time, Money and Mistakes.

Most web designers know that cheat sheets are incredibly useful. You can use them for quick reference, easy learning, and more. In this list, we’ve compiled an incredible collection of the 100 best and most useful cheat sheets [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignschoolsguide.com">Web Design Schools Guide</a> has compiled a list of <a href="http://www.webdesignschoolsguide.com/uncategorized/100-terrific-web-design-cheat-sheets-that-will-save-you-time-money-and-mistakes.html">100 Terrific Web Design Cheat Sheets that Will Save you Time, Money and Mistakes</a>.</p>
<blockquote><p>
Most web designers know that cheat sheets are incredibly useful. You can use them for quick reference, easy learning, and more. In this list, we’ve compiled an incredible collection of the 100 best and most useful cheat sheets out there.</p></blockquote>
<p>Topics include:</p>
<ul>
<li>Color</li>
<li>Adobe</li>
<li>HTML</li>
<li>CSS</li>
<li>Ajax</li>
<li>PHP</li>
<li>JavaScript</li>
<li>MySQL</li>
<li>Action Script</li>
<li>Miscellaneous</li>
</ul>
<p>Check out <a href="http://www.webdesignschoolsguide.com/uncategorized/100-terrific-web-design-cheat-sheets-that-will-save-you-time-money-and-mistakes.html">100 Terrific Web Design Cheat Sheets that Will Save you Time, Money and Mistakes</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/11052008/the-best-cheat-sheets-for-web-developers/" rel="bookmark">The Best Cheat Sheets for Web Developers</a></li><li><a href="http://www.robinsblog.com/12012008/40-useful-cheat-sheets-for-designers/" rel="bookmark">40+ Useful Cheat Sheets for Designers</a></li><li><a href="http://www.robinsblog.com/11142008/cheat-sheets-for-front-end-web-developers/" rel="bookmark">Cheat Sheets for Front-end Web Developers</a></li><li><a href="http://www.robinsblog.com/03162006/resources-to-make-xhtml-and-css-coding-easier/" rel="bookmark">Resources to Make XHTML and CSS Coding Easier</a></li><li><a href="http://www.robinsblog.com/09232005/css-cheat-sheets-and-reference/" rel="bookmark">CSS Cheat Sheets and Reference</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/03262009/100-web-design-cheat-sheets-that-will-save-you-time-money-mistakes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New JavaScript Unit</title>
		<link>http://www.robinsblog.com/01272009/new-javascript-unit/</link>
		<comments>http://www.robinsblog.com/01272009/new-javascript-unit/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 18:56:49 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[Class Notes]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=743</guid>
		<description><![CDATA[Due to negative student feedback, I have selected a new book for the JavaScript unit. We will now use JavaScript The Missing Manual, which includes more hands-on tutorials and was written by David Sawyer McFarland, the author of CSS The Missing Manual. Hopefully, students will be pleased with the new JavaScript unit &#8211; the explanations seem clearer and there are [...]]]></description>
			<content:encoded><![CDATA[<p>Due to negative student feedback, I have selected a new book for the <a href="http://jobskillsnow.com/webdes/javascriptmissingmanual.htm" title="ROP JavaScript Unit Assignment Sheet">JavaScript unit</a>. We will now use <a href="http://astore.amazon.com/robinswebdesignr/detail/0596515898" title="Order JavaScript the Missing Manual from Amazon">JavaScript The Missing Manual</a>, which includes more hands-on tutorials and was written by David Sawyer McFarland, the author of <a href="http://astore.amazon.com/robinswebdesignr/detail/0596526873" title="Order CSS the Missing Manual from Amazon">CSS The Missing Manual</a>. Hopefully, students will be pleased with the <a href="http://jobskillsnow.com/webdes/javascriptmissingmanual.htm" title="ROP JavaScript Unit Assignment Sheet">new JavaScript unit</a> &#8211; the explanations seem clearer and there are many tutorials for practice.</p>
<p>Just so that you are aware, <a href="http://astore.amazon.com/robinswebdesignr/detail/0596515898" title="Order JavaScript the Missing Manual from Amazon">JavaScript The Missing Manual</a> was not available when the initial <a href="http://jobskillsnow.com/webdes/javascriptmissingmanual.htm" title="ROP JavaScript Unit">JavaScript unit</a> was developed. </p>
<p>A huge thank you to Talya J. for reviewing the book and submitting errors/notations to me. The publisher&#8217;s errata/errors can be found on the <a href="http://oreilly.com/catalog/9780596515898/errata/">O&#8217;Reilly Web site</a>. Be sure to print the &#8220;confirmed&#8221; and &#8220;unconfirmed&#8221; errors, as well as, the <a href="http://jobskillsnow.com/webdes/javascriptmissingmanual.htm" title="ROP JavaScript Unit Assignment Sheet">JavaScript assignment sheet</a>. </p>
<p>This unit will be supported by David H. on Tuesdays and Wednesdays.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/12052006/css-the-missing-manual/" rel="bookmark">CSS: The Missing Manual</a></li><li><a href="http://www.robinsblog.com/03062009/joomla-and-wordpress-units-now-available/" rel="bookmark">Joomla and WordPress Units Now Available</a></li><li><a href="http://www.robinsblog.com/02212007/learning-office-2007/" rel="bookmark">Learning Office 2007</a></li><li><a href="http://www.robinsblog.com/12122006/career-resources-available-in-class-to-help-you-with-your-job-search/" rel="bookmark">Career Resources Available in Class to Help You with Your Job Search</a></li><li><a href="http://www.robinsblog.com/06272005/doctype-statements-and-the-exercises-in-your-xhtml-book/" rel="bookmark">DocType and Your Lessons</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/01272009/new-javascript-unit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Firebug to Debug Code</title>
		<link>http://www.robinsblog.com/11202008/using-firebug-to-debug-code/</link>
		<comments>http://www.robinsblog.com/11202008/using-firebug-to-debug-code/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 14:02:41 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=617</guid>
		<description><![CDATA[Firebug is a Firefox extension that helps to troubleshoot, XHTML, CSS, and other coding issues you may encounter while developing Web sites. The Firebug extension is installed on all workstations and can be accessed by clicking Tools > Firebug > Open Firebug from the Firefox menu. 
Firebug Official Web Site
Introduction to Firebug
Build Better Pages With Firebug
Firebug Tutorial: Getting Started
HTML/CSS/Javascript in Firefox
Debugging [...]]]></description>
			<content:encoded><![CDATA[<p>Firebug is a Firefox extension that helps to troubleshoot, XHTML, CSS, and other coding issues you may encounter while developing Web sites. The Firebug extension is installed on all workstations and can be accessed by clicking <strong>Tools</strong> > <strong>Firebug</strong> > <strong>Open Firebug</strong> from the Firefox menu. </p>
<p><a href="http://getfirebug.com/">Firebug Official Web Site</a><br />
<a href="http://www.evotech.net/blog/2007/06/introduction-to-firebug/">Introduction to Firebug</a><br />
<a href="http://www.webmonkey.com/tutorial/Build_Better_Pages_With_Firebug">Build Better Pages With Firebug</a><br />
<a href="http://www.thetruetribe.com/javascript/30-javascript-design-patterns/81-firebug-tutorial-getting-started">Firebug Tutorial: Getting Started</a><br />
<a href="http://courses.csail.mit.edu/6.831/handouts/ps4/tutorial/index.html">HTML/CSS/Javascript in Firefox</a><br />
<a href="http://www.sweetvision.com/2007/04/15/debugging-javascript-in-firefox-with-firebug/">Debugging JavaScript in Firefox with Firebug</a><br />
<a href="http://www.digitalmediaminute.com/screencast/firebug-js/">Debugging JavaScript with Firebug</a><br />
<a href="http://michaelsync.net/2007/09/30/firebug-tutorial-script-tab-javascript-debugging">Firebug Tutorial &#8211; Script Tab : JavaScript Debugging</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/11242009/firebug-lite-for-internet-explorer-safari-opera-and-the-rest/" rel="bookmark">Firebug Lite for Internet Explorer, Safari, Opera and the Rest</a></li><li><a href="http://www.robinsblog.com/02052009/26-essential-firefox-add-ons-for-web-designers/" rel="bookmark">26 Essential Firefox Add-ons for Web Designers</a></li><li><a href="http://www.robinsblog.com/03242006/firefox-extensions-for-web-developers/" rel="bookmark">Firefox Extensions for Web Developers</a></li><li><a href="http://www.robinsblog.com/03112005/proofreading-javascript/" rel="bookmark">Proofreading JavaScript</a></li><li><a href="http://www.robinsblog.com/06242009/html-css-coding-resources/" rel="bookmark">HTML & CSS Coding Resources</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/11202008/using-firebug-to-debug-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Best Cheat Sheets for Web Developers</title>
		<link>http://www.robinsblog.com/11052008/the-best-cheat-sheets-for-web-developers/</link>
		<comments>http://www.robinsblog.com/11052008/the-best-cheat-sheets-for-web-developers/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 17:07:37 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=567</guid>
		<description><![CDATA[Cheat sheet is a reference tool that provides simple, brief instructions for accomplishing a specific task. We have collated a set of best cheat sheets for web developers. It includes some of the popular programming language, e.g. jQuery, Mootools, Prototype, PHP, MySQL and etc.
Check out the cheat sheets at Web Appers
Related Posts:Cheat Sheets for Front-end Web Developers40+ Useful Cheat Sheets [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Cheat sheet is a reference tool that provides simple, brief instructions for accomplishing a specific task. We have collated a set of best cheat sheets for web developers. It includes some of the popular programming language, e.g. jQuery, Mootools, Prototype, PHP, MySQL and etc.</p></blockquote>
<p><a href="http://www.webappers.com/2008/11/05/best-cheat-sheets-for-web-developers/">Check out the cheat sheets at Web Appers</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/11142008/cheat-sheets-for-front-end-web-developers/" rel="bookmark">Cheat Sheets for Front-end Web Developers</a></li><li><a href="http://www.robinsblog.com/12012008/40-useful-cheat-sheets-for-designers/" rel="bookmark">40+ Useful Cheat Sheets for Designers</a></li><li><a href="http://www.robinsblog.com/03262009/100-web-design-cheat-sheets-that-will-save-you-time-money-mistakes/" rel="bookmark">100 Web Design Cheat Sheets that Will Save you Time, Money & Mistakes</a></li><li><a href="http://www.robinsblog.com/03162006/resources-to-make-xhtml-and-css-coding-easier/" rel="bookmark">Resources to Make XHTML and CSS Coding Easier</a></li><li><a href="http://www.robinsblog.com/09232005/css-cheat-sheets-and-reference/" rel="bookmark">CSS Cheat Sheets and Reference</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/11052008/the-best-cheat-sheets-for-web-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Software, Resources, and other Goodies for Web Designers</title>
		<link>http://www.robinsblog.com/01112008/free-software-resources-and-other-goodies-for-web-designers/</link>
		<comments>http://www.robinsblog.com/01112008/free-software-resources-and-other-goodies-for-web-designers/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 16:46:29 +0000</pubDate>
		<dc:creator>Robin Wood</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Graphics (Photoshop, Illustrator, Fireworks, etc.)]]></category>
		<category><![CDATA[Hosting Resources]]></category>
		<category><![CDATA[Job Search]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>
		<category><![CDATA[Software & Freeware Programs]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML & Coding]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/01112008/free-software-resources-and-other-goodies-for-web-designers/</guid>
		<description><![CDATA[
There is a terrific list of freeware software for Web designers over at TechnoTarget.  There are descriptions and screen captures of each application.  
Smashing Magazine has links to 100 Excellent WordPress Free Themes including a screen capture for each theme.  You should definitely  bookmark this site since we discussed WordPress yesterday and will work with it [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>There is a terrific <a href="http://technotarget.com/freeware-software-for-web-designers/" target="list of freeware software for Web designers over at TechnoTarget">list of freeware software for Web designers over at TechnoTarget</a>.  There are descriptions and screen captures of each application.  </li>
<li>Smashing Magazine has links to <a href="http://www.smashingmagazine.com/2008/01/08/100-excellent-free-high-quality-wordpress-themes/">100 Excellent WordPress Free Themes</a> including a screen capture for each theme.  You should definitely  bookmark this site since we discussed WordPress yesterday and will work with it more over the next month.  </li>
<li>Smashing Magazine also offers <a href="http://www.smashingmagazine.com/2008/01/04/frameworks-round-up-when-to-use-how-to-choose/">Frameworks Round-Up: When To Use, How To Choose?</a>.  This article includes links to frameworks for JavaScript, CSS, PHP, Ruby, and more. </li>
<li>For those of you who would like to learn more about Photoshop, Smashing Magazine has the article <a href="http://www.smashingmagazine.com/2008/01/10/adobe-photoshop-tutorials-best-of/">Adobe Photoshop Tutorials &#8211; Best Of<br />
</a>.</li>
<li>Don&#8217;t leave Smashing Magazine quite yet&#8230;.While you&#8217;re there check out <a href="http://www.smashingmagazine.com/2007/12/27/smashing-highlights-2007/">Smashing Highlights 2007</a> for even more terrific articles and resources. </li>
<li>Looking for more Photoshop? Try <a href="http://www.photoshoproadmap.com/Photoshop-blog/2007/07/22/the-best-80-photoshop-text-effects-on-the-web/">The Best 80 Photoshop Text Effects on the We</a>b for tons of tips on creating cool text effects in Photoshop.</li>
<li>Tutorial Blog offers <a href="http://tutorialblog.org/links-for-web-designers-december/">Links for Web Designers : December</a> &#8211; A GREAT roundup of Web resources for designers.  While you&#8217;re at Tutorial Blog check out the other <a href="http://tutorialblog.org/category/usefull/">terrific Web resource lists they have compiled</a>.  There are so many goodies on this page you could easily spend the day at their site. </li>
<li><a href="http://webhostingkeys.com/">Web Hosting Keys</a> has numerous compiled lists including:  Best Web Hosting,  Web Hosting Coupons,  Best Free Photo Hosting,  Best Free Web Hosting,  Best Free File Hosting,  Best Free Forum Hosting, Best Free Blog Hosting, Cheap Domain Names,  Best Online Backup Services,  &#038; Best DNS Tools. </li>
<li>Freelance Switch has an article on <a href="http://freelanceswitch.com/general/7-things-you-can-do-today-to-kickstart-your-freelancing-career/">7 Things You Can Do TODAY to Kickstart Your Freelancing Career</a> &#8211; It&#8217;s a good time to start thinking about these things if you plan to start your own business.</li>
</ol>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/02032008/20-photoshop-tutorial-sites/" rel="bookmark">20 Photoshop Tutorial Sites</a></li><li><a href="http://www.robinsblog.com/10112005/software-goodies-for-everyone/" rel="bookmark">Software Goodies for Everyone</a></li><li><a href="http://www.robinsblog.com/04122005/freewaresharewaresoftware-goodies/" rel="bookmark">Freeware/Shareware/Software  Goodies</a></li><li><a href="http://www.robinsblog.com/06022005/whats-your-favorite-freeware-utility-or-firefox-extension/" rel="bookmark">What's Your Favorite Freeware Utility or FireFox Extension?</a></li><li><a href="http://www.robinsblog.com/12182007/web-site-frameworks-grids/" rel="bookmark">Web Site Frameworks & Grids</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/01112008/free-software-resources-and-other-goodies-for-web-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advisory Committee Follow-up &#8211; JavaScript</title>
		<link>http://www.robinsblog.com/11282005/advisory-committee-follow-up-javascript/</link>
		<comments>http://www.robinsblog.com/11282005/advisory-committee-follow-up-javascript/#comments</comments>
		<pubDate>Mon, 28 Nov 2005 22:54:58 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[PHP/MySQL & JavaScript]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=255</guid>
		<description><![CDATA[When I met with our advisory committee earlier in the month we discussed teaching JavaScript  in the web development program.  Unfortunately, our course has a limited duration and we just can&#8217;t teach it all (don&#8217;t I wish).  Since our course is designed to teach students entry-level web development skills I feel that we cannot delve too deeply [...]]]></description>
			<content:encoded><![CDATA[<p>When I met with our <a href="http://www.robinsblog.com/11102005/advisory-committee-roundup/">advisory committee</a> earlier in the month we discussed teaching JavaScript  in the <a href="http://pclab.cccoe.k12.ca.us/">web development program</a>.  Unfortunately, our course has a limited duration and we just can&#8217;t teach it all (don&#8217;t I wish).  Since our course is designed to teach students <strong>entry-level</strong> web development skills I feel that we cannot delve too deeply into JavaScript.  I discussed this issue with our advisors and they agreed that students should have a general understanding of JavaScript and what it accomplishes when they complete the course, but if they want advanced scripting skills they should take additional coursework online or at a school that offers advanced JavaScript training.  </p>
<p>This morning when I was visiting <a href="http://joshuaink.com/">Joshuaink</a>, a great site that I like to read, I found that John Oxton had posted a similar question to his visitors in  <a href="http://joshuaink.com/blog/547/is-there-a-hole-in-my-skill-set">Is there a hole in my skill set?</a>.  This is a great &#8220;conversation&#8221; about the need for JavaScript as a front end developer.    </p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/11102005/advisory-committee-roundup/" rel="bookmark">Advisory Committee Roundup</a></li><li><a href="http://www.robinsblog.com/11072005/orientation-and-advisory-committee-meeting/" rel="bookmark">Orientation and advisory committee meeting</a></li><li><a href="http://www.robinsblog.com/11202008/using-firebug-to-debug-code/" rel="bookmark">Using Firebug to Debug Code</a></li><li><a href="http://www.robinsblog.com/01272009/new-javascript-unit/" rel="bookmark">New JavaScript Unit</a></li><li><a href="http://www.robinsblog.com/08022005/tuesday-around-the-web/" rel="bookmark">Tuesday Around the Web</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/11282005/advisory-committee-follow-up-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Design and Coding Resources</title>
		<link>http://www.robinsblog.com/11212005/design-and-coding-resources/</link>
		<comments>http://www.robinsblog.com/11212005/design-and-coding-resources/#comments</comments>
		<pubDate>Mon, 21 Nov 2005 18:40:29 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Blogs, Content Management Systems & WordPress]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[Design and Layout]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/?p=250</guid>
		<description><![CDATA[Open Source Web Design is a community of designers and site owners sharing free web design templates as well as web design information. 
Designing a Rainbow &#8211; Sexy Hot Colors &#8211; Lorelle on WordPress has a wonderful roundup of color resources on her blog today.  Yummy! 
graphicPUSH offers a Blog Icon Pack, a set of free icons for your [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://openwebdesign.org/">Open Source Web Design</a> is a community of designers and site owners sharing free web design templates as well as web design information. </p>
<p><a href="http://lorelle.wordpress.com/2005/11/21/designing-a-rainbow-sexy-hot-colors/">Designing a Rainbow &#8211; Sexy Hot Colors</a> &#8211; <a href="http://lorelle.wordpress.com/">Lorelle on WordPress</a> has a wonderful roundup of color resources on her blog today.  Yummy! </p>
<p><a href="http://www.graphicpush.com/">graphicPUSH</a> offers a <a href="http://www.graphicpush.com/index.php?s=icons">Blog Icon Pack</a>, a set of free icons for your blog or web site.  Take a look at the <a href="http://www.graphicpush.com/index.php?s=archive">graphicPush archives</a>, there are a lot of interesting and informative articles.</p>
<p><a href="http://wordpress.com/">WordPress.com</a>  is now offering free, WordPress based, blog hosting accounts to all; you no longer need an invitation to sign-up.  Speaking of WordPress, <a href="http://wordpress.org/support/topic/49790">WordPress 2.0 Beta 1</a> is now available.  </p>
<p>Brothercake has a free CSS based <a href="http://www.brothercake.com/scripts/listmenu/">simple website menu</a> that you can download, customize and use on your sites.  This zip package includes the necessary CSS, JavaScript, and XHTML to create both horizontal and vertical list menus.</p>
<p>In addition to validating HTML, XHTML, and CSS the W3C now offers an <a href="http://validator.w3.org/feed/">RSS/Atom Feed Validator</a>.</p>
<p><a href="http://www.php-editors.com/">php-editors</a> has a <a href="http://www.php-editors.com/review/">list of PHP editors</a> which includes licensing information, platform specs, and user rankings.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/02022006/diy-searching-engine-optimization/" rel="bookmark">DIY Searching Engine Optimization</a></li><li><a href="http://www.robinsblog.com/04132006/copyright-infrigement-advice-from-lorelle-on-wordpress/" rel="bookmark">Copyright Infrigement Advice From Lorelle on WordPress</a></li><li><a href="http://www.robinsblog.com/11192005/views-of-a-web-page/" rel="bookmark">Views of a Web Page</a></li><li><a href="http://www.robinsblog.com/02242006/color-resources-designing-for-your-audience/" rel="bookmark">Color Resources - Designing for Your Audience</a></li><li><a href="http://www.robinsblog.com/03162006/resources-to-make-xhtml-and-css-coding-easier/" rel="bookmark">Resources to Make XHTML and CSS Coding Easier</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/11212005/design-and-coding-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LiveMarks</title>
		<link>http://www.robinsblog.com/10052005/livemarks/</link>
		<comments>http://www.robinsblog.com/10052005/livemarks/#comments</comments>
		<pubDate>Wed, 05 Oct 2005 19:30:38 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Other, Books & Fun Stuff]]></category>
		<category><![CDATA[PHP/MySQL & JavaScript]]></category>

		<guid isPermaLink="false">http://www.robinsblog.com/10052005/livemarks/</guid>
		<description><![CDATA[Do you want to see what people are viewing and bookmarking right this minute?  Checkout LiveMarks &#8211; which displays what people are bookmarking on Del.icio.us in real-time.  This is another Ajax demonstration.   Pretty slick!
Related Posts:del.icio.us is DeliciousWeb Developers Field GuideFinding the Good StuffThe Design ProcessThe Final Friday]]></description>
			<content:encoded><![CDATA[<p>Do you want to see what people are viewing and bookmarking right this minute?  Checkout <a href="http://sandbox.sourcelabs.com/livemarks/">LiveMarks</a> &#8211; which displays what people are bookmarking on Del.icio.us in real-time.  This is another Ajax demonstration.   Pretty slick!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.robinsblog.com/03142005/delicious-is-delicious/" rel="bookmark">del.icio.us is Delicious</a></li><li><a href="http://www.robinsblog.com/02012008/web-developers-field-guide/" rel="bookmark">Web Developers Field Guide</a></li><li><a href="http://www.robinsblog.com/09222005/finding-the-good-stuff/" rel="bookmark">Finding the Good Stuff</a></li><li><a href="http://www.robinsblog.com/03202005/the-design-process/" rel="bookmark">The Design Process</a></li><li><a href="http://www.robinsblog.com/06172005/157/" rel="bookmark">The Final Friday</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.robinsblog.com/10052005/livemarks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
