<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>François Schiettecatte's Blog</title>
	<atom:link href="http://fschiettecatte.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fschiettecatte.wordpress.com</link>
	<description>Thoughts from the edge of the 'net</description>
	<lastBuildDate>Mon, 16 Jan 2012 21:26:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='fschiettecatte.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>François Schiettecatte's Blog</title>
		<link>http://fschiettecatte.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://fschiettecatte.wordpress.com/osd.xml" title="François Schiettecatte&#039;s Blog" />
	<atom:link rel='hub' href='http://fschiettecatte.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Interesting Bug in Django</title>
		<link>http://fschiettecatte.wordpress.com/2011/12/01/interesting-bug-in-django/</link>
		<comments>http://fschiettecatte.wordpress.com/2011/12/01/interesting-bug-in-django/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 14:47:24 +0000</pubDate>
		<dc:creator>François Schiettecatte</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">https://fschiettecatte.wordpress.com/?p=1541</guid>
		<description><![CDATA[I am working on a project that involves Django and ran into an interesting issue. Django creates a small database to keep track of various bits of data one of which is user session information in a table called django_session as follows: CREATE TABLE django_session (   session_key varchar(40) NOT NULL,   session_data longtext NOT NULL, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1541&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am working on a project that involves Django and ran into an interesting issue. Django creates a small database to keep track of various bits of data one of which is user session information in a table called django_session as follows:</p>
<blockquote>
<pre>CREATE TABLE django_session (</pre>
<pre>  session_key varchar(40) NOT NULL,</pre>
<pre>  session_data longtext NOT NULL,</pre>
<pre>  expire_date datetime NOT NULL,</pre>
<pre>  PRIMARY KEY (session_key)</pre>
<pre>) ENGINE=InnoDB DEFAULT CHARSET=utf8;</pre>
</blockquote>
<p>This is all well and good but there is an issue. InnoDB orders the rows in primary key order (primary keys are SHA1 hex digest). The problem is that these keys are effectively random so a new session row be be inserted anywhere in the table causing data to move around with every insert. While this might work when the table is small, it does not work so well when you have 500,000+ rows in it (which is another issue that I will get to).</p>
<p>A better schema for the table is as follows:</p>
<blockquote style="border-left-width:4px;border-left-style:solid;border-left-color:#777777;margin-left:34px;padding-left:10px;">
<pre style="margin:8px;">CREATE TABLE django_session (</pre>
<pre style="margin:8px;">  id int(11) NOT NULL AUTO_INCREMENT,</pre>
<pre style="margin:8px;">  session_key varchar(40) NOT NULL,</pre>
<pre style="margin:8px;">  session_data longtext NOT NULL,</pre>
<pre style="margin:8px;">  expire_date datetime NOT NULL,</pre>
<pre style="margin:8px;">  PRIMARY KEY (id),  </pre>
<pre style="margin:8px;">  UNIQUE KEY session_key (session_key)
</pre>
<pre style="margin:8px;"></pre>
<pre style="margin:8px;">) ENGINE=InnoDB DEFAULT CHARSET=utf8;</pre>
</blockquote>
<p>This will ensure that rows are inserted consecutively which will ensure better performance as the table grows.</p>
<p>Two things to note:</p>
<p>I am not sure whether Django specifies the ENGINE to use when creating these tables, but MySQL 5.5 uses InnoDB rather than MyISAM, and I don&#8217;t think this will be an issue with the latter.</p>
<p>The other thing is that Django does not seem to clear out sessions past their expiry date, so one needs to do that regularly with the following statement:</p>
<blockquote>
<pre>DELETE FROM django_session WHERE expire_date &lt;= NOW()</pre>
</blockquote>
<p>One more thing, I think that is the case too with database backed caches too.</p>
<p> </p>
<br />Filed under: <a href='http://fschiettecatte.wordpress.com/category/python/'>Python</a>, <a href='http://fschiettecatte.wordpress.com/category/software-development/'>Software Development</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fschiettecatte.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fschiettecatte.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fschiettecatte.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fschiettecatte.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fschiettecatte.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fschiettecatte.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fschiettecatte.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fschiettecatte.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fschiettecatte.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fschiettecatte.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fschiettecatte.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fschiettecatte.wordpress.com/1541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fschiettecatte.wordpress.com/1541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fschiettecatte.wordpress.com/1541/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1541&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fschiettecatte.wordpress.com/2011/12/01/interesting-bug-in-django/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a1c159367b376c46ec40efebed6798e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fschiettecatte</media:title>
		</media:content>
	</item>
		<item>
		<title>How to speed up an aging MacBook with a solid state drive</title>
		<link>http://fschiettecatte.wordpress.com/2011/08/22/how-to-speed-up-an-aging-macbook-with-a-solid-state-drive/</link>
		<comments>http://fschiettecatte.wordpress.com/2011/08/22/how-to-speed-up-an-aging-macbook-with-a-solid-state-drive/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 13:05:56 +0000</pubDate>
		<dc:creator>François Schiettecatte</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">https://fschiettecatte.wordpress.com/?p=1539</guid>
		<description><![CDATA[About 3 months ago I upgraded the disk drive in my MacBook Pro with an SSD, the interesting thing was how easy it was to do the upgrade with the help of iFixit. Ars does the same to a MacBook: How to speed up an aging MacBook with a solid state drive: &#8220;When we recently [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1539&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>About 3 months ago I upgraded the disk drive in my MacBook Pro with an SSD, the interesting thing was how easy it was to do the upgrade with the help of <a href="http://www.ifixit.com/">iFixit</a>. Ars does the same to a MacBook:</p>
<blockquote>
<p><a href="http://arstechnica.com/apple/guides/2011/08/how-to-speed-up-an-aging-macbook-with-a-solid-state-drive.ars?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss">How to speed up an aging MacBook with a solid state drive</a>: &#8220;When we recently detailed how to boost the storage space in a MacBook Air with a replacement solid state drive module, some readers asked what it would be like to swap the hard drive in an older MacBook with a similarly speedy SSD. We decided to investigate, and as it turns out, thanks to a common 2.5&#8243; drive size and widely available external enclosures, the swap is quicker, easier, and cheaper than the one for a MacBook Air.&#8221;</p>
</blockquote>
<p>The upgrade was a real shot in the arm of my MacBook Pro in terms of performance, even though the previous disk drive was a 7,200rpm model.</p>
<p> </p>
<br />Filed under: <a href='http://fschiettecatte.wordpress.com/category/apple/'>Apple</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fschiettecatte.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fschiettecatte.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fschiettecatte.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fschiettecatte.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fschiettecatte.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fschiettecatte.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fschiettecatte.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fschiettecatte.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fschiettecatte.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fschiettecatte.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fschiettecatte.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fschiettecatte.wordpress.com/1539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fschiettecatte.wordpress.com/1539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fschiettecatte.wordpress.com/1539/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1539&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fschiettecatte.wordpress.com/2011/08/22/how-to-speed-up-an-aging-macbook-with-a-solid-state-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a1c159367b376c46ec40efebed6798e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fschiettecatte</media:title>
		</media:content>
	</item>
		<item>
		<title>BBEdit 10.0</title>
		<link>http://fschiettecatte.wordpress.com/2011/07/27/bbedit-10-0/</link>
		<comments>http://fschiettecatte.wordpress.com/2011/07/27/bbedit-10-0/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 13:31:03 +0000</pubDate>
		<dc:creator>François Schiettecatte</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">https://fschiettecatte.wordpress.com/?p=1537</guid>
		<description><![CDATA[BBEdit 10.0 came out last week, I have been a long time user of BBEdit (pretty much since it came out). This release comes with a lot of changes, a lot, and has required me to change some of my work processes. There are a number of rough edges too so it might be an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1537&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.barebones.com/">BBEdit 10.0</a> came out last week, I have been a long time user of BBEdit (pretty much since it came out). This release comes with a lot of changes, a lot, and has required me to change some of my work processes. There are a number of rough edges too so it might be an idea to wait for the .1 release. And you will want to make sure not to upgrade unless you have some downtime to work through all the changes.</p>
<p> </p>
<br />Filed under: <a href='http://fschiettecatte.wordpress.com/category/apple/'>Apple</a>, <a href='http://fschiettecatte.wordpress.com/category/software-development/'>Software Development</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fschiettecatte.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fschiettecatte.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fschiettecatte.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fschiettecatte.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fschiettecatte.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fschiettecatte.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fschiettecatte.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fschiettecatte.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fschiettecatte.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fschiettecatte.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fschiettecatte.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fschiettecatte.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fschiettecatte.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fschiettecatte.wordpress.com/1537/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1537&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fschiettecatte.wordpress.com/2011/07/27/bbedit-10-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a1c159367b376c46ec40efebed6798e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fschiettecatte</media:title>
		</media:content>
	</item>
		<item>
		<title>Mac OS X Lion</title>
		<link>http://fschiettecatte.wordpress.com/2011/07/27/mac-os-x-lion-2/</link>
		<comments>http://fschiettecatte.wordpress.com/2011/07/27/mac-os-x-lion-2/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 13:22:55 +0000</pubDate>
		<dc:creator>François Schiettecatte</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">https://fschiettecatte.wordpress.com/?p=1535</guid>
		<description><![CDATA[I upgraded to Mac OS X Lion over the weekend, things went mostly well, backup, install, repeat on the other machine. There are a number of good reviews out there, notably John Siracusa&#8217;s at ArsTechnica, and Robert Mohns&#8217; at MacInTouch. Some things that are driving me crazy: The way the new scroll bars appear and disappear, I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1535&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I upgraded to <a href="http://www.apple.com/macosx/">Mac OS X Lion</a> over the weekend, things went mostly well, backup, install, repeat on the other machine.</p>
<p>There are a number of good reviews out there, notably <a href="http://arstechnica.com/apple/reviews/2011/07/mac-os-x-10-7.ars">John Siracusa&#8217;s</a> at <a href="http://arstechnica.com/">ArsTechnica</a>, and <a href="http://www.macintouch.com/specialreports/lion/review.html">Robert Mohns&#8217;</a> at <a href="http://www.macintouch.com/">MacInTouch</a>.</p>
<p>Some things that are driving me crazy:</p>
<ul>
<li>The way the new scroll bars appear and disappear, I just make them permanent. I tried to make them automatic but they would not always appear and you lose the ability to see what is and is not scrollable.</li>
<li>The Address Book and iCal are a train wreck.</li>
<li>For some reason my folder/document locations keep getting reset.</li>
</ul>
<p>That being said, I really like the new Mail, Mission Control is nice (though they have made it more difficult to see minimized windows).</p>
<p>Overall this version is optimized to run on laptops, not desktop machines, but you can turn off all the &#8216;laptopy&#8217; things.</p>
<p>Lastly I found that <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=414920759">John Siracura has a podcast called Hypercritical</a>. Worth listening to.</p>
<p> </p>
<p> </p>
<p> </p>
<br />Filed under: <a href='http://fschiettecatte.wordpress.com/category/apple/'>Apple</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fschiettecatte.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fschiettecatte.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fschiettecatte.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fschiettecatte.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fschiettecatte.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fschiettecatte.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fschiettecatte.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fschiettecatte.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fschiettecatte.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fschiettecatte.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fschiettecatte.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fschiettecatte.wordpress.com/1535/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fschiettecatte.wordpress.com/1535/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fschiettecatte.wordpress.com/1535/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1535&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fschiettecatte.wordpress.com/2011/07/27/mac-os-x-lion-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a1c159367b376c46ec40efebed6798e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fschiettecatte</media:title>
		</media:content>
	</item>
		<item>
		<title>Whale Tail</title>
		<link>http://fschiettecatte.wordpress.com/2011/07/03/whale-tail/</link>
		<comments>http://fschiettecatte.wordpress.com/2011/07/03/whale-tail/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 14:17:33 +0000</pubDate>
		<dc:creator>François Schiettecatte</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Scuba]]></category>

		<guid isPermaLink="false">http://fschiettecatte.wordpress.com/2011/07/03/whale-tail/</guid>
		<description><![CDATA[This is the tail end of a baby Humpback Whale who cruised past us, when I say cruised I mean mobbed us, three people go hit (there was no damage). I caught a picture of its&#8217; tail which was about 5 feet wide. You can see the front part of the whale here. Filed under: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1533&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="photo sharing" href="http://www.flickr.com/photos/fschiettecatte/5627865412/"><img src="http://farm6.static.flickr.com/5266/5627865412_a8dd888e52.jpg" alt="" /></a></p>
<p>This is the tail end of a baby Humpback Whale who cruised past us, when I say cruised I mean mobbed us, three people go hit (there was no damage). I caught a picture of its&#8217; tail which was about 5 feet wide.</p>
<p>You can see the front part of the whale <a href="http://www.flickr.com/photos/fschiettecatte/5627280809/in/set-72157626391995533">here</a>.</p>
<br />Filed under: <a href='http://fschiettecatte.wordpress.com/category/general/'>General</a>, <a href='http://fschiettecatte.wordpress.com/category/personal/'>Personal</a>, <a href='http://fschiettecatte.wordpress.com/category/scuba/'>Scuba</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fschiettecatte.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fschiettecatte.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fschiettecatte.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fschiettecatte.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fschiettecatte.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fschiettecatte.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fschiettecatte.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fschiettecatte.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fschiettecatte.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fschiettecatte.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fschiettecatte.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fschiettecatte.wordpress.com/1533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fschiettecatte.wordpress.com/1533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fschiettecatte.wordpress.com/1533/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1533&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fschiettecatte.wordpress.com/2011/07/03/whale-tail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a1c159367b376c46ec40efebed6798e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fschiettecatte</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5266/5627865412_a8dd888e52.jpg" medium="image" />
	</item>
		<item>
		<title>Digital Copy</title>
		<link>http://fschiettecatte.wordpress.com/2011/07/03/digital-copy/</link>
		<comments>http://fschiettecatte.wordpress.com/2011/07/03/digital-copy/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 14:10:01 +0000</pubDate>
		<dc:creator>François Schiettecatte</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">https://fschiettecatte.wordpress.com/?p=1531</guid>
		<description><![CDATA[Last week I got a Blu-Ray/DVD/Digital copy combo disc for a popular animated movie. I am (was) a fan of digital copies that I could transfer to my computer and watch on my Apple TV. Was a fan because the copy was really bad, all sorts of compression artifacts and blotchy colors. Turns out it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1531&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week I got a Blu-Ray/DVD/Digital copy combo disc for a popular animated movie. I am (was) a fan of digital copies that I could transfer to my computer and watch on my Apple TV. Was a fan because the copy was really bad, all sorts of compression artifacts and blotchy colors. Turns out it is a 640&#215;480 version of the movie and the file was over 1GB in size suggesting the compression treatment on the file was terrible. Given how bad it was I am not sure why they include digital copies. Hard to see how it could look good on any device.</p>
<p>Note to the movie distributors (Disney), if you are going to include a digital copy you should make sure it looks good, what I saw was pretty insulting the people who created the movie.</p>
<br />Filed under: <a href='http://fschiettecatte.wordpress.com/category/personal/'>Personal</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fschiettecatte.wordpress.com/1531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fschiettecatte.wordpress.com/1531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fschiettecatte.wordpress.com/1531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fschiettecatte.wordpress.com/1531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fschiettecatte.wordpress.com/1531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fschiettecatte.wordpress.com/1531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fschiettecatte.wordpress.com/1531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fschiettecatte.wordpress.com/1531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fschiettecatte.wordpress.com/1531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fschiettecatte.wordpress.com/1531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fschiettecatte.wordpress.com/1531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fschiettecatte.wordpress.com/1531/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fschiettecatte.wordpress.com/1531/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fschiettecatte.wordpress.com/1531/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1531&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fschiettecatte.wordpress.com/2011/07/03/digital-copy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a1c159367b376c46ec40efebed6798e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fschiettecatte</media:title>
		</media:content>
	</item>
		<item>
		<title>IOGEAR USB Bluetooth adaptor</title>
		<link>http://fschiettecatte.wordpress.com/2011/06/27/iogear-usb-bluetooth-adaptor/</link>
		<comments>http://fschiettecatte.wordpress.com/2011/06/27/iogear-usb-bluetooth-adaptor/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 01:37:11 +0000</pubDate>
		<dc:creator>François Schiettecatte</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">https://fschiettecatte.wordpress.com/?p=1529</guid>
		<description><![CDATA[Just got my IOGEAR USB Bluetooth adaptor today, plugged it into my keyboard USB port as close to my Apple Magic Mouse as possible and it work GREAT! Finally bluetooth works on my MacPro!   Filed under: Apple<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1529&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just got my <a href="http://www.iogear.com/product/GBU421/">IOGEAR USB Bluetooth adaptor</a> today, plugged it into my keyboard USB port as close to my <a href="http://www.apple.com/magicmouse/">Apple Magic Mouse</a> as possible and it work GREAT! Finally bluetooth works on my <a href="http://www.apple.com/macpro/">MacPro</a>!</p>
<p> </p>
<br />Filed under: <a href='http://fschiettecatte.wordpress.com/category/apple/'>Apple</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fschiettecatte.wordpress.com/1529/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fschiettecatte.wordpress.com/1529/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fschiettecatte.wordpress.com/1529/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fschiettecatte.wordpress.com/1529/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fschiettecatte.wordpress.com/1529/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fschiettecatte.wordpress.com/1529/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fschiettecatte.wordpress.com/1529/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fschiettecatte.wordpress.com/1529/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fschiettecatte.wordpress.com/1529/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fschiettecatte.wordpress.com/1529/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fschiettecatte.wordpress.com/1529/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fschiettecatte.wordpress.com/1529/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fschiettecatte.wordpress.com/1529/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fschiettecatte.wordpress.com/1529/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1529&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fschiettecatte.wordpress.com/2011/06/27/iogear-usb-bluetooth-adaptor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a1c159367b376c46ec40efebed6798e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fschiettecatte</media:title>
		</media:content>
	</item>
		<item>
		<title>Django and MySQL</title>
		<link>http://fschiettecatte.wordpress.com/2011/06/26/django-and-mysql/</link>
		<comments>http://fschiettecatte.wordpress.com/2011/06/26/django-and-mysql/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 19:58:42 +0000</pubDate>
		<dc:creator>François Schiettecatte</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">https://fschiettecatte.wordpress.com/?p=1525</guid>
		<description><![CDATA[It can be a little challenging to get Django to talk to MySQL especially if you have a non-standard setup (like I seem to have, every time&#8230;) To access MySQL from Django you need to install MySQL-python, and this is usually where the trouble begins. MySQL-python will run &#8216;mysql_config&#8217; to determine what the default MySQL settings are, the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1525&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It can be a little challenging to get <a href="http://djangoproject.com/">Django</a> to talk to <a href="http://mysql.com/">MySQL</a> especially if you have a non-standard setup (like I seem to have, every time&#8230;)</p>
<p>To access MySQL from Django you need to install <a href="http://sourceforge.net/projects/mysql-python/">MySQL-python</a>, and this is usually where the trouble begins. MySQL-python will run &#8216;mysql_config&#8217; to determine what the default MySQL settings are, the one to pay attention to is the &#8216;&#8211;socket&#8217; one. This is the socket that MySQL-python will use to access MySQL if the DATABASE/HOST setting in the <a href="https://docs.djangoproject.com/en/dev/ref/settings/#databases">Django settings.py file</a> is left empty or set to &#8216;localhost&#8217;. MySQL-python appears to disregard any config setting in /etc/my.cnf, so if you set the &#8216;socket&#8217; setting in /etc/my.cnf to something else (such as &#8216;/var/lib/mysql/mysql.sock&#8217;) then Django will NOT be able to access the MySQL server.</p>
<p>There are two solutions to this. Either you set the &#8216;socket&#8217; setting in the /etc/my.cnf file to match the setting reported by &#8216;mysql_config&#8217;. Or you set HOST in the Django settings.py file to the host name of the machine running MySQL.</p>
<p>One thing that I have noticed is that MySQL installations that are made through apt-get or yum have the socket default set to &#8217;/tmp/mysql.sock&#8217; whereas MySQL installations that are made from the MySQL download have the socket default set to &#8216;/var/lib/mysql/mysql.sock&#8217;.</p>
<p>Other issues you may run into is installing MySQL in a non-standard directory, for example &#8216;/usr/local/mysql&#8217;, while MySQL-python will probable install correctly, it may not be able to pull in the MySQL libraries when running under the Apache server.</p>
<p>What I generally do is let MySQL-python install however it wants, and set the HOST to the hostname of the machine where MySQL is running.</p>
<br />Filed under: <a href='http://fschiettecatte.wordpress.com/category/python/'>Python</a>, <a href='http://fschiettecatte.wordpress.com/category/software-development/'>Software Development</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fschiettecatte.wordpress.com/1525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fschiettecatte.wordpress.com/1525/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fschiettecatte.wordpress.com/1525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fschiettecatte.wordpress.com/1525/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fschiettecatte.wordpress.com/1525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fschiettecatte.wordpress.com/1525/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fschiettecatte.wordpress.com/1525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fschiettecatte.wordpress.com/1525/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fschiettecatte.wordpress.com/1525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fschiettecatte.wordpress.com/1525/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fschiettecatte.wordpress.com/1525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fschiettecatte.wordpress.com/1525/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fschiettecatte.wordpress.com/1525/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fschiettecatte.wordpress.com/1525/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1525&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fschiettecatte.wordpress.com/2011/06/26/django-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a1c159367b376c46ec40efebed6798e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fschiettecatte</media:title>
		</media:content>
	</item>
		<item>
		<title>Apple Magic Mouse</title>
		<link>http://fschiettecatte.wordpress.com/2011/06/25/apple-magic-mouse/</link>
		<comments>http://fschiettecatte.wordpress.com/2011/06/25/apple-magic-mouse/#comments</comments>
		<pubDate>Sat, 25 Jun 2011 13:23:18 +0000</pubDate>
		<dc:creator>François Schiettecatte</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">https://fschiettecatte.wordpress.com/?p=1521</guid>
		<description><![CDATA[Finally got sick of erratic mouse movement with my Apple Magic Mouse. I have a MacPro and the bluetooth reception on that machine is notorious in a bad way. A stretch of humid weather here only made that worse. The mouse movement was either epileptic or really slow (so felt like I was dragging a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1521&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finally got sick of erratic mouse movement with my <a href="http://www.apple.com/magicmouse/">Apple Magic Mouse</a>. I have a <a href="http://www.apple.com/macpro/">MacPro</a> and the bluetooth reception on that machine is notorious in a bad way. A stretch of humid weather here only made that worse. The mouse movement was either epileptic or really slow (so felt like I was dragging a huge weight across the screen), and lets not go into dropped clicks.</p>
<p>So came across this <a href="http://www.cultofmac.com/mac-pro-owners-having-problems-with-magic-mouse-bluetooth-connectivity/22338">post on Cult of Mac</a>, which pointed me to this <a href="https://discussions.apple.com/message/10661468?messageID=10661468">discussion on the Apple Support Forums</a>, and decided to just buy an <a href="http://www.iogear.com/product/GBU421/">IOGEAR USB Bluetooth adaptor</a>, which I will put into the USB port closest to the mouse which, I am hoping, will take care of the problem.</p>
<p>I think they called it Magic Mouse because you never knew what it was going to do next!</p>
<br />Filed under: <a href='http://fschiettecatte.wordpress.com/category/apple/'>Apple</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fschiettecatte.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fschiettecatte.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fschiettecatte.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fschiettecatte.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fschiettecatte.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fschiettecatte.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fschiettecatte.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fschiettecatte.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fschiettecatte.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fschiettecatte.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fschiettecatte.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fschiettecatte.wordpress.com/1521/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fschiettecatte.wordpress.com/1521/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fschiettecatte.wordpress.com/1521/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1521&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fschiettecatte.wordpress.com/2011/06/25/apple-magic-mouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a1c159367b376c46ec40efebed6798e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fschiettecatte</media:title>
		</media:content>
	</item>
		<item>
		<title>Eye Contact</title>
		<link>http://fschiettecatte.wordpress.com/2011/06/24/eye-contact/</link>
		<comments>http://fschiettecatte.wordpress.com/2011/06/24/eye-contact/#comments</comments>
		<pubDate>Sat, 25 Jun 2011 02:06:18 +0000</pubDate>
		<dc:creator>François Schiettecatte</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Scuba]]></category>

		<guid isPermaLink="false">http://fschiettecatte.wordpress.com/2011/06/24/eye-contact/</guid>
		<description><![CDATA[I had the opportunity to get on a boat going to the Silver Banks which are located north of the Dominican Republic. There was a group cancellation and I jumped on (there is usually a two year waiting list for this trip.) Humpback whales migrate from the North Atlantic down to the Silver Banks to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1518&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="photo sharing" href="http://www.flickr.com/photos/fschiettecatte/5627302631/"><img src="http://farm6.static.flickr.com/5030/5627302631_f75cc0c9fd.jpg" alt="" /></a> </p>
<p>I had the opportunity to get on a boat going to the Silver Banks which are located north of the Dominican Republic. There was a group cancellation and I jumped on (there is usually a two year waiting list for this trip.) </p>
<p> Humpback whales migrate from the North Atlantic down to the Silver Banks to raise their young for three months at the start of the year. So there is an opportunity to get in the water and swim with them.</p>
<p> This is a young calf (still 12 feet long) who came right up to me to check me out.</p>
<br />Filed under: <a href='http://fschiettecatte.wordpress.com/category/general/'>General</a>, <a href='http://fschiettecatte.wordpress.com/category/personal/'>Personal</a>, <a href='http://fschiettecatte.wordpress.com/category/scuba/'>Scuba</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fschiettecatte.wordpress.com/1518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fschiettecatte.wordpress.com/1518/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fschiettecatte.wordpress.com/1518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fschiettecatte.wordpress.com/1518/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fschiettecatte.wordpress.com/1518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fschiettecatte.wordpress.com/1518/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fschiettecatte.wordpress.com/1518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fschiettecatte.wordpress.com/1518/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fschiettecatte.wordpress.com/1518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fschiettecatte.wordpress.com/1518/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fschiettecatte.wordpress.com/1518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fschiettecatte.wordpress.com/1518/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fschiettecatte.wordpress.com/1518/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fschiettecatte.wordpress.com/1518/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fschiettecatte.wordpress.com&amp;blog=642152&amp;post=1518&amp;subd=fschiettecatte&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fschiettecatte.wordpress.com/2011/06/24/eye-contact/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6a1c159367b376c46ec40efebed6798e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fschiettecatte</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5030/5627302631_f75cc0c9fd.jpg" medium="image" />
	</item>
	</channel>
</rss>
