<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>AdventuresInWebDev</title>
	<link>http://adventuresinwebdev.com</link>
	<description>Making it happen in the real world.</description>
	<pubDate>Thu, 07 Feb 2008 15:16:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>New WebKit Fun</title>
		<link>http://adventuresinwebdev.com/2008/02/07/new-webkit-fun/</link>
		<comments>http://adventuresinwebdev.com/2008/02/07/new-webkit-fun/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 15:16:54 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[api]]></category>

		<category><![CDATA[audio]]></category>

		<category><![CDATA[client side]]></category>

		<category><![CDATA[downloadable font]]></category>

		<category><![CDATA[font]]></category>

		<category><![CDATA[font-face]]></category>

		<category><![CDATA[fonts]]></category>

		<category><![CDATA[html5]]></category>

		<category><![CDATA[sql]]></category>

		<category><![CDATA[storage]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://adventuresinwebdev.com/2008/02/07/new-webkit-fun/</guid>
		<description><![CDATA[For all you out there who like to keep tabs on new developments in the browser markets, Safari 3.1 has been seeded for testing and it seems they&#8217;ve incorporated a number on the new WebKit features!

Here&#8217;s a select few examples:

Downloadable Fonts

The idea of downloadable font&#8217;s isn&#8217;t really anything new but WebKit now supports the @font-face [...]]]></description>
			<content:encoded><![CDATA[<p>For all you out there who like to keep tabs on new developments in the browser markets, <a href="http://www.macrumors.com/2008/02/06/os-x-10-5-2-9c31-seeded-safari-3-1-beta-incorporates-latest-webkit-features/">Safari 3.1 has been seeded</a> for testing and it seems they&#8217;ve incorporated a number on the new <a href="http://www.webkit.org">WebKit</a> features!</p>

<p>Here&#8217;s a select few examples:</p>

<h3><a href="http://www.alistapart.com/articles/cssatten">Downloadable Fonts</a></h3>

<p>The idea of downloadable font&#8217;s isn&#8217;t really anything new but WebKit now supports the @font-face rule:</p>

<pre><code>@font-face {
  font-family: "MyFont";
  src: url(http://www.example.com/fonts/MyFont.ttf) format("truetype");
}

h1 { font-family: "MyFont", sans-serif }
</code></pre>

<p>Will this be the end of <a href="http://www.mezzoblue.com/tests/revised-image-replacement/">image replacement</a> and <a href="http://www.mikeindustries.com/sifr">sIFR</a>?</p>

<h3><a href="http://webkit.org/blog/140/html5-media-support/">HTML5 Audio and Video</a></h3>

<blockquote>
  <p>The new HTML5 <code>&lt;video&gt;</code> and <code>&lt;audio&gt;</code> elements add native support for embedding video and audio content in web pages. They also provide a rich scripting API for controlling playback. Adding video to a web page is almost as simple as adding an image.</p>
</blockquote>

<p>For example, adding a video is as simple as</p>

<pre><code>&lt;video src="sample.mov" autoplay&gt;&lt;/video&gt;
</code></pre>

<p>and you have controll access through JavaScript as well:</p>

<pre><code>function toggleVideo() {
    var myVideo = document.getElementsByTagName('video')[0];
    if (myVideo.paused) {
        myVideo.play();
    } else {
        myVideo.pause();
    }
}
</code></pre>

<p>Sweet!</p>

<h3><a href="http://webkit.org/blog/126/webkit-does-html5-client-side-database-storage/">HTML5 SQL Storage</a></h3>

<blockquote>
  <p>The client-side database storage API allows web applications to store structured data locally using a medium many web developers are already familiar with - SQL.
  The API is asynchronous and uses callback functions to track the results of a database query.</p>
</blockquote>

<p>Wow, client side SQL? Now that might be more useful than a Cookie!</p>

<pre><code>var database = openDatabase("Database Name", "Database Version");
database.executeSql("SELECT * FROM test", function(result) {
    // do something with the result
});
</code></pre>

<p>There is a <a href="http://webkit.org/misc/DatabaseExample.html">working example</a> on the WebKit blog, but you&#8217;ll need WebKit of course.</p>

<p>If you&#8217;re interested in playing around, you can download the latest nightly builds at <a href="http://nightly.webkit.org/">nightly.webkit.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://adventuresinwebdev.com/2008/02/07/new-webkit-fun/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Doing things right</title>
		<link>http://adventuresinwebdev.com/2008/02/01/doing-things-right/</link>
		<comments>http://adventuresinwebdev.com/2008/02/01/doing-things-right/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 14:15:34 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Daily Links]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[efective]]></category>

		<category><![CDATA[ie8]]></category>

		<category><![CDATA[interface]]></category>

		<category><![CDATA[interpolation]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[library]]></category>

		<category><![CDATA[microsoft]]></category>

		<category><![CDATA[patterns]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[security]]></category>

		<category><![CDATA[standards]]></category>

		<category><![CDATA[string]]></category>

		<category><![CDATA[typography]]></category>

		<category><![CDATA[ui]]></category>

		<category><![CDATA[usability]]></category>

		<category><![CDATA[web]]></category>

		<category><![CDATA[webdesign]]></category>

		<category><![CDATA[webdev]]></category>

		<category><![CDATA[X-UA-Compatible]]></category>

		<guid isPermaLink="false">http://adventuresinwebdev.com/2008/02/01/doing-things-right/</guid>
		<description><![CDATA[
10 Principles Of Effective Web Design Make your designs work the right way.
Secure String Interpolation in JavaScript AN interesting read on some of the security concerns surrounding &#34;$string $inInterpolation&#34;.
UI-patterns.com
X-No-Thanks Another well thought out take on the whole X-UA-Compatible thing.

]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://feeds.feedburner.com/~r/SmashingMagazine/~3/226598766/">10 Principles Of Effective Web Design</a> Make your designs work the right way.</li>
<li><a href="http://google-caja.googlecode.com/svn/changes/mikesamuel/string-interpolation-29-Jan-2008/trunk/src/js/com/google/caja/interp/index.html">Secure String Interpolation in JavaScript</a> AN interesting read on some of the security concerns surrounding &quot;$string $inInterpolation&quot;.</li>
<li><a href="http://ui-patterns.com/">UI-patterns.com</a></li>
<li><a href="http://www.b-list.org/weblog/2008/jan/28/ie8/">X-No-Thanks</a> Another well thought out take on the whole X-UA-Compatible thing.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://adventuresinwebdev.com/2008/02/01/doing-things-right/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Helvetica, Doctypes, Lemurs and more!</title>
		<link>http://adventuresinwebdev.com/2008/01/25/helvetica-doctypes-lemurs-and-more/</link>
		<comments>http://adventuresinwebdev.com/2008/01/25/helvetica-doctypes-lemurs-and-more/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 14:50:33 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Daily Links]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[blogging]]></category>

		<category><![CDATA[books]]></category>

		<category><![CDATA[browser]]></category>

		<category><![CDATA[business]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[clients]]></category>

		<category><![CDATA[clientside]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[font]]></category>

		<category><![CDATA[fonts]]></category>

		<category><![CDATA[free]]></category>

		<category><![CDATA[freelance]]></category>

		<category><![CDATA[freelancing]]></category>

		<category><![CDATA[funny]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[humour]]></category>

		<category><![CDATA[ie]]></category>

		<category><![CDATA[ie8]]></category>

		<category><![CDATA[interaction]]></category>

		<category><![CDATA[interface]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[microsoft]]></category>

		<category><![CDATA[movie]]></category>

		<category><![CDATA[network]]></category>

		<category><![CDATA[openget]]></category>

		<category><![CDATA[parody]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[prospects]]></category>

		<category><![CDATA[resources]]></category>

		<category><![CDATA[standards]]></category>

		<category><![CDATA[theme]]></category>

		<category><![CDATA[typography]]></category>

		<category><![CDATA[usability]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[web]]></category>

		<category><![CDATA[webdesign]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[X-UA-Compatible]]></category>

		<guid isPermaLink="false">http://adventuresinwebdev.com/2008/01/25/helvetica-doctypes-lemurs-and-more/</guid>
		<description><![CDATA[So I&#8217;ve written a plugin and switched to a weekly summary posting of my delicious links, here&#8217;s a select few good ones:


10 Things You Need to Know About Your Prospects On the freelance side, it&#8217;s always good to know a little about the people you work for.
5 ways to pimp out your WordPress weblog Just [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve written a plugin and switched to a weekly summary posting of my delicious links, here&#8217;s a select few good ones:</p>

<ul>
<li><a href="http://freelanceswitch.com/finding/10-things-you-need-to-know-about-your-prospects/">10 Things You Need to Know About Your Prospects</a> On the freelance side, it&#8217;s always good to know a little about the people you work for.</li>
<li><a href="http://www.downloadsquad.com/2008/01/20/5-ways-to-pimp-out-your-wordpress-weblog/">5 ways to pimp out your WordPress weblog</a> Just getting started with your blog? Don&#8217;t forget these.</li>
<li><a href="http://alistapart.com/articles/beyonddoctype/">Beyond DOCTYPE</a> If you haven&#8217;t hear yet, this is one of the articles that started all the X-UA-Compatible hoopla. Don&#8217;t forget to check out <a href="http://www.katemonkey.co.uk/article/48/x-ua-lemur-compatible">X-UA-Lemur-Compatible</a>&#8212;too funny! Especially the blue hat!</li>
<li><a href="http://www.smashingmagazine.com/2008/01/22/free-fonts-of-the-month-newcastle-anziano/">Free Fonts Of The Month</a> Some more smashing good FREE stuff!</li>
<li><a href="http://video.google.com/videoplay?docid=6265391640558960074">Helvetica (Documentary)</a> For all you typophiles out there., here&#8217;s an insightful look into the most prevalent typeface out there.</li>
<li><a href="http://uwmike.com/articles/2008/01/22/browser-data-push/">Pushing Data to the Browser With Open-Get</a> Using a little ingenuity to push data back to your clients.</li>
<li><a href="http://www.smashingmagazine.com/2008/01/24/usability-and-interface-design-books/">Usability and Interface Design Books</a> Some great interface design books.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://adventuresinwebdev.com/2008/01/25/helvetica-doctypes-lemurs-and-more/feed/</wfw:commentRss>
		</item>
		<item>
		<title>They&#8217;re coming to get you!</title>
		<link>http://adventuresinwebdev.com/2008/01/16/theyre-coming-to-get-you/</link>
		<comments>http://adventuresinwebdev.com/2008/01/16/theyre-coming-to-get-you/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 16:59:53 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Daily Links]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[stickers]]></category>

		<guid isPermaLink="false">http://adventuresinwebdev.com/2008/01/17/theyre-coming-to-get-you/</guid>
		<description><![CDATA[
Design Police. Bring bad design to justice!

]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.design-police.org/">Design Police.</a> Bring bad design to justice!</ul></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://adventuresinwebdev.com/2008/01/16/theyre-coming-to-get-you/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Daily Distractions</title>
		<link>http://adventuresinwebdev.com/2008/01/15/links-for-2008-01-16/</link>
		<comments>http://adventuresinwebdev.com/2008/01/15/links-for-2008-01-16/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 03:40:47 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Daily Links]]></category>

		<category><![CDATA[clean]]></category>

		<category><![CDATA[copyright]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[filter]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[image]]></category>

		<category><![CDATA[markup]]></category>

		<category><![CDATA[photography]]></category>

		<category><![CDATA[photos]]></category>

		<category><![CDATA[purify]]></category>

		<guid isPermaLink="false">http://adventuresinwebdev.com/2008/01/15/links-for-2008-01-16/</guid>
		<description><![CDATA[
    
        A Savvy Approach to Copyright Messaging
        Into photography and don&#8217;t want random people linking to or passively stealing your photos? try out this technique to remind people about copyright while keeping your site beautiful.
   [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://powazek.com/posts/867">A Savvy Approach to Copyright Messaging</a></div>
        <div class="delicious-extended">Into photography and don&#8217;t want random people linking to or passively stealing your photos? try out this technique to remind people about copyright while keeping your site beautiful.</div>
        <div class="delicious-tags">tags: <a href="http://del.icio.us/AdventuresInWebDev/copyright">copyright</a> <a href="http://del.icio.us/AdventuresInWebDev/photography">photography</a> <a href="http://del.icio.us/AdventuresInWebDev/css">css</a> <a href="http://del.icio.us/AdventuresInWebDev/photos">photos</a> <a href="http://del.icio.us/AdventuresInWebDev/image">image</a></div>
    </li>
    <li>
        <div class="delicious-link"><a href="http://htmlpurifier.org/">HTML Purifier - Filter your HTML the standards-compliant way!</a></div>
        <div class="delicious-extended">Pure awesomeness for good markup!</div>
        <div class="delicious-tags">tags: <a href="http://del.icio.us/AdventuresInWebDev/PHP">PHP</a> <a href="http://del.icio.us/AdventuresInWebDev/HTML">HTML</a> <a href="http://del.icio.us/AdventuresInWebDev/filter">filter</a> <a href="http://del.icio.us/AdventuresInWebDev/markup">markup</a> <a href="http://del.icio.us/AdventuresInWebDev/clean">clean</a> <a href="http://del.icio.us/AdventuresInWebDev/purify">purify</a></div>
    </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://adventuresinwebdev.com/2008/01/15/links-for-2008-01-16/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Daily Distractions</title>
		<link>http://adventuresinwebdev.com/2008/01/14/links-for-2008-01-15/</link>
		<comments>http://adventuresinwebdev.com/2008/01/14/links-for-2008-01-15/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 03:34:54 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Daily Links]]></category>

		<category><![CDATA[examples]]></category>

		<category><![CDATA[graphs]]></category>

		<category><![CDATA[infographics]]></category>

		<category><![CDATA[information]]></category>

		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://adventuresinwebdev.com/2008/01/14/links-for-2008-01-15/</guid>
		<description><![CDATA[
    
        Monday Inspiration: Data Visualization and Infographics
        Lot&#8217;s of good ideas.
        tags: infographics graphs information visualization examples
    

]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://feeds.feedburner.com/~r/SmashingMagazine/~3/216353286/">Monday Inspiration: Data Visualization and Infographics</a></div>
        <div class="delicious-extended">Lot&#8217;s of good ideas.</div>
        <div class="delicious-tags">tags: <a href="http://del.icio.us/AdventuresInWebDev/infographics">infographics</a> <a href="http://del.icio.us/AdventuresInWebDev/graphs">graphs</a> <a href="http://del.icio.us/AdventuresInWebDev/information">information</a> <a href="http://del.icio.us/AdventuresInWebDev/visualization">visualization</a> <a href="http://del.icio.us/AdventuresInWebDev/examples">examples</a></div>
    </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://adventuresinwebdev.com/2008/01/14/links-for-2008-01-15/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Daily Distractions</title>
		<link>http://adventuresinwebdev.com/2008/01/11/links-for-2008-01-12/</link>
		<comments>http://adventuresinwebdev.com/2008/01/11/links-for-2008-01-12/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 03:36:52 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Daily Links]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[framework]]></category>

		<category><![CDATA[manual]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[PHPUnit]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[reference]]></category>

		<category><![CDATA[unit testing]]></category>

		<category><![CDATA[web]]></category>

		<category><![CDATA[webdev]]></category>

		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://adventuresinwebdev.com/2008/01/11/links-for-2008-01-12/</guid>
		<description><![CDATA[
    
        Zend Framework: Documentation
        Doc for all things Zend Framework
        tags: php zend framework manual reference
    
    
       [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
    <li>
        <div class="delicious-link"><a href="http://framework.zend.com/manual/en/">Zend Framework: Documentation</a></div>
        <div class="delicious-extended">Doc for all things Zend Framework</div>
        <div class="delicious-tags">tags: <a href="http://del.icio.us/AdventuresInWebDev/php">php</a> <a href="http://del.icio.us/AdventuresInWebDev/zend">zend</a> <a href="http://del.icio.us/AdventuresInWebDev/framework">framework</a> <a href="http://del.icio.us/AdventuresInWebDev/manual">manual</a> <a href="http://del.icio.us/AdventuresInWebDev/reference">reference</a></div>
    </li>
    <li>
        <div class="delicious-link"><a href="http://www.phpunit.de/pocket_guide/3.0/en/">PHPUnit Pocket Guide</a></div>
        <div class="delicious-extended">How to write and use PHPUnit tests</div>
        <div class="delicious-tags">tags: <a href="http://del.icio.us/AdventuresInWebDev/php">php</a> <a href="http://del.icio.us/AdventuresInWebDev/reference">reference</a> <a href="http://del.icio.us/AdventuresInWebDev/PHPUnit">PHPUnit</a> <a href="http://del.icio.us/AdventuresInWebDev/unit">unit</a> <a href="http://del.icio.us/AdventuresInWebDev/testing">testing</a> <a href="http://del.icio.us/AdventuresInWebDev/manual">manual</a></div>
    </li>
    <li>
        <div class="delicious-link"><a href="http://php.net/">PHP: Hypertext Preprocessor</a></div>
        <div class="delicious-extended">Will you really ever remember every php function? Probably not so here&#8217;s the reference.</div>
        <div class="delicious-tags">tags: <a href="http://del.icio.us/AdventuresInWebDev/php">php</a> <a href="http://del.icio.us/AdventuresInWebDev/programming">programming</a> <a href="http://del.icio.us/AdventuresInWebDev/development">development</a> <a href="http://del.icio.us/AdventuresInWebDev/web">web</a> <a href="http://del.icio.us/AdventuresInWebDev/reference">reference</a> <a href="http://del.icio.us/AdventuresInWebDev/manual">manual</a> <a href="http://del.icio.us/AdventuresInWebDev/webdev">webdev</a></div>
    </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://adventuresinwebdev.com/2008/01/11/links-for-2008-01-12/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Daily Distractions</title>
		<link>http://adventuresinwebdev.com/2008/01/10/todays-distractions/</link>
		<comments>http://adventuresinwebdev.com/2008/01/10/todays-distractions/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 03:34:29 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Daily Links]]></category>

		<category><![CDATA[bad]]></category>

		<category><![CDATA[color]]></category>

		<category><![CDATA[colour]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[CSS3]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[forms]]></category>

		<category><![CDATA[Hacks]]></category>

		<category><![CDATA[HEX]]></category>

		<category><![CDATA[interface]]></category>

		<category><![CDATA[messingup]]></category>

		<category><![CDATA[RGB]]></category>

		<category><![CDATA[RGBa]]></category>

		<category><![CDATA[standards]]></category>

		<category><![CDATA[usability]]></category>

		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://adventuresinwebdev.com/2008/01/10/links-for-2008-01-11/</guid>
		<description><![CDATA[My links for 2008-01-11]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
  <li>
  <div class="delicious-link"><a rel="nofollow" href="http://friedcellcollective.net/outbreak/2007/12/13/messing-up-the-interface" title="outbreak » Messing up the interface">outbreak » Messing up the interface</a></div>
  <div class="delicious-extended">How web forms can go very, very wrong.</div>
  <div class="delicious-tags">tags: 
    <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/messingup" title="More from messingup on del.icio.us">messingup</a>
    <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/bad" title="More from bad on del.icio.us">bad</a>
    <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/ux" title="More from ux on del.icio.us">ux</a>
    <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/interface" title="More from interface on del.icio.us">interface</a>
    <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/usability" title="More from usability on del.icio.us">usability</a>
    <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/forms" title="More from forms on del.icio.us">forms</a></li>
  </div>
  <li>
  <div class="delicious-link"><a rel="nofollow" href="http://kilianvalkhof.com/2007/design/understanding-css-colour-modes/" title="KilianValkhof.com » Blog Archive » Understanding CSS Colour modes">KilianValkhof.com » Blog Archive » Understanding CSS Colour modes</a></div>
  <div class="delicious-extended">Don&#8217;t understand the differences between HEX, RGB, keywords and alpha the changes in CSS3 colour? Here&#8217;s a quick explanation.</div>
  <div class="delicious-tags">tags: 
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/webdev" title="More from webdev on del.icio.us">webdev</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/design" title="More from design on del.icio.us">design</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/RGBa" title="More from RGBa on del.icio.us">RGBa</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/RGB" title="More from RGB on del.icio.us">RGB</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/HEX" title="More from HEX on del.icio.us">HEX</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/colour" title="More from colour on del.icio.us">colour</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/color" title="More from color on del.icio.us">color</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/webdesign" title="More from webdesign on del.icio.us">webdesign</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/css3" title="More from css3 on del.icio.us">css3</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/css" title="More from css on del.icio.us">css</a></li>
  </div>
  <li>
  <div class="delicious-link"><a rel="nofollow" href="http://www.digital-web.com/articles/CSS_not_hacks/" title="Digital Web Magazine - CSS Not([hacks])">Digital Web Magazine - CSS Not([hacks])</a></div>
  <div class="delicious-extended">Are you still using CSS hacks? See why you shouldn&#8217;t.</div>
  <div class="delicious-tags">tags: 
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/standards" title="More from standards on del.icio.us">standards</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/webdev" title="More from webdev on del.icio.us">webdev</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/webdesign" title="More from webdesign on del.icio.us">webdesign</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/Hacks" title="More from Hacks on del.icio.us">Hacks</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/CSS3" title="More from CSS3 on del.icio.us">CSS3</a>
      <a rel="nofollow" href="http://del.icio.us/AdventuresInWebDev/CSS" title="More from CSS on del.icio.us">CSS</a></li>
  </div>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://adventuresinwebdev.com/2008/01/10/todays-distractions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installation continues&#8230;.</title>
		<link>http://adventuresinwebdev.com/2008/01/09/installation-continues/</link>
		<comments>http://adventuresinwebdev.com/2008/01/09/installation-continues/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 02:27:37 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[setup]]></category>

		<guid isPermaLink="false">http://adventuresinwebdev.com/2008/01/09/installation-continues/</guid>
		<description><![CDATA[We&#8217;ll not much to write yet. I&#8217;ve spent some time today sorting out my various sites onto their proper servers and tinkering with wordpress plugins. It&#8217;ll probably be a week or so before I post anything worthwhile but I&#8217;m working on a nice short list of articles.
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ll not much to write yet. I&#8217;ve spent some time today sorting out my various sites onto their proper servers and tinkering with wordpress plugins. It&#8217;ll probably be a week or so before I post anything worthwhile but I&#8217;m working on a nice short list of articles.</p>
]]></content:encoded>
			<wfw:commentRss>http://adventuresinwebdev.com/2008/01/09/installation-continues/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installation has started.</title>
		<link>http://adventuresinwebdev.com/2008/01/08/installation-has-started/</link>
		<comments>http://adventuresinwebdev.com/2008/01/08/installation-has-started/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 14:00:40 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[setup]]></category>

		<category><![CDATA[bookmarks]]></category>

		<category><![CDATA[del.icio.us]]></category>

		<category><![CDATA[dilectio]]></category>

		<category><![CDATA[installation]]></category>

		<category><![CDATA[smashigmagazine]]></category>

		<category><![CDATA[theme]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://adventuresinwebdev.com/2008/01/08/installation-has-started/</guid>
		<description><![CDATA[As you can see I&#8217;m in wordpress default mode as I&#8217;m still filtering through stuff. Oh what fun. While I play around and get my own theme assembled, I decided to get away from the default and try out the Dilectio Theme created by Design Disease in association with Smashing Magazine. Props to them.

I&#8217;m also working on integrating del.icio.us [...]]]></description>
			<content:encoded><![CDATA[<p>As you can see I&#8217;m in <a href="http://wordpress.org">wordpress</a> default mode as I&#8217;m still filtering through stuff. Oh what fun. While I play around and get my own theme assembled, I decided to get away from the default and try out the Dilectio Theme created by <a href="http://designdisease.com">Design Disease</a> in association with <a href="http://smashingmagazine.com">Smashing Magazine</a>. Props to them.</p>

<p>I&#8217;m also working on integrating <a href="http://del.icio.us/adventuresinwebdev">del.icio.us</a> bookmarks as a daily evening post and a few other goodies. We&#8217;ll see what happens.</p>
]]></content:encoded>
			<wfw:commentRss>http://adventuresinwebdev.com/2008/01/08/installation-has-started/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
