<?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>Likesalmon Design &#187; From the old blog</title>
	<atom:link href="http://www.likesalmondesign.com/category/ftob/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.likesalmondesign.com</link>
	<description>Open Source Web Design and Development from Scratch</description>
	<lastBuildDate>Tue, 15 Jun 2010 03:51:47 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>FTOB: Set height and width for anchors with display:block</title>
		<link>http://www.likesalmondesign.com/ftob-set-height-and-width-for-anchors-with-displayblock/</link>
		<comments>http://www.likesalmondesign.com/ftob-set-height-and-width-for-anchors-with-displayblock/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 22:14:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[From the old blog]]></category>
		<category><![CDATA[Tests]]></category>

		<guid isPermaLink="false">http://www.likesalmondesign.com/?p=62</guid>
		<description><![CDATA[Originally posted on 10/25/08 at http://likesalmon.wordpress.com
Turns out the width and height properties only work on anchor tags when used in conjunction with display:block.  WTF?
So this does not work:
a { width: 100px; height: 100px; }
But this does:
a { width: 100px; height: 100px; display:block; }
Again, have I seriously never run into this before?  Do I [...]]]></description>
			<content:encoded><![CDATA[<p>Originally posted on 10/25/08 at http://likesalmon.wordpress.com</p>
<p>Turns out the width and height properties only work on anchor tags when used in conjunction with <code>display:block</code>.  WTF?</p>
<p>So this does not work:<br />
<code>a { width: 100px; height: 100px; }</code></p>
<p>But this does:<br />
<code>a { width: 100px; height: 100px; display:block; }</code></p>
<p>Again, have I seriously never run into this before?  Do I always just give up and work around this problem?  Denial ain&#8217;t just a river in Egypt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.likesalmondesign.com/ftob-set-height-and-width-for-anchors-with-displayblock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTOB: CSS width property does exactly what you would expect it to</title>
		<link>http://www.likesalmondesign.com/ftob-css-width-property-does-exactly-what-you-would-expect-it-to/</link>
		<comments>http://www.likesalmondesign.com/ftob-css-width-property-does-exactly-what-you-would-expect-it-to/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 22:13:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[From the old blog]]></category>
		<category><![CDATA[Tests]]></category>

		<guid isPermaLink="false">http://www.likesalmondesign.com/?p=59</guid>
		<description><![CDATA[Originally posted on 10/19/08 at http://likesalmon.wordpress.com
The other day I was laying out a wordpress driven site in css and realized that I didn&#8217;t actually understand how the &#8220;width&#8221; property works.  This was extremely embarrassing to admit to myself, because it means I&#8217;ve been flubbing and cheating my way through the layout of every website [...]]]></description>
			<content:encoded><![CDATA[<p>Originally posted on 10/19/08 at http://likesalmon.wordpress.com</p>
<p>The other day I was laying out a wordpress driven site in css and realized that I didn&#8217;t actually understand how the &#8220;width&#8221; property works.  This was extremely embarrassing to admit to myself, because it means I&#8217;ve been flubbing and cheating my way through the layout of every website I&#8217;ve developed so far.  Its one the things that fell through the cracks because of limited time or lack of will.  So I did a little testing and it turns out the width property works in the most obvious way possible, with one exception.  Here are the results of my test:</p>
<p>All of the following boxes are div elements set to <code>width: 200px; height: 200px</code> and <code>background-color: #ccc</code>.  I use lots of <a title="Examples of the CSS padding shorthand property on the W3 schools website" href="http://www.w3schools.com/css/pr_padding.asp">shorthand</a>, so you&#8217;ll want to review that or this won&#8217;t make much sense.  I performed this test in Firefox 3 so I trust that this behavior is the standard.</p>
<p><em>The following code was removed because it was breaking my layout &#8212; ed.</em></p>
<div class="box" style="margin: 20px 0pt; background-color: #cccccc; width: 200px; height: 200px;">This is the basic box.  No other styling has been added.  If you add more text to the box than the box can hold, it will flow outside the box, but the box will remain the same size.  To cut the text off at the edges of the box use &#8220;overflow: hidden&#8221;.</div>
<div id="one" class="box" style="border: 10px solid black; margin: 20px 0pt; background-color: #cccccc; width: 200px; height: 200px;">The <em>border</em> property of this box is set to <code>border: 10x;</code>. Notice how the inner box is still 200px by 200px.  The border has been added to the outside.  The total dimensions of the div are now 220px by 220px.</div>
<div class="box" style="margin: 40px; background-color: #cccccc; width: 200px; height: 200px;">The <em>margin</em> of this box is set to <code>margin: 40px</code>. The space it now takes up is 280px by 280px. Margins appear to behave exactly like borders, except they are always transparent.</div>
<div class="box" style="margin: 20px 0pt; padding: 10px; background-color: #cccccc; width: 200px; height: 200px;margin-bottom:50px">The <em>padding</em> of this box is set to <code>padding: 10px;</code>.  Notice how this expanded the box 10px on each side, for a total height and width change of 20px. This is the one unexpected behavior I encountered: I figured it would constrain the contents of the box instead of expanding the box itself.</div>
<div style="padding: 10px; background-color: #cccccc; width: 200px; height: 200px;margin-bottom:70px">This box is like the last one, with <code>padding: 10px;</code>.  The difference is that this one is <em>nested inside a div</em> with <code>width: 200px; height: 200px;</code>.  Unless the <code>overflow: hidden;</code> property is set, this makes no difference at all.  The box still expands to 220px by 220px and overflows the container div.</div>
<div id="six" class="box" style="background-color: #cccccc; width: 200px; height: 200px;">This box is <em>contained within a div</em> that is 100px smaller than it is.  This only makes a difference if you use &#8220;overflow: hidden&#8221;, which will cut off the edges of the box where the container div ends.  Keep in mind that the next element on the page will butt up against the parent div and will be overlapped by the over-sized box contained therein.  I had to adjust the margin of the <code>&lt;p&gt;</code> element that follows this div so they don&#8217;t overlap.</div>
<p style="margin-top:200px">In conclusion, if you&#8217;re designing a site that is 800px wide with an 8px border, you would subtract the width of the border from the width of the container element like so: <code>#container { width: 792px; border: 8px solid #ccc; }</code>.  The #container element stays at 800px and everyone is happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.likesalmondesign.com/ftob-css-width-property-does-exactly-what-you-would-expect-it-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTOB: Using jQuery with Wordpress</title>
		<link>http://www.likesalmondesign.com/ftob-using-jquery-with-wordpress/</link>
		<comments>http://www.likesalmondesign.com/ftob-using-jquery-with-wordpress/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 22:12:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[From the old blog]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.likesalmondesign.com/?p=57</guid>
		<description><![CDATA[Originally posted on 10/10/08 at http://likesalmon.wordpress.com
I struggled with this, as the usual method of including a javascript library and an external javascript script did not work.  Usually, I would do this:

&#60;script style="text/javascript" src=&#60;?php bloginfo('url'); ?&#62;/wp-includes/js/jquery/jquery.js" &#62;&#60;/style&#62;
&#60;script style="text/javascript" src=&#60;?php bloginfo('template_directory'); ?&#62;/myScript.js" &#62;&#60;/style&#62;

But that didn&#8217;t work at all, even when I included the jQuery.noConflict() line in [...]]]></description>
			<content:encoded><![CDATA[<p>Originally posted on 10/10/08 at http://likesalmon.wordpress.com</p>
<p>I struggled with this, as the usual method of including a javascript library and an external javascript script did not work.  Usually, I would do this:</p>
<p><code><br />
&lt;script style="text/javascript" src=&lt;?php bloginfo('url'); ?&gt;/wp-includes/js/jquery/jquery.js" &gt;&lt;/style&gt;<br />
&lt;script style="text/javascript" src=&lt;?php bloginfo('template_directory'); ?&gt;/myScript.js" &gt;&lt;/style&gt;<br />
</code></p>
<p>But that didn&#8217;t work at all, even when I included the jQuery.noConflict() line in my script.  So I ended up going with this, which loads the jQuery library that is included with the wordpress installation and then loads my script without any conflicts:</p>
<p><code><br />
&lt;?php wp_enqueue_script( 'myScript', '/wp-content/themes/myTheme/myScript.js', array('jquery') ); ?&gt;<br />
</code></p>
<p>The wordpress docs have very little to say about wp_enqueue_script(), the function that makes this possible.  A good resource with examples of use can be found here:</p>
<p><a href="http://nickohrn.com/loading-javascript-libraries-in-wordpress-plugins-with-wp_enqueue_script/" title="Nick Ohrn has this figured out">http://nickohrn.com/loading-javascript-libraries-in-wordpress-plugins-with-wp_enqueue_script/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.likesalmondesign.com/ftob-using-jquery-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTOB: Installing Haxe on Mac OS 10.5.5</title>
		<link>http://www.likesalmondesign.com/ftob/</link>
		<comments>http://www.likesalmondesign.com/ftob/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 22:12:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[From the old blog]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.likesalmondesign.com/?p=55</guid>
		<description><![CDATA[Originally posted on 10/10/08 at http://likesalmon.wordpress.com
I decided not to use MTASC as my compiler after all, since it can&#8217;t do Actionscript 3.  I&#8217;m going with Haxe instead.
Installation:

 Go to http://haxe.org/download and download the OSX Universal Installer.
 Unpack the installer and double click on it
 Open up .bash_login from you home directory in your text [...]]]></description>
			<content:encoded><![CDATA[<p>Originally posted on 10/10/08 at http://likesalmon.wordpress.com</p>
<p>I decided not to use MTASC as my compiler after all, since it can&#8217;t do Actionscript 3.  I&#8217;m going with Haxe instead.</p>
<p>Installation:</p>
<ol>
<li> Go to <a title="haXe website" href="http://haxe.org/download">http://haxe.org/download</a> and download the OSX Universal Installer.</li>
<li> Unpack the installer and double click on it</li>
<li> Open up .bash_login from you home directory in your text editor and add the line: export HAXE_LIBRARY_PATH=&#8221;/usr/lib/haxe/std:./&#8221;</li>
<li>Follow the instructions for &#8220;Getting Started with haXe/Flash&#8221; in the <a href="http://haxe.org/doc/start/flash">Documentation section of the haXe website</a> to test your installation</li>
</ol>
<p>Now you can go to http://www.loziosecchi.it/lab/textmate_bundle/ and download and install the Haxe TextMate bundle:</p>
<ol>
<li>Go to <a href="http://www.loziosecchi.it/lab/textmate_bundle/">Marco Secchi&#8217;s website</a> and download the haXe bundle for Textmate.</li>
<li>Unpack it</li>
<li>In Finder, locate the Textmate icon in the Applications folder and right click on it.  Choose &#8220;show package contents&#8221; from the menu that appears.</li>
<li>Navigate to Contents -&gt; Shared Support -&gt;Bundles within the TextMate package</li>
<li>Open a new Finder window and locate the bundle you unpacked</li>
<li>Drag and drop the haXe2.tmbundle file into the Bundles folder and restart TextMate</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.likesalmondesign.com/ftob/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTOB: Installing Haxe</title>
		<link>http://www.likesalmondesign.com/ftob-installing-haxe/</link>
		<comments>http://www.likesalmondesign.com/ftob-installing-haxe/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 22:11:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[From the old blog]]></category>

		<guid isPermaLink="false">http://www.likesalmondesign.com/?p=53</guid>
		<description><![CDATA[Originally posted on 10/10/08 at http://likesalmon.wordpress.com
I decided that if MTASC is only good for Actionscript 2 I should probably try Haxe, which is a compiler that does Actionscript 3 as well as a lot of other stuff.  It looks like my development platform is not going to resemble the book I was referencing at [...]]]></description>
			<content:encoded><![CDATA[<p>Originally posted on 10/10/08 at http://likesalmon.wordpress.com</p>
<p>I decided that if MTASC is only good for Actionscript 2 I should probably try Haxe, which is a compiler that does Actionscript 3 as well as a lot of other stuff.  It looks like my development platform is not going to resemble the book I was referencing at all.  I&#8217;ll try to post a complete installation guide from soup to nuts once I get all this up and running.</p>
<p>And so, to install Haxe on OS 10.5..5</p>
]]></content:encoded>
			<wfw:commentRss>http://www.likesalmondesign.com/ftob-installing-haxe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTOB: Installing Flash and Flex Bundles on Textmate</title>
		<link>http://www.likesalmondesign.com/installing-flash-and-flex-bundles-on-textmate/</link>
		<comments>http://www.likesalmondesign.com/installing-flash-and-flex-bundles-on-textmate/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 22:10:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[From the old blog]]></category>
		<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.likesalmondesign.com/?p=51</guid>
		<description><![CDATA[Originally posted on 10/9/08 at http://likesalmon.wordpress.com
This is important because it allows me to use textmate as my editor.  I freaking love textmate.  For instructions of how to do this go here:
http://flashalisious.com/2007/07/30/installing-as3-and-flex-bundle-for-textmate/
Do what he says, copy and paste the code he gives into the terminal all at once and press enter.  Terminal will [...]]]></description>
			<content:encoded><![CDATA[<p>Originally posted on 10/9/08 at http://likesalmon.wordpress.com</p>
<p>This is important because it allows me to use textmate as my editor.  I freaking love textmate.  For instructions of how to do this go here:</p>
<p><a href="http://flashalisious.com/2007/07/30/installing-as3-and-flex-bundle-for-textmate/" target="Go to flashalisious">http://flashalisious.com/2007/07/30/installing-as3-and-flex-bundle-for-textmate/</a></p>
<p>Do what he says, copy and paste the code he gives into the terminal all at once and press enter.  Terminal will run the commands one at a time.  When it gets to the last command (&#8220;osascript -e ‘tell app “TextMate” to reload bundles’&#8221;) it will throw the error &#8220;0:1: syntax error: A unknown token can’t go here. (-2740)&#8221;.</p>
<p>Don&#8217;t panic, just press the up arrow to bring up the line &#8220;osascript -e ‘tell app “TextMate” to reload bundles&#8221; again and then go through and replace the single and double quotes with new single and double quotes.  When you cut and paste them from the website it puts curly quotes in, which the terminal can&#8217;t read.  Voila&#8217;!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.likesalmondesign.com/installing-flash-and-flex-bundles-on-textmate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTOB: Installing MTASC on Mac OS 10.5.5</title>
		<link>http://www.likesalmondesign.com/ftob-installing-mtasc-on-mac-os-1055/</link>
		<comments>http://www.likesalmondesign.com/ftob-installing-mtasc-on-mac-os-1055/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 22:10:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[From the old blog]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.likesalmondesign.com/?p=49</guid>
		<description><![CDATA[Originally posted on 10/9/08 at http://likesalmon.wordpress.com/
This was easy enough:

Download the Mac OSX package from http://www.mtasc.org/#download
Unzip it and change the name of the folder to &#8220;mtasc&#8221; for ease of use
Put the unzipped folder in your Applications directory
Put a new entry in your .bash_login file that says:

export PATH=&#8221;/Applications/mtasc:$PATH&#8221;



]]></description>
			<content:encoded><![CDATA[<p>Originally posted on 10/9/08 at http://likesalmon.wordpress.com/</p>
<p>This was easy enough:</p>
<ol>
<li>Download the Mac OSX package from <a href="http://www.mtasc.org/#download" target="_blank">http://www.mtasc.org/#download</a></li>
<li>Unzip it and change the name of the folder to &#8220;mtasc&#8221; for ease of use</li>
<li>Put the unzipped folder in your Applications directory</li>
<li>Put a new entry in your .bash_login file that says:
<ol>
<li>export PATH=&#8221;/Applications/mtasc:$PATH&#8221;</li>
</ol>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.likesalmondesign.com/ftob-installing-mtasc-on-mac-os-1055/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTOB: Installing the Flash SDK on Mac OS 10.5.5</title>
		<link>http://www.likesalmondesign.com/ftob-installing-the-flash-sdk-on-mac-os-1055/</link>
		<comments>http://www.likesalmondesign.com/ftob-installing-the-flash-sdk-on-mac-os-1055/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 22:08:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[From the old blog]]></category>
		<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://www.likesalmondesign.com/?p=47</guid>
		<description><![CDATA[Originally posted on 10/3/08 at http://likesalmon.wordpress.com
Vague instructions from the book led me to my first roadblock.  Can&#8217;t blame &#8216;em, there&#8217;s just to many OSs out there to write for all of them.  But we&#8217;re smart right? Right.
This video includes step by step instructions for how to install the Flex SDK and the correct [...]]]></description>
			<content:encoded><![CDATA[<p>Originally posted on 10/3/08 at http://likesalmon.wordpress.com</p>
<p>Vague instructions from the book led me to my first roadblock.  Can&#8217;t blame &#8216;em, there&#8217;s just to many OSs out there to write for all of them.  But we&#8217;re smart right? Right.</p>
<p>This video includes step by step instructions for how to install the Flex SDK and the correct way to add it to your path:</p>
<p><a href="http://learnhub.com/lesson/video/108-start-using-flex3-for-free" title="Go to learnhub">http://learnhub.com/lesson/video/108-start-using-flex3-for-free</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.likesalmondesign.com/ftob-installing-the-flash-sdk-on-mac-os-1055/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTOB: Open Source Flash on Mac OS 10.5 Leopard</title>
		<link>http://www.likesalmondesign.com/ftob-open-source-flash-on-mac-os-105-leopard/</link>
		<comments>http://www.likesalmondesign.com/ftob-open-source-flash-on-mac-os-105-leopard/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 22:06:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[From the old blog]]></category>

		<guid isPermaLink="false">http://www.likesalmondesign.com/?p=45</guid>
		<description><![CDATA[Originally posted on 10/3/08 at http://likesalmon.wordpress.com
I haven&#8217;t written for a while but there&#8217;s no time for apologizing.  I decided (after years of swearing I never would) its time to learn flash.  I&#8217;m doing this totally open source, so I&#8217;m going to post all the steps it takes to get up and running in [...]]]></description>
			<content:encoded><![CDATA[<p>Originally posted on 10/3/08 at http://likesalmon.wordpress.com</p>
<p>I haven&#8217;t written for a while but there&#8217;s no time for apologizing.  I decided (after years of swearing I never would) its time to learn flash.  I&#8217;m doing this totally open source, so I&#8217;m going to post all the steps it takes to get up and running in sequence, post by post.  I&#8217;m following the installation instructions from the free downloadable chapter of &#8220;The Essential Guide to Open Source Flash Development.&#8221;  This is available here:</p>
<p>http://www.friendsofed.com/book.html?isbn=9781430209935</p>
<p>There are several resources out there but this is the only clear getting-started guide I&#8217;ve run into.  Plus, my friend Moses was a contributing author!  He develops on a mac and is a has worked on some very high profile flash projects.  Thanks Moses!  I swear I&#8217;ll buy that book if I get this to work.</p>
<p>Here is a rundown of my system that I will be attempting this on:</p>
<p>Hardware Overview:</p>
<p>Model Name:    MacBook<br />
Model Identifier:    MacBook2,1<br />
Processor Name:    Intel Core 2 Duo<br />
Processor Speed:    2.16 GHz<br />
Number Of Processors:    1<br />
Total Number Of Cores:    2<br />
L2 Cache:    4 MB<br />
Memory:    4 GB</p>
<p>The text editor I use is TextMate, and the browser I use is Firefox 3.  If I use it, you can assume that I highly recommend it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.likesalmondesign.com/ftob-open-source-flash-on-mac-os-105-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTOB: New British Coin Designs</title>
		<link>http://www.likesalmondesign.com/new-british-coin-designs/</link>
		<comments>http://www.likesalmondesign.com/new-british-coin-designs/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 21:57:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[From the old blog]]></category>
		<category><![CDATA[Shiny and New]]></category>

		<guid isPermaLink="false">http://www.likesalmondesign.com/?p=43</guid>
		<description><![CDATA[Originally posted on 4/5/08 at http://likesalmon.wordpress.com
My girlfriend and I are house sitting this week while our friends are in Hawaii.  They have four cats and a dog, good wine, and a lot of food in the fridge.  I&#8217;ve been going on lots of walks, entertaining friends, and cooking, but precious little javascript.
I do [...]]]></description>
			<content:encoded><![CDATA[<p>Originally posted on 4/5/08 at http://likesalmon.wordpress.com</p>
<p>My girlfriend and I are house sitting this week while our friends are in Hawaii.  They have four cats and a dog, good wine, and a lot of food in the fridge.  I&#8217;ve been going on lots of walks, entertaining friends, and cooking, but precious little javascript.</p>
<p>I do have one interesting bit to share: this week the <a href="http://www.royalmint.com/">Royal Mint</a> revealed new designs for British coinage. I dig them. I think its really bold to choose a design that is less than completely obvious.  Check out this <a href="http://news.bbc.co.uk/1/hi/uk/7326491.stm">BBC News article</a> about them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.likesalmondesign.com/new-british-coin-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
