<?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>Alex Briffett</title>
	<atom:link href="http://www.briffett.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.briffett.net</link>
	<description>Life is just a state of mind</description>
	<lastBuildDate>Wed, 17 Feb 2010 14:21:19 +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>Internet Explorer Clears PHP Session Cookies</title>
		<link>http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/</link>
		<comments>http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 14:08:40 +0000</pubDate>
		<dc:creator>Alex Briffett</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Web Code]]></category>

		<guid isPermaLink="false">http://www.briffett.net/?p=323</guid>
		<description><![CDATA[Internet Explorer Clears PHP Session Cookies]]></description>
			<content:encoded><![CDATA[<p>I set a session cookie in a PHP script accessed via an iframe in a Google Site as a gadget.  The PHP script did a check on the user and if ok, set the session cookie so that they could access secure information on another system on the same domain as the first PHP script.  Once the cookie was set, I used a redirect to let the user access the secure information...</p>
<div style="padding: 10px; background-color: #eee;">
<p style="padding-left: 30px;"><strong>&lt;?php</strong></p>
<p style="padding-left: 30px;"><strong>if ($user == 'ok')</strong></p>
<p style="padding-left: 30px;"><strong>{</strong></p>
<p style="padding-left: 30px;"><strong>    session_start();</strong></p>
<p style="padding-left: 30px;"><strong>$_SESSION['allowed'] = 1;</strong></p>
<p style="padding-left: 30px;"><strong>header("Location: securepage.php");</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p style="padding-left: 30px;"><strong>?&gt;</strong></p>
</div>
<p>This worked fine in Firefox and Chrome but not in Internet Explorer 7.  Having debugged the code, I realised that the $_SESSION['allowed'] = 1 was not making it to the secure information PHP script.  Internet Explorer was deleting or not receiving the PHP SESSION information.</p>
<p>This appears to be a security measure in Internet Explorer 6, 7 and potentially 8.  In any case, the fix is to do the following on the first PHP script where you start the session.</p>
<div style="padding: 10px; background-color: #eee;">
<p style="padding-left: 30px;"><strong>&lt;?php</strong></p>
<p style="padding-left: 30px;"><strong>if ($user == 'ok')</strong></p>
<p style="padding-left: 30px;"><strong>{</strong></p>
<p style="padding-left: 30px;"><strong>    session_start();</strong></p>
<p style="padding-left: 30px;"><strong>    header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');</strong></p>
<p style="padding-left: 30px;"><strong>    $_SESSION['allowed'] = 1;</strong></p>
<p style="padding-left: 30px;"><strong>    header("Location: securepage.php");</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p style="padding-left: 30px;"><strong>?&gt;</strong></p>
</div>
<p>This extra P3P header tells Internet Explorer to accept the cookies from the first PHP script as it links or redirects to the securepage.php.  I am not sure why IE would interpret doing this as a security threat but it could be to do with doing a header("Location... from within an iframe.  Security level in Internet Explorer was set to medium-high.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It | Post It | Share It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Internet+Explorer+Clears+PHP+Session+Cookies&amp;Description=Internet+Explorer+Clears+PHP+Session+Cookies&amp;Url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;submitHeadline=Internet+Explorer+Clears+PHP+Session+Cookies&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;h=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;bm_description=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;title=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Internet+Explorer+Clears+PHP+Session+Cookies+@+http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/&amp;t=Internet+Explorer+Clears+PHP+Session+Cookies" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.briffett.net/2010/02/17/internet-explorer-clears-php-session-cookies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple PHP Function to Maintain Drop-Down State</title>
		<link>http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/</link>
		<comments>http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 16:28:32 +0000</pubDate>
		<dc:creator>Alex Briffett</dc:creator>
				<category><![CDATA[Web Code]]></category>

		<guid isPermaLink="false">http://www.briffett.net/?p=260</guid>
		<description><![CDATA[This PHP function is a quick, simple way to maintain the state of select / drop downs when the form input is invalid.



Bookmark It &#124; Post It &#124; Share It





























]]></description>
			<content:encoded><![CDATA[<p>This PHP function is a quick, simple way to maintain the state of select / drop downs when the form input is invalid.</p>
<p><code><?php<br />
/**<br />
* Function to draw drop down boxes and allow the state to be maintained<br />
* if the form has an error<br />
*<br />
* @param array $vals - select box values<br />
* @param array $text - select box show values<br />
* @param string $search - the name/id of the select box to be searched for<br />
*/<br />
function dropDown( $vals, $text, $search )<br />
{<br />
for ($i=0; $i &lt; count($vals); $i++)<br />
{<br />
if ($search == trim($vals[$i]))<br />
{<br />
$selected = "selected=\"selected\"";<br />
}<br />
else<br />
{<br />
$selected = "";<br />
}<br />
$result .= "$text[$i]\n";<br />
}<br />
return ($result);<br />
}<br />
?></code></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It | Post It | Share It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Simple+PHP+Function+to+Maintain+Drop-Down+State&amp;Description=Simple+PHP+Function+to+Maintain+Drop-Down+State&amp;Url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;submitHeadline=Simple+PHP+Function+to+Maintain+Drop-Down+State&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;h=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;bm_description=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;title=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Simple+PHP+Function+to+Maintain+Drop-Down+State+@+http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/&amp;t=Simple+PHP+Function+to+Maintain+Drop-Down+State" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.briffett.net/2010/01/14/simple-php-function-to-maintain-drop-down-state/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5+ and MySQL 4.0 Could not connect</title>
		<link>http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/</link>
		<comments>http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 11:40:18 +0000</pubDate>
		<dc:creator>Alex Briffett</dc:creator>
				<category><![CDATA[Web Code]]></category>
		<category><![CDATA[Could not connect]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql4]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">http://www.briffett.net/?p=242</guid>
		<description><![CDATA[I got the following error: Could not connect: Connecting to 3.22, 3.23 &#038; 4.0 servers is not supported]]></description>
			<content:encoded><![CDATA[<p>Hopefully you should never encounter this problem but I recently needed to do an insert into a MySQL 4.0 table from a remote installation of PHP 5.  I could connect from the PHP5 server to the MySQL 4.0 server via the command line, so assumed this would work find using PHP5.</p>
<p>I got the following error: Could not connect: Connecting to 3.22, 3.23 &amp; 4.0 servers is not supported</p>
<p>Basically, later versions of PHP use a password encryption algorithm which means they are incompatible with MySQL 4.0 but not MySQL 4.1+.</p>
<p>Since the command line connection worked, the solution was to create a shell script on the PHP5 server which looked similar to the following:</p>
<div style="padding: 10px; background-color: #eee;">
<p style="padding-left: 30px;"><strong>#!/bin/sh</strong></p>
<p style="padding-left: 30px;"><strong>/usr/bin/mysql -u USERNAME -pPASSWORD DBNAME -h HOST&lt;&lt;STOP<br />
insert into table (name, email) values ('$1','$2')<br />
\g<br />
STOP<br />
exit</strong></p>
</div>
<p>You will need to swap the capitalized variables for your own USERNAME, PASSWORD, DBNAME and HOST.</p>
<p>I called the shell script doinsert.sh and chmodded it 755 to make it executable.  Then, in my PHP script I used:</p>
<div style="padding: 10px; background-color: #eee;">
<p style="padding-left: 30px;"><strong>&lt;?php<br />
</strong></p>
<p style="padding-left: 30px;"><strong>$r = shell_exec('./doinsert.sh ' . $name . " " . $email);</strong></p>
<p style="padding-left: 30px;"><strong>?&gt;</strong></p>
</div>
<p>...which executes the shell script and runs the insert statement I was aiming for.  If you want to run a select statement instead of my insert example, then anything returned by the shell script should be available in $r.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It | Post It | Share It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=PHP+5%2B+and+MySQL+4.0+Could+not+connect&amp;Description=PHP+5%2B+and+MySQL+4.0+Could+not+connect&amp;Url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;submitHeadline=PHP+5%2B+and+MySQL+4.0+Could+not+connect&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;h=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;bm_description=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;title=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+PHP+5%2B+and+MySQL+4.0+Could+not+connect+@+http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/&amp;t=PHP+5%2B+and+MySQL+4.0+Could+not+connect" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.briffett.net/2010/01/14/php-5-and-mysql-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is This?</title>
		<link>http://www.briffett.net/2009/10/18/what-is-this/</link>
		<comments>http://www.briffett.net/2009/10/18/what-is-this/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 17:16:00 +0000</pubDate>
		<dc:creator>Alex Briffett</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Nature]]></category>
		<category><![CDATA[close-up]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[guess]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[Nature Photos]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[shark]]></category>

		<guid isPermaLink="false">http://www.briffett.net/?p=150</guid>
		<description><![CDATA[Take a look at this close-up photograph.  Can you guess what it is?  Leave a comment before clicking on the photo to find the answer.]]></description>
			<content:encoded><![CDATA[<h2>What could this close-up photograph be of?  It looks a bit like shark's teeth at first glance...any other guesses? Leave a comment with your guesses and <strong>no cheating</strong>.</h2>
<h2>Click the photo to see what it really is.</h2>
<div id="attachment_152" class="wp-caption alignleft" style="width: 406px"><a href="http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/"><img class="size-full wp-image-152" title="What Is This?" src="http://www.briffett.net/wp-content/uploads/2009/10/what-is-this.jpg" alt="Guess what this is?  Sharks' teeth perhaps?" width="396" height="301" /></a><p class="wp-caption-text">Guess what this is?  Sharks&#39; teeth perhaps?</p></div>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It | Post It | Share It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=What+Is+This%3F&amp;Description=What+Is+This%3F&amp;Url=http://www.briffett.net/2009/10/18/what-is-this/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.briffett.net/2009/10/18/what-is-this/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.briffett.net/2009/10/18/what-is-this/&amp;submitHeadline=What+Is+This%3F&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.briffett.net/2009/10/18/what-is-this/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.briffett.net/2009/10/18/what-is-this/&amp;h=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.briffett.net/2009/10/18/what-is-this/&amp;bm_description=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.briffett.net/2009/10/18/what-is-this/&amp;title=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.briffett.net/2009/10/18/what-is-this/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+What+Is+This%3F+@+http://www.briffett.net/2009/10/18/what-is-this/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.briffett.net/2009/10/18/what-is-this/&amp;t=What+Is+This%3F" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.briffett.net/2009/10/18/what-is-this/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Unnecessary Umlauts</title>
		<link>http://www.briffett.net/2009/10/17/unnecessary-umlauts/</link>
		<comments>http://www.briffett.net/2009/10/17/unnecessary-umlauts/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 23:06:27 +0000</pubDate>
		<dc:creator>Alex Briffett</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Language and Linguistics]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[german]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[linguistics]]></category>
		<category><![CDATA[umlauits]]></category>

		<guid isPermaLink="false">http://www.briffett.net/?p=125</guid>
		<description><![CDATA[The umlaut is a diacritic mark used to represent a sound shift in spoken language [see: wikipedia:umlaut] It is usually represented by a pair of dots above the affected letter.  In German you often see it used in the the following characters Ö, Ä, Ë.]]></description>
			<content:encoded><![CDATA[<p>The umlaut is a diacritic mark used to represent a sound shift in spoken language [see:<a title="Wikidpedia Umlaut(diacritic)" href="http://en.wikipedia.org/wiki/Umlaut_(diacritic)"> wikipedia:umlaut]</a> It is usually represented by a pair of dots above the affected letter.  In German you often see it used in the the following characters Ö, Ä, Ë.  Words like schön (nice) in German are sometimes written with an extra 'e' as in 'schoen' to represent the umlaut where the umlauted character is not available. It is perhaps because of this German / European use of the umlaut that is has achieved a cool status in design, music and social networking.</p>
<p>The umlaut is now appearing, unnecessarily, in many modern trademarks and names.  None of these words actually require an umlaut to represent any vocal sound shift, rather it is purely an aid to design.  Blogger and designer ultamagnus79 also noticed this and has used the umlaut device to great effect in his <a title="ultramagnus79 umlaut experiments" href="http://ladg.wordpress.com/2008/09/24/umlauts/">visual experiments</a>.  I took the 'graffiti' picture below in Horsham park and interestingly this example includes an umlaut over a letter 'g' with no pretence at following any rules of grammar, it is purely a fashionable adornment to the 'nothing ever matters' statement.</p>
<p>So, if you are a graphic designer, a member of a band looking for a name or the developer of a Web 2 style app or site, please consider the humble umlaut.  It could add a 'street' element with yet an air of European sophistication to your product.  Also, you do not have to learn German to use it properly; the old rules no longer apply.</p>
<div id="attachment_131" class="wp-caption alignleft" style="width: 160px"><a href="http://www.briffett.net/wp-content/uploads/2009/10/nothing-ever-matters.jpg"><img class="size-thumbnail wp-image-131" title="Nothing Ever Matters Graffiti" src="http://www.briffett.net/wp-content/uploads/2009/10/nothing-ever-matters-150x150.jpg" alt="Graffiti featuring umlauts" width="150" height="150" /></a><p class="wp-caption-text">Graffiti featuring umlauts</p></div>
<div id="attachment_126" class="wp-caption alignleft" style="width: 160px"><a href="http://www.briffett.net/wp-content/uploads/2009/10/bunker-bar.jpg"><img class="size-thumbnail wp-image-126" title="Bunker Bar Logo" src="http://www.briffett.net/wp-content/uploads/2009/10/bunker-bar-150x150.jpg" alt="Bunker Bar logo featuring umlaut over the 'u'" width="150" height="150" /></a><p class="wp-caption-text">Bunker Bar logo featuring umlaut over the &#39;u&#39;</p></div>
<div id="attachment_128" class="wp-caption alignleft" style="width: 159px"><a href="http://www.briffett.net/wp-content/uploads/2009/10/snaptu.jpg"><img class="size-thumbnail wp-image-128" title="Snaptu Logo" src="http://www.briffett.net/wp-content/uploads/2009/10/snaptu-150x150.jpg" alt="Snatptu Logo with smiley umlaut" width="149" height="150" /></a><p class="wp-caption-text">Snatptu Logo with smiley umlaut</p></div>
<div id="attachment_127" class="wp-caption alignleft" style="width: 160px"><a href="http://www.briffett.net/wp-content/uploads/2009/10/motorhead_england_logo_jpg.jpg"><img class="size-thumbnail wp-image-127" title="Motorhead Logo" src="http://www.briffett.net/wp-content/uploads/2009/10/motorhead_england_logo_jpg-150x150.jpg" alt="Motorhead logo with umlaut over the 'o'" width="150" height="150" /></a><p class="wp-caption-text">Motorhead logo with umlaut over the &#39;o&#39;</p></div>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It | Post It | Share It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Unnecessary+Umlauts&amp;Description=Unnecessary+Umlauts&amp;Url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.briffett.net/2009/10/17/unnecessary-umlauts/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;submitHeadline=Unnecessary+Umlauts&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.briffett.net/2009/10/17/unnecessary-umlauts/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;h=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;bm_description=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;title=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.briffett.net/2009/10/17/unnecessary-umlauts/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Unnecessary+Umlauts+@+http://www.briffett.net/2009/10/17/unnecessary-umlauts/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.briffett.net/2009/10/17/unnecessary-umlauts/&amp;t=Unnecessary+Umlauts" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.briffett.net/2009/10/17/unnecessary-umlauts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>i-nigma barcode</title>
		<link>http://www.briffett.net/2009/09/09/i-nigma-barcode/</link>
		<comments>http://www.briffett.net/2009/09/09/i-nigma-barcode/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 09:21:25 +0000</pubDate>
		<dc:creator>Alex Briffett</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[adverts]]></category>
		<category><![CDATA[barcode]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[i-nigma]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[reader.mobile]]></category>

		<guid isPermaLink="false">http://www.briffett.net/?p=110</guid>
		<description><![CDATA[Point your mobile phone's browser to http://www.i-nigma.mobi and download the barcode reader.  Point your phone at this barcode and get a link or message.]]></description>
			<content:encoded><![CDATA[<div id="attachment_109" class="wp-caption alignleft" style="width: 208px"><a href="http://www.briffett.net/wp-content/uploads/2009/09/img.php.png"><img class="size-full wp-image-109" title="img.php" src="http://www.briffett.net/wp-content/uploads/2009/09/img.php.png" alt="i-nigma barcode" width="198" height="223" /></a><p class="wp-caption-text">i-nigma barcode</p></div>
<p>Point your mobile phone's browser to <a href="http://www.i-nigma.mobi">http://www.i-nigma.mobi</a> and download the barcode reader.  Point your phone at this barcode and get a link or message.</p>
<p>Ok, so it is just a quirky bit of fun at the moment but you can see the benefits.  I imagine band fly posters with barcodes instead of web links.  It would save all the kids living in mobile world the inconvenience of using predictive text with weird band names or attempting to type in the www address for gig lists etc.</p>
<p>I expect, if the idea catches on, we will see it on adverts for major brands soon.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It | Post It | Share It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=i-nigma+barcode&amp;Description=i-nigma+barcode&amp;Url=http://www.briffett.net/2009/09/09/i-nigma-barcode/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.briffett.net/2009/09/09/i-nigma-barcode/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;submitHeadline=i-nigma+barcode&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.briffett.net/2009/09/09/i-nigma-barcode/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;h=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;bm_description=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;title=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.briffett.net/2009/09/09/i-nigma-barcode/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+i-nigma+barcode+@+http://www.briffett.net/2009/09/09/i-nigma-barcode/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.briffett.net/2009/09/09/i-nigma-barcode/&amp;t=i-nigma+barcode" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.briffett.net/2009/09/09/i-nigma-barcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book Review: The Three Little Wolves and the Big Bad Pig: ISBN: 0-434-96050-0</title>
		<link>http://www.briffett.net/2009/06/10/three-little-wolves/</link>
		<comments>http://www.briffett.net/2009/06/10/three-little-wolves/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 18:37:55 +0000</pubDate>
		<dc:creator>Alex Briffett</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Language and Linguistics]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[Book Reviews]]></category>
		<category><![CDATA[children's book reviews]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[three little pigs]]></category>
		<category><![CDATA[three little wolves]]></category>

		<guid isPermaLink="false">http://www.briffett.net/?p=92</guid>
		<description><![CDATA[
This is more of a recommendation rather than a review. Eugene Trivizas and Helen Oxenbury(illustrations) have collaborated on a true comedy masterpiece. The book is basically the Three Little Pigs turned on its head with hysterical comic effect. Despite possibly aimed more at putting a smile on adult faces, the topsy-turvy nature of the story, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amazon.co.uk/gp/product/1405209453?ie=UTF8&amp;tag=alexbrif-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=1405209453"><img style="float: left; padding: 5px;" src="/wp-content/images/51paxLg7KQL._SL160_.jpg" border="0" alt="Three Little Wolves" /></a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=alexbrif-21&amp;l=as2&amp;o=2&amp;a=1405209453" border="0" alt="" width="1" height="1" /></p>
<p>This is more of a recommendation rather than a review. Eugene Trivizas and Helen Oxenbury(illustrations) have collaborated on a true comedy masterpiece. The book is basically the Three Little Pigs turned on its head with hysterical comic effect. Despite possibly aimed more at putting a smile on adult faces, the topsy-turvy nature of the story, compared to the original, should not be lost on children as young as 4 or 5.</p>
<p>Although the violence of the story is updated, with mentions of dynamite and 'the pig went and fetched his pneumatic drill and smashed the house down', do not let this put your off. There is an unexpectedly happy ending. The Penguin version is actually far more violent with 2 pigs being eaten by the wolf and the wolf himself is boiled to death in a cauldron.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It | Post It | Share It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0&amp;Description=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0&amp;Url=http://www.briffett.net/2009/06/10/three-little-wolves/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.briffett.net/2009/06/10/three-little-wolves/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;submitHeadline=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.briffett.net/2009/06/10/three-little-wolves/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;h=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;bm_description=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;title=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.briffett.net/2009/06/10/three-little-wolves/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0+@+http://www.briffett.net/2009/06/10/three-little-wolves/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.briffett.net/2009/06/10/three-little-wolves/&amp;t=Book+Review%3A+The+Three+Little+Wolves+and+the+Big+Bad+Pig%3A+ISBN%3A+0-434-96050-0" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.briffett.net/2009/06/10/three-little-wolves/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Decent Egg From Ex-Battery Hen</title>
		<link>http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/</link>
		<comments>http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 17:38:57 +0000</pubDate>
		<dc:creator>Alex Briffett</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Nature]]></category>
		<category><![CDATA[chickens]]></category>
		<category><![CDATA[coop]]></category>
		<category><![CDATA[egg]]></category>
		<category><![CDATA[eggs]]></category>
		<category><![CDATA[ex-battery]]></category>
		<category><![CDATA[hens]]></category>

		<guid isPermaLink="false">http://www.briffett.net/?p=64</guid>
		<description><![CDATA[Our ex-battery hens have laid us a decent egg or two...]]></description>
			<content:encoded><![CDATA[<div id="attachment_60" class="wp-caption alignleft" style="width: 310px"><a href="http://www.briffett.net/wp-content/uploads/2009/06/first-egg.jpg"><img class="size-medium wp-image-60" title="Ex-battery Hen Egg vs Shop Egg" src="http://www.briffett.net/wp-content/uploads/2009/06/first-egg-300x201.jpg" alt="Ex-battery hen egg (left) compared with shop bough free-range egg." width="300" height="201" /></a><p class="wp-caption-text">Ex-battery hen egg (left) compared with shop bought free-range egg.</p></div>
<p>Our ex-battery hens have laid us a decent egg or two after just a few days in their new coop.  This photo shows a camparison between our hen's egg and a shop-bought free-range one.  Maybe after some more time, grit(crushed oyster shells), vitamins, greens and exercise from our garden, our chucks might produce a darker coloured egg.</p>
<p>Earlier attempts at egg laying produced eggs with very<strong> </strong>thin shells or even one with no shell at all.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It | Post It | Share It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=First+Decent+Egg+From+Ex-Battery+Hen&amp;Description=First+Decent+Egg+From+Ex-Battery+Hen&amp;Url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;submitHeadline=First+Decent+Egg+From+Ex-Battery+Hen&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;h=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;bm_description=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;title=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+First+Decent+Egg+From+Ex-Battery+Hen+@+http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/&amp;t=First+Decent+Egg+From+Ex-Battery+Hen" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.briffett.net/2009/06/07/first-decent-egg-from-ex-battery-hen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chicken Coop</title>
		<link>http://www.briffett.net/2009/05/12/6/</link>
		<comments>http://www.briffett.net/2009/05/12/6/#comments</comments>
		<pubDate>Tue, 12 May 2009 21:01:26 +0000</pubDate>
		<dc:creator>Alex Briffett</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Nature]]></category>
		<category><![CDATA[chicken]]></category>
		<category><![CDATA[chicken wire]]></category>
		<category><![CDATA[coop]]></category>
		<category><![CDATA[coup]]></category>
		<category><![CDATA[hen]]></category>
		<category><![CDATA[hens]]></category>
		<category><![CDATA[house]]></category>
		<category><![CDATA[netting]]></category>
		<category><![CDATA[preserver]]></category>
		<category><![CDATA[run]]></category>
		<category><![CDATA[screws]]></category>
		<category><![CDATA[tanelised]]></category>
		<category><![CDATA[timber]]></category>
		<category><![CDATA[wire]]></category>
		<category><![CDATA[wood]]></category>

		<guid isPermaLink="false">http://www.briffett.net/?p=6</guid>
		<description><![CDATA[I bought a chicken coop with a view to keeping 3 chickens and we adopted three ex-battery hens.  The manufacturers of the coop suggested it was big enough for up to 4.  I considered this a little mean, so decided to extend their coop by building a chicken run.]]></description>
			<content:encoded><![CDATA[<p>I bought a chicken coop with a view to keeping 3 chickens and we adopted three ex-battery hens.  The manufacturers of the coop suggested it was big</p>
<div id="attachment_21" class="wp-caption alignright" style="width: 310px"><a href="http://www.briffett.net/wp-content/uploads/2009/05/3456004869_a7dfd34d9e.jpg"><img class="size-medium wp-image-21" title="Chicken Coup" src="http://www.briffett.net/wp-content/uploads/2009/05/3456004869_a7dfd34d9e-300x200.jpg" alt="Building fox-proof base for chicken coup" width="300" height="200" /></a><p class="wp-caption-text">Building fox-proof base for chicken coup</p></div>
<p>enough for up to 4.  I considered this a little mean, so decided to extend their coop by building a chicken run.  I fox-proofed the coop by digging a hole about a foot deep underneath it and placed a wooden frame underlaid with chicken wire and placed the coop back on top.</p>
<div id="attachment_12" class="wp-caption alignleft" style="width: 210px"><a href="http://www.briffett.net/wp-content/uploads/2009/05/imgp4020.jpg"><img class="size-medium wp-image-12" title="Hen" src="http://www.briffett.net/wp-content/uploads/2009/05/imgp4020-200x300.jpg" alt="A hen enjoying new chicken run" width="200" height="300" /></a><p class="wp-caption-text">A hen enjoying new chicken run</p></div>
<p>I did the same for the chicken run itself and used 2 by 2 wood which I coated in wood preserver.  The wood was tanelised but reckoned that every little helps.  The run itself required 5 frames of timber covered in chicken wire and I screwed this together over the top of the sunken frame.</p>
<p>It required about £40 worth of timber, £25 worth of chicken wire (just over 20 metres) and around 200 screws.  I suppose nails would have done just as well.</p>
<div id="attachment_3" class="wp-caption alignleft" style="width: 310px"><a href="http://www.briffett.net/wp-content/uploads/2009/05/imgp4019.jpg"><img class="size-medium wp-image-3" style="border: 1px solid black;" title="Chicken Run" src="http://www.briffett.net/wp-content/uploads/2009/05/imgp4019-300x200.jpg" alt="Custom built chicken run" width="300" height="200" /></a><p class="wp-caption-text">Custom built chicken run</p></div>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It | Post It | Share It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Chicken+Coop&amp;Description=Chicken+Coop&amp;Url=http://www.briffett.net/2009/05/12/6/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.briffett.net/2009/05/12/6/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.briffett.net/2009/05/12/6/&amp;submitHeadline=Chicken+Coop&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.briffett.net/2009/05/12/6/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.briffett.net/2009/05/12/6/&amp;h=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.briffett.net/2009/05/12/6/&amp;bm_description=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.briffett.net/2009/05/12/6/&amp;title=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.briffett.net/2009/05/12/6/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Chicken+Coop+@+http://www.briffett.net/2009/05/12/6/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.briffett.net/2009/05/12/6/&amp;t=Chicken+Coop" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.briffett.net/2009/05/12/6/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Herbie? &#8211; What Is This Answer</title>
		<link>http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/</link>
		<comments>http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 17:16:16 +0000</pubDate>
		<dc:creator>Alex Briffett</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Nature]]></category>
		<category><![CDATA[bearded dragon]]></category>
		<category><![CDATA[crickets]]></category>
		<category><![CDATA[herbie]]></category>
		<category><![CDATA[insects]]></category>
		<category><![CDATA[lizard]]></category>
		<category><![CDATA[meal-worms]]></category>
		<category><![CDATA[pets]]></category>
		<category><![CDATA[tongue]]></category>

		<guid isPermaLink="false">http://www.briffett.net/?p=156</guid>
		<description><![CDATA[Herbie is a bearded dragon I met in Brighton.  He belongs to some friend of mine and spends most of his days lazing under a hot lamp, climbing curtains or eating meal-worms and crickets.  What a handsome chap.  If you look at the photograph and turn your head to the left, his ear hole appears [...]]]></description>
			<content:encoded><![CDATA[<p>Herbie is a bearded dragon I met in Brighton.  He belongs to some friend of mine and spends most of his days lazing under a hot lamp, climbing curtains or eating meal-worms and crickets.  What a handsome chap.  If you look at the photograph and turn your head to the left, his ear hole appears to be a left eye, whilst a flap of skin appears to be a mouth.  I wonder if he uses this device to trick insects into running away but into the path of his lightning-fast tongue or maybe it serves to frighten possible predators?</p>
<div id="attachment_151" class="wp-caption alignleft" style="width: 564px"><img class="size-full wp-image-151" title="Herbie - a bearded dragon from Brighton" src="http://www.briffett.net/wp-content/uploads/2009/10/herbie.jpg" alt="Herbie - a bearded dragon from Brighton" width="554" height="415" /><p class="wp-caption-text">Herbie - a bearded dragon from Brighton</p></div>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It | Post It | Share It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Herbie%3F+%26%238211%3B+What+Is+This+Answer&amp;Description=Herbie%3F+%26%238211%3B+What+Is+This+Answer&amp;Url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://buzz.yahoo.com/submit?submitUrl=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;submitHeadline=Herbie%3F+%26%238211%3B+What+Is+This+Answer&amp;submitSummary=" rel="nofollow" title="Add to&nbsp;Buzz"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/buzz.png" title="Add to&nbsp;Buzz" alt="Add to&nbsp;Buzz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;h=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;bm_description=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit.php?url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;title=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Herbie%3F+%26%238211%3B+What+Is+This+Answer+@+http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/&amp;t=Herbie%3F+%26%238211%3B+What+Is+This+Answer" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.briffett.net/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.briffett.net/2009/01/18/herbie-a-bearded-dragon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.569 seconds -->
