<?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>Andrew Colclough</title>
	<atom:link href="http://andrewdc.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewdc.com/blog</link>
	<description>Multimedia Designer</description>
	<lastBuildDate>Fri, 30 Apr 2010 01:17:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Secret of Monkey Island &#8211; Embed-able, via InstantAction</title>
		<link>http://andrewdc.com/blog/2010/04/test/</link>
		<comments>http://andrewdc.com/blog/2010/04/test/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 23:39:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://andrewdc.com/blog/2010/04/test/</guid>
		<description><![CDATA[
The Secret of Monkey Island:SE powered by InstantAction
]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="http://2go.instantaction.com/2go/1/embed.js#widgetID=2458z1272584284z13004z1320638127&#038;parentWidgetID=0z1269360246z13004z1739966939&#038;game=somi&#038;width=580&#038;height=360"></script>
<p>The Secret of Monkey Island:SE powered by InstantAction</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewdc.com/blog/2010/04/test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Start using HTML5 Now &#8211; Compatible with FF, Safari, IE6-9</title>
		<link>http://andrewdc.com/blog/2010/04/start-using-html5-now-compatible-with-ff-safari-ie6-9/</link>
		<comments>http://andrewdc.com/blog/2010/04/start-using-html5-now-compatible-with-ff-safari-ie6-9/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 15:45:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://andrewdc.com/blog/2010/04/start-using-html5-now-compatible-with-ff-safari-ie6-9/</guid>
		<description><![CDATA[



So, I can use this now?
Actually, yes, with a few extra steps.  And it will work in all modern browsers. It can even work in IE6. There are only a few little quirks we need to get past if we’re going to start using this today.
First, because most browsers don’t understand the new HTML5 [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<blockquote>
<div>
<h3><span style="height: 21px;"><span>So, </span></span><span style="height: 21px;"><span>I </span></span><span style="height: 21px;"><span>can </span></span><span style="height: 21px;"><span>use </span></span><span style="height: 21px;"><span>this </span></span><span style="height: 21px;"><span>now?</span></span></h3>
<p>Actually, yes, with a few extra steps.  And it will work in all modern browsers. It can even work in IE6. There are only a few little quirks we need to get past if we’re going to start using this today.</p>
<p>First, because most browsers don’t understand the new HTML5 doctype, they don’t know about these new tags in HTML5.  Fortunately, due to the flexibility of browsers, they deal well with unknown tags.  The only issue here is unknown tags have no default style, <strong>and</strong> are treated as <strong>inline tags</strong>.  These new HTML5 tags are structural, and should obviously be block level elements.  So, when we style them with <span>CSS</span>, we need to be sure to include <code><span>display</span>:block;</code> in our attribute/value pairs.</p>
<p>Include this simple extra piece of <span>CSS</span>, and these new tags are immediately usable.  Starting today.  And of course, once HTML5 is more widely supported, the superfluous <code><span>display</span>:block;</code> can be removed, as it will be included in the browser default styles.</p>
<h3><span style="height: 21px;"><span>Supporting </span></span><span style="height: 21px;"><span>IE</span></span></h3>
<p>There is one more issue if you require IE support.  Turns out that the IE rendering engine will work with the new tags, but <strong>will not</strong> recognize any <span>CSS</span> applied to them.  Well, that’s no good.  Fortunately, IE just needs a good swift kick with the help of a very simple bit of JavaScript.  All we need to do to kick start IE is to create a <span>DOM</span> node with JavaScript for each of the new tags, and suddenly IE will apply styles to the new tags with no problem.  The code will look something like this, and can be placed directly in the <code>head</code> of our document, or the contents of the <code>script</code> tag placed into an external file and included.</p>
<pre><code>&lt;script&gt;  <span>document</span>.createElement<span>(</span><span>'header'</span><span>)</span>;  <span>document</span>.createElement<span>(</span><span>'footer'</span><span>)</span>;  <span>document</span>.createElement<span>(</span><span>'section'</span><span>)</span>;  <span>document</span>.createElement<span>(</span><span>'aside'</span><span>)</span>;  <span>document</span>.createElement<span>(</span><span>'nav'</span><span>)</span>;  <span>document</span>.createElement<span>(</span><span>'article'</span><span>)</span>;  &lt;/script&gt;</code></pre>
<p>Before we leave this code, there’s one thing to mention about the <code>script</code> tag in HTML5.  HTML5 will <em>assume</em> <code>type="text/javascript"</code> on any script element, so it need not be included.  Once again, making things simple.</p>
<h3><span style="height: 21px;"><span>Wrapping </span></span><span style="height: 21px;"><span>Up</span></span></h3>
<p>So we can begin, right now, to structure our documents using the new tags provided in HTML5.  With a few simple tricks, they’ll work today, and be compatible in the future. So next time you start a new site, consider going with HTML5, and give your markup a little more defined structure.</p>
</p></div>
<p>This resource was last updated <strong>January 11, 2010</strong> by Steve&nbsp;Smith</p>
<p>Copyright © 2004 &#8211; 2010 Ordered List Inc. ISSN# 1555-7928. All Rights Reserved.</p>
</blockquote>
</div>
<div class="posterous_quote_citation">via <a href="http://orderedlist.com/our-writing/resources/html-css/structural-tags-in-html5/">orderedlist.com</a></div>
<p>I  have tested this and was surprised that it does appear to be fully compatible.</p>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://andrewdc.posterous.com/start-using-html5-now-compatible-with-ff-safa">Andrew Colclough</a>  </p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://andrewdc.com/blog/2010/04/start-using-html5-now-compatible-with-ff-safari-ie6-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bill Watterson, creator of beloved &#8216;Calvin and Hobbes&#8217; comic strip looks back with no regrets</title>
		<link>http://andrewdc.com/blog/2010/02/bill-watterson-creator-of-beloved-calvin-and-hobbes-comic-strip-looks-back-with-no-regrets/</link>
		<comments>http://andrewdc.com/blog/2010/02/bill-watterson-creator-of-beloved-calvin-and-hobbes-comic-strip-looks-back-with-no-regrets/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 20:51:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://andrewdc.com/blog/2010/02/bill-watterson-creator-of-beloved-calvin-and-hobbes-comic-strip-looks-back-with-no-regrets/</guid>
		<description><![CDATA[


Readers became friends with your characters, so understandably, they grieved &#8212; and are still grieving &#8212; when the strip ended. What would you like to tell them? 
This isn&#8217;t as hard to understand as people try to make it. By the end of 10 years, I&#8217;d said pretty much everything I had come there to [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<blockquote class="posterous_long_quote">
<p><strong>Readers became friends with your characters, so understandably, they grieved &#8212; and are still grieving &#8212; when the strip ended. What would you like to tell them?</strong> </p>
<p>This isn&#8217;t as hard to understand as people try to make it. By the end of 10 years, I&#8217;d said pretty much everything I had come there to say. </p>
<p>It&#8217;s always better to leave the party early. If I had rolled along with the strip&#8217;s popularity and repeated myself for another five, 10 or 20 years, the people now &#8220;grieving&#8221; for &#8220;Calvin and Hobbes&#8221; would be wishing me dead and cursing newspapers for running tedious, ancient strips like mine instead of acquiring fresher, livelier talent. And I&#8217;d be agreeing with them. </p>
<p>I think some of the reason &#8220;Calvin and Hobbes&#8221; still finds an audience today is because I chose not to run the wheels off it. </p>
<p>I&#8217;ve never regretted stopping when I did.</p>
</blockquote>
<div class="posterous_quote_citation">Read the whole interview <a href="http://www.cleveland.com/living/index.ssf/2010/02/bill_watterson_creator_of_belo.html">cleveland.com</a></div>
<p>Bill Watterson is somewhat of an artistic hero of mine. As much as I loved and truly miss Calvin &#038; Hobbes, I think he made the right decision. Especially considering the shameless throwaway garbage that other strips continue to flog over an over, when they should have exited gracefully long ago. Calvin and Hobbes was a strip with, not only great artwork, but quality writing, and a core of integrity. I think this is why it remains so beloved today for so many fans.</p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://andrewdc.posterous.com/bill-watterson-creator-of-beloved-calvin-and">Andrew Colclough</a>  </p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://andrewdc.com/blog/2010/02/bill-watterson-creator-of-beloved-calvin-and-hobbes-comic-strip-looks-back-with-no-regrets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Real: Epicenter Design (by 37signals)</title>
		<link>http://andrewdc.com/blog/2010/01/getting-real-epicenter-design-by-37signals/</link>
		<comments>http://andrewdc.com/blog/2010/01/getting-real-epicenter-design-by-37signals/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 17:56:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://andrewdc.com/blog/2010/01/getting-real-epicenter-design-by-37signals/</guid>
		<description><![CDATA[



Epicenter Design
Start from the core of the page and build outward
Epicenter design focuses on the true essence of the page — the epicenter — and then builds outward. This means that, at the start, you ignore the extremities: the navigation/tabs, footer, colors, sidebar, logo, etc. Instead, you start at the epicenter and design the most [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">
<div class="posterous_bookmarklet_entry">
<blockquote>
<div>
<h3>Epicenter Design</h3>
<h3>Start from the core of the page and build outward</h3>
<p>Epicenter design focuses on the true essence of the page — the epicenter — and then builds outward. This means that, at the start, you ignore the extremities: the navigation/tabs, footer, colors, sidebar, logo, etc. Instead, you start at the epicenter and design the most important piece of content first.</p>
<p>Whatever the page absolutely can&#8217;t live without is the epicenter. For example, if you&#8217;re designing a page that displays a blog post, the blog post itself is the epicenter. Not the categories in the sidebar, not the header at the top, not the comment form at the bottom, but the actual blog post unit. Without the blog post unit, the page isn&#8217;t a blog post.</p>
<p>Only when that unit is complete would you begin to think about the second most critical element on the page. Then after the second most critical element, you&#8217;d move on to the third, and so on. That&#8217;s epicenter design.</p></div>
</blockquote>
<div class="posterous_quote_citation">READ THE REST&gt; <a href="http://gettingreal.37signals.com/ch09_Epicenter_Design.php">gettingreal.37signals.com</a></div>
<p>This is such a key aspect of software and UI design, I can&#8217;t promote it enough.</p>
<p>Stated simply: Start with the content -&gt; then add the stuff that helps people get around the content.</p>
<p>Don&#8217;t forget to <a href="http://gettingreal.37signals.com">read the entire book</a>. It&#8217;s free.</div>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via web</a> from <a href="http://andrewdc.posterous.com/getting-real-epicenter-design-by-37signals">Andrew Colclough</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://andrewdc.com/blog/2010/01/getting-real-epicenter-design-by-37signals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Behold &#8211; the awesome power of Sass Mixins</title>
		<link>http://andrewdc.com/blog/2009/12/behold-the-awesome-power-of-sass-mixins/</link>
		<comments>http://andrewdc.com/blog/2009/12/behold-the-awesome-power-of-sass-mixins/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 21:36:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://andrewdc.com/blog/2009/12/behold-the-awesome-power-of-sass-mixins/</guid>
		<description><![CDATA[In case you&#160;missed this&#160;post, I have started using the&#160;Compass&#160;and&#160;Sass&#160;CSS frameworks on a new project. I wanted to share a little magical Sass action that I came across while working on a new site.

A Browser-wide Opacity Mixin

Probably the most outstanding feature of Sass is the ability to create &#8220;mixins.&#8221; A mixin is nothing more than a [...]]]></description>
			<content:encoded><![CDATA[<p>In case you&nbsp;<a href="http://andrewdc.posterous.com/compass-a-real-stylesheet-framework">missed this</a>&nbsp;post, I have started using the&nbsp;<a href="http://compass-style.org/">Compass</a>&nbsp;and&nbsp;<a href="http://sass-lang.com/">Sass</a>&nbsp;CSS frameworks on a new project. I wanted to share a little magical Sass action that I came across while working on a new site.</p>
<p />
<div><span style="font-size: medium;"><span style="font-size: 14px;"><strong>A Browser-wide Opacity Mixin</strong></span></span></div>
<p />
<div>Probably the most outstanding feature of Sass is the ability to create &#8220;mixins.&#8221; A mixin is nothing more than a small block of styling code that you create once &#8211; and then simply call out later (similar to calling a function in javascript). Sass&#8217; Mixin&#8217;s can preform many actions that you would expect from a normal programming &nbsp;language such as accepting parameters, variables, and even preforming those &#8216;hard&#8217; maths. I happened to create a simple mixin that uses all three of these features to render a desired opacity across all browsers (hat-tip:&nbsp;<a href="http://css-tricks.com/css-transparency-settings-for-all-broswers/">Chris Coyier</a>&nbsp;for the cross-browser opacity code).&nbsp;</div>
<p />
<div>As Chris pointed out, each browser accepts opacity styles in a slightly different way. (I know, you&#8217;re shocked&#8230;<em>shocked!!</em>) With regular CSS &#8211; you have two options:&nbsp;</div>
<p />
<div>1) Create a .transparent_class and apply this to all html elements you wish to apply the opacity shift to. While this works, it is somewhat undesirable &#8211; because you are adding specific style information into your markup. In effect, to add/remove a design aspect you would need to alter your markup &#8211; when the ultimate goal is to separate the markup/structure from the style/design.</div>
<p />
<div>2) Apply all 4 opacity style rules to each individual element you select through CSS. This is technically better, but obviously a pain in the butt, and can really muck up your CSS. Unless you use a code editor such as Textmate which supports code snippets &#8211; you will be failing to keep your code DRY (Don&#8217;t Repeat Yourself). &nbsp;</div>
<p />
<div>As a side note, don&#8217;t feel bad if you happen to use either of these methods. Coding ideals are just that: ideals. Coding ideals are often nice (though lofty) goals that will spare you headaches over time. However, in my experience &#8211; the difficulty and time involved coding rises exponentially the more rigidly you attempt to adhere to a&nbsp;coding ideal.&nbsp;</div>
<p />
<div>But there is    good news. The Sass Framework can greatly help in this department.</div>
<p />
<div>Here is the Sass Mixin I created for opacity:</div>
<p />
<div><strong>Declaring the Mixin:</strong></div>
<p />
<div><img src="http://posterous.com/getfile/files.posterous.com/andrewdc/x3nGzEr2Tklp8kHiVBh5X68E2CsDb2vyZDLKGuvdDwjWOdh5P8qMBluhUv4b/mixin.jpg" width="320" height="106"/> </div>
<p />
<div><strong>Explanation:</strong></div>
<div>The first line is the mixin name that you will refer to later, followed by the actual opacity parameter variable.</div>
<div>The next several lines are each of the 4 browser opacity style rule variations. Each one refers to the !opacity variable that you will pass the mixin. Because&nbsp;Internet Explorer takes the parameter in a different format (e.g. IE: 50, Others: 0.5 ) &#8211; I use a little simple math to calculate the value. Zing!</div>
<p />
<div>(By the way &#8211; the strange format is just one of the ways to write Sass code. You can read more about that on the&nbsp;<a href="http://sass-lang.com/">Sass</a>&nbsp;website.)</div>
<p />
<div><strong>Calling the Mixin:</strong></div>
<p />
<div><img src="http://posterous.com/getfile/files.posterous.com/andrewdc/tHIOfwcaaCl0ucXCCQuLpphMAXtH7wJTFwZiRu4QlaPYXTm9eaKLpYsNVXpc/mixincall.jpg" width="320" height="67"/> </div>
<p />
<div><strong>Explanation</strong>:</div>
<div>To call the mixin, all I have to do is add +opacity rule and pass the actual value I want inside the parentheses. &nbsp;(note: the +shadow line is calling another mixin I created that accepts many parameters)</div>
<p />
<div>Sass code is then compiled to CSS (in this case, automatically by compass anytime I save a change) and adds&#8230;</div>
<p />
<div>filter: alpha(opacity= !opacity * 100); -moz-opacity: 0.7; -khtml-opacity: 0.7; opacity: 0.7;</div>
<p />
<div>&#8230;to the class .book-shadow, or anyplace else I call +opacity.</div>
<p />
<div>With Sass &#8211; it allows me to have the best of methods 1 and 2, which I mentioned above. I don&#8217;t have to add design specific classes into my markup, as in method #1. Also &#8211; if I want a different opacity value, I don&#8217;t have to create a separate .transparency_lighter_class, for example. I simply pass a different value. Sass also cuts out the suck of method #2, because I only have to repeat the one rule +opacity(howMuch) to any element.</div>
<p />
<div>Now &#8211; you do still end up with repetitive rules in your CSS files anytime you call +opacity &#8211; but you don&#8217;t have to deal with them. Plus, Sass can be told to compile your CSS into a variety of modes, from expanded &#8211; to compact, which will trim down the size of your CSS, if you want it to.</div>
<p />
<div>Mixins are just one of the many great features of Sass. So far, my workflow has been greatly enhanced, and that&#8217;s a Win in my book.&nbsp;</div>
<p />
<div>Happy coding.</div>
<p />
<div>-Adc</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://andrewdc.posterous.com/behold-the-awesome-power-of-sass-mixins">Andrew Colclough</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewdc.com/blog/2009/12/behold-the-awesome-power-of-sass-mixins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sinatra &#8211; a tiny web framework.</title>
		<link>http://andrewdc.com/blog/2009/12/sinatra-a-tiny-web-framework/</link>
		<comments>http://andrewdc.com/blog/2009/12/sinatra-a-tiny-web-framework/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 17:13:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://andrewdc.com/blog/2009/12/sinatra-a-tiny-web-framework/</guid>
		<description><![CDATA[


require 'rubygems'  require 'sinatra'  get '/hi' do  "Hello World!"  end



$ gem install sinatra  $ ruby hi.rb  == Sinatra has taken the stage ...  &#62;&#62; Listening on 0.0.0.0:4567  


Framework Here: sinatrarb.com
Here&#8217;s a super duper lightweight web application framework I am fooling around with &#8211; with the help of [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_bookmarklet_entry">
<blockquote class="posterous_long_quote">
<div class="pipe ruby">
<pre><code>require 'rubygems'  require 'sinatra'  get '/hi' do  "Hello World!"  end</code></pre>
</p></div>
</p>
<div class="pipe shell">
<pre><code>$ gem install sinatra  $ ruby hi.rb  == Sinatra has taken the stage ...  &gt;&gt; Listening on 0.0.0.0:4567  </code></pre>
</p></div>
</blockquote>
<div class="posterous_quote_citation">Framework Here: <a href="http://www.sinatrarb.com/">sinatrarb.com</a></div>
<p>Here&#8217;s a super duper lightweight web application framework I am fooling around with &#8211; with the help of <a href="http://noonat.phuce.com/">Noonat</a>. <img src='http://andrewdc.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://andrewdc.posterous.com/sinatra-a-tiny-web-framework">Andrew Colclough</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewdc.com/blog/2009/12/sinatra-a-tiny-web-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FireQuery &#8216;Undefined&#8221; Bug in Firebug HTML Inspector</title>
		<link>http://andrewdc.com/blog/2009/12/firequery-undefined-bug-in-firebug-html-inspector/</link>
		<comments>http://andrewdc.com/blog/2009/12/firequery-undefined-bug-in-firebug-html-inspector/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 18:42:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://andrewdc.com/blog/2009/12/firequery-undefined-bug-in-firebug-html-inspector/</guid>
		<description><![CDATA[If you have installed&#160;
FireQuery&#160;and you use FireBug you might have noticed something like this in the HTML inspector:


&#60;html:divundefinedundefinedundefined&#62;  &#60;bodyundefinedundefinedundefinedundefinedundefinedundefinedundefined&#62;  &#60;styleundefined&#62;  &#60;/style&#62;  &#60;divundefinedundefinedundefined&#62;  &#60;/div&#62;  &#60;divundefined&#62;  &#60;/div&#62;  &#60;divundefined&#62;  &#60;divundefined&#62;  &#60;/div&#62;&#160;

For now &#8211; I just fixed this by uninstalling FireQuery. I imagine that the Firequery devs will probably [...]]]></description>
			<content:encoded><![CDATA[<div>If you have installed&nbsp;
<div style="font-family: Helvetica;"><a href="http://firequery.binaryage.com/">FireQuery</a>&nbsp;and you use FireBug you might have noticed something like this in the HTML inspector:</div>
</div>
<p>
<div>&lt;html:divundefinedundefinedundefined&gt; <br /> &lt;bodyundefinedundefinedundefinedundefinedundefinedundefinedundefined&gt; <br /> &lt;styleundefined&gt; <br /> &lt;/style&gt; <br /> &lt;divundefinedundefinedundefined&gt; <br /> &lt;/div&gt; <br /> &lt;divundefined&gt; <br /> &lt;/div&gt; <br /> &lt;divundefined&gt; <br /> &lt;divundefined&gt; <br /> &lt;/div&gt;&nbsp;</div>
<p>
<div>For now &#8211; I just fixed this by uninstalling FireQuery. I imagine that the Firequery devs will probably fix this issue in future releases.</div>
</p>
</p>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://andrewdc.posterous.com/firequery-undefined-bug-in-firebug-html-inspe">Andrew Colclough</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewdc.com/blog/2009/12/firequery-undefined-bug-in-firebug-html-inspector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don’t Use Black for Shadows &#124; CSS-Tricks</title>
		<link>http://andrewdc.com/blog/2009/12/don%e2%80%99t-use-black-for-shadows-css-tricks/</link>
		<comments>http://andrewdc.com/blog/2009/12/don%e2%80%99t-use-black-for-shadows-css-tricks/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 18:01:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://andrewdc.com/blog/2009/12/don%e2%80%99t-use-black-for-shadows-css-tricks/</guid>
		<description><![CDATA[


That is, “don’t use black for shadows over colored backgrounds.” At every step of my design education I was taught this. For example, when adding a drop shadow as a layer style in Photoshop, don’t just pick a black or a gray but sample a color from the background, then dial it back in opacity [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_bookmarklet_entry">
<blockquote>
<div>
<p>That is, “don’t use black for shadows over colored backgrounds.” At every step of my design education I was taught this. For example, when adding a drop shadow as a layer style in Photoshop, don’t just pick a black or a gray but sample a color from the background, then dial it back in opacity until it looks good. <strong>This is because shadows in real life are not black.</strong> They are darkened versions of whatever they sit on top of, because there is less light. Check out <a href="http://www.flickr.com/photos/nikonvscanon/474310396/">this shadow</a>. If you were trying to recreate that, I don’t think black at any opacity level would get it just right.</p>
</p></div>
</blockquote>
<div class="posterous_quote_citation">READ THE REST: <a href="http://css-tricks.com/dont-use-black-for-shadows/">css-tricks.com</a></div>
<p>Shadows are simply less light reflecting off of a color. Subtle but important thing you learn in art classes.</p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://andrewdc.posterous.com/dont-use-black-for-shadows-css-tricks-0">Andrew Colclough</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewdc.com/blog/2009/12/don%e2%80%99t-use-black-for-shadows-css-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compass: A Real Stylesheet Framework</title>
		<link>http://andrewdc.com/blog/2009/12/compass-a-real-stylesheet-framework/</link>
		<comments>http://andrewdc.com/blog/2009/12/compass-a-real-stylesheet-framework/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 19:38:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://andrewdc.com/blog/2009/12/compass-a-real-stylesheet-framework/</guid>
		<description><![CDATA[ 
via vimeo.com
I am currently testing this system out &#8211; and so far I have been totally blown away. I think Compass+Sass are a huge leap forward in the CSS arena. If you get the opportunity &#8211; watch this full video to get a good overview of some of the power that Compass and Sass [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_bookmarklet_entry"> <object type="application/x-shockwave-flash" height="281" width="500" data="http://vimeo.com/moogaloop.swf?clip_id=4335944&amp;server=vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF"><param name="quality" value="best" /><param name="allowfullscreen" value="true" /><param name="scale" value="showAll" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=4335944&amp;server=vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF" /></param></param></param></param></object>
<div class="posterous_quote_citation">via <a href="http://vimeo.com/4335944">vimeo.com</a></div>
<p>I am currently testing this system out &#8211; and so far I have been totally blown away. I think Compass+Sass are a huge leap forward in the CSS arena. If you get the opportunity &#8211; watch this full video to get a good overview of some of the power that Compass and Sass could add to your web design/dev project. </p>
<p>Here are link to both Frameworks to get you started: <br />-<a href="http://sass-lang.com/">Sass</a> <br />-<a href="http://compass-style.org/">Compass</a></p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://andrewdc.posterous.com/compass-a-real-stylesheet-framework">Andrew Colclough</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewdc.com/blog/2009/12/compass-a-real-stylesheet-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Ares, Development-in-Browser, Goes Public Beta</title>
		<link>http://andrewdc.com/blog/2009/12/project-ares-development-in-browser-goes-public-beta/</link>
		<comments>http://andrewdc.com/blog/2009/12/project-ares-development-in-browser-goes-public-beta/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 18:14:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://andrewdc.com/blog/2009/12/project-ares-development-in-browser-goes-public-beta/</guid>
		<description><![CDATA[  
via precentral.net
Radness.

  Posted via web   from Andrew Colclough  
]]></description>
			<content:encoded><![CDATA[<div class="posterous_bookmarklet_entry"> <a href="http://www.precentral.net/project-ares-development-browser-goes-public-beta?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+Precentralnet+(PreCentral.net)&amp;utm_content=Google+Reader"><img src="http://posterous.com/getfile/files.posterous.com/andrewdc/hFqeAoipEohlaligoasimoaBgmwcgbnmCxEGxyeGwvmIwruBJGfoCIcDpeyd/media_httpwwwprecentralnetsitesprecentralnetfilesarticleimagesDieter20Bohn200912thumb450aresfullpng_tGJIryrgBcfAeIB.png.scaled500.png" width="450" height="296"/> </a>
<div class="posterous_quote_citation">via <a href="http://www.precentral.net/project-ares-development-browser-goes-public-beta?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+Precentralnet+(PreCentral.net)&amp;utm_content=Google+Reader">precentral.net</a></div>
<p>Radness.</p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://andrewdc.posterous.com/project-ares-development-in-browser-goes-publ">Andrew Colclough</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewdc.com/blog/2009/12/project-ares-development-in-browser-goes-public-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
