<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Eidetic Opacity</title>
	
	<link>http://alex.leonard.ie</link>
	<description>Being The Singular Personal Blog and Virtual Soapbox of Alex Leonard</description>
	<lastBuildDate>Tue, 27 Jul 2010 06:46:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/alexleonard" /><feedburner:info uri="alexleonard" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://alex.leonard.ie/?pushpress=hub" /><item>
		<title>WordPress Tip: Get the date of your first post</title>
		<link>http://feedproxy.google.com/~r/alexleonard/~3/oXEdjAV06wE/</link>
		<comments>http://alex.leonard.ie/2010/07/27/wordpress-tip-get-the-date-of-your-first-post/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 06:21:31 +0000</pubDate>
		<dc:creator>Alex Leonard</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[academic year]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[first post]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://alex.leonard.ie/?p=4728</guid>
		<description><![CDATA[Simple re-usable WordPress function to get the date of your first post. Feel free to use and modify the code!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just working on setting up a custom WordPress archive for a client at the moment (displaying posts by academic year).</p>
<p>In order to do things absolutely right (and in case they decide to post-publish older items), I need to be able to check when the first post was published on their WordPress installation.</p>
<p>I figured I&#8217;d share the code out here in case someone else finds it useful (and in case anyone can suggest improvements to the code). I&#8217;ve wrapped it up as a function so you can throw it your functions.php if it&#8217;s something you&#8217;ll re-use.</p>
<pre class="brush: php;">/**
 * Get First Post Date Function
 *
 * @param  $format Type of date format to return, using PHP date standard, default Y-m-d
 * @return Date of first post
 */
function ax_first_post_date($format = &quot;Y-m-d&quot;) {
 // Setup get_posts arguments
 $ax_args = array(
 'numberposts' =&gt; -1,
 'post_status' =&gt; 'publish',
 'order' =&gt; 'ASC'
 );

 // Get all posts in order of first to last
 $ax_get_all = get_posts($ax_args);

 // Extract first post from array
 $ax_first_post = $ax_get_all[0];

 // Assign first post date to var
 $ax_first_post_date = $ax_first_post-&gt;post_date;

 // return date in required format
 $output = date($format, strtotime($ax_first_post_date));

 return $output;
}</pre>
<p>To echo it anywhere on your site just run:</p>
<pre class="brush: php;">echo ax_first_post_date();</pre>
<p>I&#8217;m hoping to be a little better at keeping track of useful WordPress functions that could be reused, so have created a sub-category of my WordPress category called &#8220;Functions&#8221;. If nothing else it will be a useful reference point for me.</p>
<h3>Update</h3>
<p>As soon as I hit publish I knew I should have held off until I added in a date format parameter. I&#8217;ve updated the code now so that you can tell the function what format the date should be returned in (using <a  href="http://ie.php.net/manual/en/function.date.php">standard PHP date format</a>).</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/alexleonard?a=oXEdjAV06wE:hN8OQdG9P2c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=oXEdjAV06wE:hN8OQdG9P2c:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=oXEdjAV06wE:hN8OQdG9P2c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=oXEdjAV06wE:hN8OQdG9P2c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=oXEdjAV06wE:hN8OQdG9P2c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=oXEdjAV06wE:hN8OQdG9P2c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=oXEdjAV06wE:hN8OQdG9P2c:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=oXEdjAV06wE:hN8OQdG9P2c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/alexleonard/~4/oXEdjAV06wE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://alex.leonard.ie/2010/07/27/wordpress-tip-get-the-date-of-your-first-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://alex.leonard.ie/2010/07/27/wordpress-tip-get-the-date-of-your-first-post/</feedburner:origLink></item>
		<item>
		<title>I love getting email from Ban Ki Moon</title>
		<link>http://feedproxy.google.com/~r/alexleonard/~3/CMuA1sXkyDs/</link>
		<comments>http://alex.leonard.ie/2010/07/26/i-love-getting-email-from-ban-ki-moon/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 05:04:26 +0000</pubDate>
		<dc:creator>Alex Leonard</dc:creator>
				<category><![CDATA[Life on the Web]]></category>
		<category><![CDATA[ban ki moon]]></category>
		<category><![CDATA[banny]]></category>
		<category><![CDATA[secretary general of the un]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://alex.leonard.ie/?p=4563</guid>
		<description><![CDATA[Got a great spam email today, direct from Ban Ki Moon, the secretary-general of the UN. Apparently I am being compensated for being scammed..]]></description>
			<content:encoded><![CDATA[<div id="attachment_4587" class="wp-caption alignright" style="width: 160px"><a  href="http://alex.leonard.ie/wp-content/uploads/2010/07/flickr_worldeconomicforum_2297246008.jpg" class="thickbox no_icon" rel="gallery-4563" title="flickr_worldeconomicforum_2297246008"><img class="size-thumbnail wp-image-4587" title="flickr_worldeconomicforum_2297246008" src="http://alex.leonard.ie/wp-content/uploads/2010/07/flickr_worldeconomicforum_2297246008-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Ban Ki Moon</p></div>
<p>Got a great spam email today, direct from Ban Ki Moon, the secretary-general of the UN. Apparently I am being compensated for being scammed..</p>
<blockquote><p>How are you today? Hope all is well with you and family? You may not understand why this email came to you. We have been having a meeting for the passed 7 months which ended 2 days ago with the then secretary to the UNITED NATIONS.</p>
<p>This email is to all the people that have been scammed in any part of the world, the UNITED NATIONS have agreed to compensate them with the sum of USD $850,000&#8230;</p></blockquote>
<p>It&#8217;s so nice of ol&#8217; Banny to think of me and ask about my family. He&#8217;s a good head for sure. Also looks like all of this economic trouble must be a thing of the past if they can afford to compensate me so royally for some scam I don&#8217;t remember.</p>
<p>Oh, if you want to drop him an email, apparently his personal email address is info@javaparagon.com</p>
<p><em><a  href="http://www.flickr.com/photos/worldeconomicforum/2297246008/">Photo by worldeconomicforum on Flickr</a></em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/alexleonard?a=CMuA1sXkyDs:yhVqDYLUUkk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=CMuA1sXkyDs:yhVqDYLUUkk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=CMuA1sXkyDs:yhVqDYLUUkk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=CMuA1sXkyDs:yhVqDYLUUkk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=CMuA1sXkyDs:yhVqDYLUUkk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=CMuA1sXkyDs:yhVqDYLUUkk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=CMuA1sXkyDs:yhVqDYLUUkk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=CMuA1sXkyDs:yhVqDYLUUkk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/alexleonard/~4/CMuA1sXkyDs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://alex.leonard.ie/2010/07/26/i-love-getting-email-from-ban-ki-moon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://alex.leonard.ie/2010/07/26/i-love-getting-email-from-ban-ki-moon/</feedburner:origLink></item>
		<item>
		<title>Is 500 million a lot?</title>
		<link>http://feedproxy.google.com/~r/alexleonard/~3/IMcGcpV0RDo/</link>
		<comments>http://alex.leonard.ie/2010/07/19/is-500-million-facebook-users-a-lot/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 17:30:10 +0000</pubDate>
		<dc:creator>Alex Leonard</dc:creator>
				<category><![CDATA[Life on the Web]]></category>
		<category><![CDATA[internet users]]></category>
		<category><![CDATA[internet world]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[world stats]]></category>

		<guid isPermaLink="false">http://alex.leonard.ie/?p=4179</guid>
		<description><![CDATA[Facebook is, apparently, rapidly approaching 500 million users. What does that mean? Well, numbers like these are a little hard to imagine, so I've tried to put it into perspective.]]></description>
			<content:encoded><![CDATA[<p><a  href="http://alex.leonard.ie/wp-content/uploads/2010/07/flickr-fchouse-2929411771.jpg" class="thickbox no_icon" rel="gallery-4179" title="flickr-fchouse-2929411771"><img class="alignright size-thumbnail wp-image-4238" title="flickr-fchouse-2929411771" src="http://alex.leonard.ie/wp-content/uploads/2010/07/flickr-fchouse-2929411771-150x150.jpg" alt="" width="150" height="150" /></a>I&#8217;ve read a few reports talking about how Facebook is about to hit 500 million users. It certainly seems like a substantially large number, but I thought I&#8217;d have a look for some statistics on how many people are using the internet in order to put this figure in perspective.</p>
<p>According to <a  href="http://www.internetworldstats.com/stats.htm">Internet World Stats</a> of the (approximately) 6.7 billion people in the world, 1.8 billion of these have access to the net.</p>
<p>If that&#8217;s true then, scarily, Facebook hitting 500 million users would mean that approximately 28% of all internet users have a  Facebook account (or 7% of all people in the world).</p>
<p>And don&#8217;t forget, you too might have to poke your grandma one day..</p>
<p><a  href="http://alex.leonard.ie/2010/07/19/is-500-million-facebook-users-a-lot/"><em>Click here to view the embedded video.</em></a></p>
<p><a  href="http://www.flickr.com/photos/fchouse/2929411771/"><em>Image by Carlo Nicora on Flickr</em></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/alexleonard?a=IMcGcpV0RDo:xu4R5D8UG0Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=IMcGcpV0RDo:xu4R5D8UG0Q:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=IMcGcpV0RDo:xu4R5D8UG0Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=IMcGcpV0RDo:xu4R5D8UG0Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=IMcGcpV0RDo:xu4R5D8UG0Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=IMcGcpV0RDo:xu4R5D8UG0Q:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=IMcGcpV0RDo:xu4R5D8UG0Q:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=IMcGcpV0RDo:xu4R5D8UG0Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/alexleonard/~4/IMcGcpV0RDo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://alex.leonard.ie/2010/07/19/is-500-million-facebook-users-a-lot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://alex.leonard.ie/2010/07/19/is-500-million-facebook-users-a-lot/</feedburner:origLink></item>
		<item>
		<title>Viva España!</title>
		<link>http://feedproxy.google.com/~r/alexleonard/~3/S2KGJvpjwyg/</link>
		<comments>http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 06:34:34 +0000</pubDate>
		<dc:creator>Alex Leonard</dc:creator>
				<category><![CDATA[cambodia]]></category>
		<category><![CDATA[anticipation]]></category>
		<category><![CDATA[excitement]]></category>
		<category><![CDATA[iniesta]]></category>
		<category><![CDATA[loco]]></category>
		<category><![CDATA[phnom penh]]></category>
		<category><![CDATA[spanish night]]></category>
		<category><![CDATA[viva españa]]></category>
		<category><![CDATA[world cup]]></category>

		<guid isPermaLink="false">http://alex.leonard.ie/?p=3376</guid>
		<description><![CDATA[The joyful celebrations of the Spanish ex-pats living in Cambodia on their winning of the World Cup in Johannesburg.]]></description>
			<content:encoded><![CDATA[<p>On Sunday night I had the pleasure of joining a crowd of Spanish and Dutch nationals and watching the World Cup final, wearing my finest red and yellow top in support of Spain. With the time difference the game didn&#8217;t kick off until 1.30am, but there was so much excitement in the air that tiredness never even came into the equation.</p>
<p>There followed two incredibly nerve wracking hours with much chanting and singing (with it consistently amusing me that the strongest Dutch chant was always &#8220;Olé Olé Olé&#8221;).</p>
<p>Anyway, I&#8217;m sure everyone knows now that Spain have won the World Cup for the first time, thanks to an excellent goal from Andrés Iniesta at the very end of the second half of extra time. The Spanish contingent went loco and I attempted to capture some of that excitement on my new camera. So I present a short picture diary of the most Spanish night in Phnom Penh imaginable, viva España!</p>
<h2>Feliz pueblo español en Phnom Penh!</h2>
<p><em>Click on photos to enlarge</em></p>

<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0744/" title="Phnom Penh&#039;s Spanish cheer their team"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0744-150x150.jpg" class="attachment-thumbnail" alt="Phnom Penh&#039;s Spanish cheer their team" title="Phnom Penh&#039;s Spanish cheer their team" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0746/" title="The nervous crowd of Spanish and Dutch"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0746-150x150.jpg" class="attachment-thumbnail" alt="The nervous crowd of Spanish and Dutch" title="The nervous crowd of Spanish and Dutch" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0747/" title="Dutch fans (I think they were actually Irish)"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0747-150x150.jpg" class="attachment-thumbnail" alt="Dutch fans (I think they were actually Irish)" title="Dutch fans (I think they were actually Irish)" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0748/" title="The table became an impromptu drum"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0748-150x150.jpg" class="attachment-thumbnail" alt="The table became an impromptu drum" title="The table became an impromptu drum" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0750/" title="Khmer-Dutch!"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0750-150x150.jpg" class="attachment-thumbnail" alt="Khmer-Dutch!" title="Khmer-Dutch!" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0754/" title="A nervous Spanish supporter at half time"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0754-150x150.jpg" class="attachment-thumbnail" alt="A nervous Spanish supporter at half time" title="A nervous Spanish supporter at half time" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0756/" title="Voicing strong support in extra time"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0756-150x150.jpg" class="attachment-thumbnail" alt="Voicing strong support in extra time" title="Voicing strong support in extra time" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0759/" title="The fear of penalties...."><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0759-150x150.jpg" class="attachment-thumbnail" alt="The fear of penalties...." title="The fear of penalties...." /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0761/" title="Averted! Spain score! Celebrar!"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0761-150x150.jpg" class="attachment-thumbnail" alt="Averted! Spain score! Celebrar!" title="Averted! Spain score! Celebrar!" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0765/" title="Campeones del mundo!"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0765-150x150.jpg" class="attachment-thumbnail" alt="Campeones del mundo!" title="Campeones del mundo!" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0773/" title="Loco espanol and one unhappy dutch fan"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0773-150x150.jpg" class="attachment-thumbnail" alt="Loco espanol and one unhappy dutch fan" title="Loco espanol and one unhappy dutch fan" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0774/" title="He receives consolation"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0774-150x150.jpg" class="attachment-thumbnail" alt="He receives consolation" title="He receives consolation" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0775/" title="The joy was indescribable"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0775-150x150.jpg" class="attachment-thumbnail" alt="The joy was indescribable" title="The joy was indescribable" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0776/" title="Everyone was so happy!"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0776-150x150.jpg" class="attachment-thumbnail" alt="Everyone was so happy!" title="Everyone was so happy!" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0779/" title="Cheering their team"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0779-150x150.jpg" class="attachment-thumbnail" alt="Cheering their team" title="Cheering their team" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0780/" title="Wakka wakka"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0780-150x150.jpg" class="attachment-thumbnail" alt="Wakka wakka" title="Wakka wakka" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0781/" title="Los colores de España"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0781-150x150.jpg" class="attachment-thumbnail" alt="Los colores de España" title="Los colores de España" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0788/" title="Delight"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0788-150x150.jpg" class="attachment-thumbnail" alt="Delight" title="Delight" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0791/" title="Reverence"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0791-150x150.jpg" class="attachment-thumbnail" alt="Reverence" title="Reverence" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0793/" title="Revelry"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0793-150x150.jpg" class="attachment-thumbnail" alt="Revelry" title="Revelry" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0794/" title="Awaiting the raising of the trophy"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0794-150x150.jpg" class="attachment-thumbnail" alt="Awaiting the raising of the trophy" title="Awaiting the raising of the trophy" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0795/" title="IMG_0795"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0795-150x150.jpg" class="attachment-thumbnail" alt="Elation" title="IMG_0795" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0796/" title="Viva España"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0796-150x150.jpg" class="attachment-thumbnail" alt="Viva España" title="Viva España" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0798/" title="Pride and joy"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0798-150x150.jpg" class="attachment-thumbnail" alt="Pride and joy" title="Pride and joy" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0799/" title="Satiated"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0799-150x150.jpg" class="attachment-thumbnail" alt="Satiated" title="Satiated" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0801/" title="Absolute delight (I love this photo)"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0801-150x150.jpg" class="attachment-thumbnail" alt="Absolute delight (I love this photo)" title="Absolute delight (I love this photo)" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0804/" title="El color rojo!"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0804-150x150.jpg" class="attachment-thumbnail" alt="El color rojo!" title="El color rojo!" /></a>
<a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/img_0805/" title="Shots in celebration"><img width="150" height="150" src="http://alex.leonard.ie/wp-content/uploads/2010/07/IMG_0805-150x150.jpg" class="attachment-thumbnail" alt="Shots in celebration" title="Shots in celebration" /></a>

<p>And in case you missed the goal that ended nearly two hours of heart-stopping anticipation, you can check it out in the video below. I can only imagine the scenes in Spain &#8211; the country must have gone proper mental!</p>
<p><em>Update: every time I find this video it gets taken down by FIFA a little while later. So I&#8217;ve taken a copy of it and uploaded it to Vimeo, but made it private on Vimeo. Hopefully they don&#8217;t find my lowly blog and send me a DMCA take-down notice&#8230;</em></p>
<p><a  href="http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/"><em>Click here to view the embedded video.</em></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/alexleonard?a=S2KGJvpjwyg:iroDaDYMgvE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=S2KGJvpjwyg:iroDaDYMgvE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=S2KGJvpjwyg:iroDaDYMgvE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=S2KGJvpjwyg:iroDaDYMgvE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=S2KGJvpjwyg:iroDaDYMgvE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=S2KGJvpjwyg:iroDaDYMgvE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=S2KGJvpjwyg:iroDaDYMgvE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=S2KGJvpjwyg:iroDaDYMgvE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/alexleonard/~4/S2KGJvpjwyg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://alex.leonard.ie/2010/07/13/viva-espana-en-cambodia/</feedburner:origLink></item>
		<item>
		<title>Mass CC vs Reply All</title>
		<link>http://feedproxy.google.com/~r/alexleonard/~3/-gPAJqFYAJA/</link>
		<comments>http://alex.leonard.ie/2010/07/09/email-etiquette-mass-cc-vs-reply-all/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 05:43:55 +0000</pubDate>
		<dc:creator>Alex Leonard</dc:creator>
				<category><![CDATA[Life on the Web]]></category>

		<guid isPermaLink="false">http://alex.leonard.ie/?p=2798</guid>
		<description><![CDATA[You have no doubt been exposed to a pointless long series of emails from people you've never met as a result of one person disregarding common sense etiquette and exposing everyone's email address for all to see.

Yes, you should rant at them, and those that you know who unthinkingly click the dreaded reply-all button.]]></description>
			<content:encoded><![CDATA[<p><a  href="http://alex.leonard.ie/wp-content/uploads/2010/07/mass-ccmailing-is-bad.jpg" class="thickbox no_icon" rel="gallery-2798" title="mass-ccmailing-is-bad"><img class="alignright size-thumbnail wp-image-2799" title="mass-ccmailing-is-bad" src="http://alex.leonard.ie/wp-content/uploads/2010/07/mass-ccmailing-is-bad-150x150.jpg" alt="" width="150" height="150" /></a>I&#8217;m not entirely sure which offender is worse &#8211; the person who sends an email out to fifty friends and thinks it&#8217;s a good idea to put all their names in plain view in the &#8220;to:&#8221; or &#8220;cc:&#8221; fields; or the person who, upon receiving this mass email, decides it&#8217;s a fantastic idea to click &#8220;reply all&#8221; as though those fifty people really want to receive another email with a banal one-line reply.</p>
<p>Obviously this is an old rant, but one that clearly still hasn&#8217;t penetrated the consciousnesses of those with an exiguous knowledge of technology and its pertinent etiquette.</p>
<p>Which is worse? It&#8217;s not quite a chicken and egg situation here &#8211; quite simply if no one mass cc&#8217;d like this, then no one could be tempted to click &#8216;reply all&#8217; in the first place. Still, I don&#8217;t think that lessens the crime that is clicking &#8216;reply all&#8217;. Seriously, think about it before you send that unimaginative and pointless reply to fifty people you&#8217;ve never met.</p>
<p>Perhaps we should blame the persistence of such things upon the modern fascination with sharing all amongst extended social groups, which &#8216;connect&#8217; wholly unconnected people in an overly familiar way. Perhaps before the meteoric rise of these social entities, the message was being slowly received and such mass mailings, or their equally evil reply-all siblings, were fading out. Or, well, perhaps not.</p>
<p>I tend to write a short reply (single) to the sender, saying that it&#8217;s generally best to avoid such displays of all your extended friend&#8217;s email addresses, not knowing which nefarious member of this group will decide the time is ripe for a wonderful harvest of new fodder for their mailing list, their desperate need to further the expansion of their social networks, or whatever opprobrious plans they may have. Although I simplify my message a little.</p>
<p>I hope I do not directly offend anyone by writing this. It is, I assure you, all said in good humour <img src='http://alex.leonard.ie/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/alexleonard?a=-gPAJqFYAJA:m_3FaXRZqfE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=-gPAJqFYAJA:m_3FaXRZqfE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=-gPAJqFYAJA:m_3FaXRZqfE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=-gPAJqFYAJA:m_3FaXRZqfE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=-gPAJqFYAJA:m_3FaXRZqfE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=-gPAJqFYAJA:m_3FaXRZqfE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=-gPAJqFYAJA:m_3FaXRZqfE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=-gPAJqFYAJA:m_3FaXRZqfE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/alexleonard/~4/-gPAJqFYAJA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://alex.leonard.ie/2010/07/09/email-etiquette-mass-cc-vs-reply-all/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://alex.leonard.ie/2010/07/09/email-etiquette-mass-cc-vs-reply-all/</feedburner:origLink></item>
		<item>
		<title>Paint it red?</title>
		<link>http://feedproxy.google.com/~r/alexleonard/~3/u6sIgszy1Bw/</link>
		<comments>http://alex.leonard.ie/2010/07/08/paint-it-red/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 05:02:54 +0000</pubDate>
		<dc:creator>Alex Leonard</dc:creator>
				<category><![CDATA[cambodia]]></category>
		<category><![CDATA[contingent]]></category>
		<category><![CDATA[germany]]></category>
		<category><![CDATA[phnom penh]]></category>
		<category><![CDATA[spain]]></category>
		<category><![CDATA[world cup]]></category>

		<guid isPermaLink="false">http://alex.leonard.ie/?p=2326</guid>
		<description><![CDATA[There's a large Spanish contingent in Phnom Penh and I'm delighted that their team won against Germany last night. 

Here's to a victory for them on Sunday.]]></description>
			<content:encoded><![CDATA[<div id="attachment_2327" class="wp-caption alignright" style="width: 160px"><a  href="http://alex.leonard.ie/wp-content/uploads/2010/07/flickr_penguinstorm_4773038736.jpg" class="thickbox no_icon" rel="gallery-2326" title="Apparently Spain just won"><img class="size-thumbnail wp-image-2327" title="Apparently Spain just won" src="http://alex.leonard.ie/wp-content/uploads/2010/07/flickr_penguinstorm_4773038736-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Spain celebrates</p></div>
<p>Congratulations to Spain on their 1-0 win against Germany last night. I was too tired to stay up and watch it but it&#8217;s great to see Spain knock out Germany and know that whoever wins the final it will be their first time lifting the world cup. I will admit that I had pegged the Germans for the win (no bets placed though <img src='http://alex.leonard.ie/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ) but was rooting for Spain.</p>
<p>Of course, I&#8217;m biased in favour of Spain due to the large Spanish contingent in existence in Phnom Penh. I anticipate a late night on Sunday surrounded by loco pueblo español.</p>
<p>Olé, viva España, córcholis! <!-- d1dde667ae3044b7a1bd061bc4a04fe7 --></p>
<p><em><a  href="http://www.flickr.com/photos/penguinstorm/4773038736/">Photo by penguinstorm on Flickr</a></em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/alexleonard?a=u6sIgszy1Bw:Y8PNoaM3YE0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=u6sIgszy1Bw:Y8PNoaM3YE0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=u6sIgszy1Bw:Y8PNoaM3YE0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=u6sIgszy1Bw:Y8PNoaM3YE0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=u6sIgszy1Bw:Y8PNoaM3YE0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=u6sIgszy1Bw:Y8PNoaM3YE0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=u6sIgszy1Bw:Y8PNoaM3YE0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=u6sIgszy1Bw:Y8PNoaM3YE0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/alexleonard/~4/u6sIgszy1Bw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://alex.leonard.ie/2010/07/08/paint-it-red/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://alex.leonard.ie/2010/07/08/paint-it-red/</feedburner:origLink></item>
		<item>
		<title>Music: don’t make it difficult to buy</title>
		<link>http://feedproxy.google.com/~r/alexleonard/~3/5Zf0JtJN4JI/</link>
		<comments>http://alex.leonard.ie/2010/07/05/music-dont-make-it-difficult-to-buy/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 09:00:00 +0000</pubDate>
		<dc:creator>Alex Leonard</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[amazon uk]]></category>
		<category><![CDATA[columbia records]]></category>
		<category><![CDATA[concierto de aranjuez]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[illegal downloads]]></category>
		<category><![CDATA[joaquín rodrigo]]></category>
		<category><![CDATA[miles davis]]></category>
		<category><![CDATA[miles davis sketches of spain]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music downloading]]></category>
		<category><![CDATA[selling failure]]></category>
		<category><![CDATA[sketches of spain]]></category>
		<category><![CDATA[the pirate bay]]></category>
		<category><![CDATA[torrents]]></category>

		<guid isPermaLink="false">http://alex.leonard.ie/?p=1611</guid>
		<description><![CDATA[Searching to buy a replacement digital copy of a lost favourite Miles Davis album, Sketches of Spain, proved fruitless and resulted in the horror of illegal music downloading.]]></description>
			<content:encoded><![CDATA[<div id="attachment_1612" class="wp-caption alignright" style="width: 160px"><a  href="http://alex.leonard.ie/wp-content/uploads/2010/07/Frontcover.jpg" class="thickbox no_icon" rel="gallery-1611" title="Miles Davis - Sketches of Spain Cover"><img class="size-thumbnail wp-image-1612" title="Miles Davis - Sketches of Spain Cover" src="http://alex.leonard.ie/wp-content/uploads/2010/07/Frontcover-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Sketches of Spain</p></div>
<p>A number of years ago I bought a CD &#8211; Miles Davis: Sketches of Spain, released by Columbia Records. It&#8217;s a wonderful recording which starts out with a fantastic interpretation of Concierto de Aranjuez by Joaquín Rodrigo.  I probably first listened to it back in the 90&#8242;s when I first discovered, and fell in love with, the music of Miles Davis.</p>
<p>Fast forward a number of years to somewhere around 2004: my love of CD&#8217;s as the format of choice had completely died, supplanted by storing my music on hard drives. Around then I decided to rip my entire collection of CD&#8217;s &#8211; in and around 600 albums. However the CD case for Sketches of Spain contained no CD! I looked everywhere for it but deemed it to be lost. Every once in a while I&#8217;d remember the album and check my digital collection to find it wasn&#8217;t there, and I&#8217;d move on.</p>
<p>Yesterday after listening to a couple of Miles Davis albums (it had been a while), I decided to rectify the missing Sketches of Spain issue.</p>
<h3>The &#8220;you can&#8217;t have it&#8221; approach to commerce</h3>
<p>My first stop was Emusic, with whom I have a subscription which provides 100 track downloads a month for €30. As far as I can tell all Columbia Records releases are absent from Emusic, no doubt due to lack of DRM or some such. I then searched on Amazon&#8217;s music store. There was indeed a digital version available, however apparently due to licensing restrictions I can&#8217;t buy mp3&#8242;s from Amazon UK unless I&#8217;m in the UK. The thought occurred to me that I could run my net connection through a variety of proxy connections but it&#8217;s such a pain that I couldn&#8217;t be bothered.</p>
<p>Buying a physical CD release really wasn&#8217;t an option in my mind &#8211; I&#8217;m fully digital now from purchase to speaker &#8211; and the fact that I&#8217;m living in Cambodia makes purchase of a CD even less likely!</p>
<h3>The &#8220;I&#8217;ll get it some other way, thanks&#8221; approach to buying</h3>
<p>So I turned to Google and searched for &#8220;<a  href="http://www.google.com/search?q=buy+miles+davis+sketches+of+spain+flac+download">buy miles davis sketches of spain flac download</a>&#8220;, figuring if I&#8217;m going to buy it online it may as well be in a high quality lossless format.</p>
<ul>
<li><strong>First result:</strong> The Pirate Bay <sup class='footnote'><a  href="#fn-1611-1" id="fnref-1611-1">1</a></sup>.</li>
<li><strong>Next 9 results:</strong> All torrent or similar illegal download links.</li>
<li><strong>What did I do:</strong> I downloaded it illegally of course.</li>
</ul>
<p>Columbia Records, or their parent company, have obviously decided that it&#8217;s most important to protect their music catalogue by making it difficult to purchase online. Perhaps they have an exclusive deal with iTunes for worldwide purchases, but I&#8217;m not an iTunes user and don&#8217;t plan to be.</p>
<p>Whatever their reasons, by confounding my attempts to make an official purchase they actually guided me into the temptation of downloading their music illegally. I don&#8217;t feel in any way bad about it, considering that I originally bought it and lost it &#8211; so I&#8217;ve paid my money to Columbia. However I was willing to pay for it again, but instead torrents offered me a simpler option and provided the music at a higher quality than I would have received from most online music stores.</p>
<p>There&#8217;s a couple of good articles by Warren Daly over at Invisible Agent that round up a lot of my thoughts on this subject:</p>
<ul>
<li><a  href="http://www.invisibleagent.com/2010/06/12/buy-music-online-shop-illegal-downloads-file-sharing/">Pay for illegal music downloads?</a></li>
<li><a  href="http://www.invisibleagent.com/2010/06/26/war-music-podcasts-are-the-new-mixtapes-digital-downloads/">The war on music</a></li>
</ul>
<p>Basically, music labels need cop on and get with the times. Stop condemning your customers as criminals while not providing an avenue for said customers to be legitimate.
<div class='footnotes'>
<div class='footnotedivider'></div>
<ol>
<li id='fn-1611-1'>By the way, searching for the same search but replacing &#8216;flac&#8217; with  &#8216;mp3&#8242; has a similar effect &#8211; initial results for Amazon, from whom I  can&#8217;t purchase, followed by torrents <span class='footnotereverse'><a  href="#fnref-1611-1">&#8617;</a></span></li>
</ol>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/alexleonard?a=5Zf0JtJN4JI:EJvoYUDPigc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=5Zf0JtJN4JI:EJvoYUDPigc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=5Zf0JtJN4JI:EJvoYUDPigc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=5Zf0JtJN4JI:EJvoYUDPigc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=5Zf0JtJN4JI:EJvoYUDPigc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=5Zf0JtJN4JI:EJvoYUDPigc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=5Zf0JtJN4JI:EJvoYUDPigc:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=5Zf0JtJN4JI:EJvoYUDPigc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/alexleonard/~4/5Zf0JtJN4JI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://alex.leonard.ie/2010/07/05/music-dont-make-it-difficult-to-buy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://alex.leonard.ie/2010/07/05/music-dont-make-it-difficult-to-buy/</feedburner:origLink></item>
		<item>
		<title>Ye ex-vegetarians, abandon your pescetarianism</title>
		<link>http://feedproxy.google.com/~r/alexleonard/~3/zadl3l502uQ/</link>
		<comments>http://alex.leonard.ie/2010/07/03/ye-ex-vegetarians-abandon-your-pescetarianism/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 13:52:33 +0000</pubDate>
		<dc:creator>Alex Leonard</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[eco system]]></category>
		<category><![CDATA[environmental impact]]></category>
		<category><![CDATA[fish stocks]]></category>
		<category><![CDATA[fishing industry]]></category>
		<category><![CDATA[guardian article]]></category>
		<category><![CDATA[guardian newspaper]]></category>
		<category><![CDATA[oceans]]></category>
		<category><![CDATA[pesco]]></category>
		<category><![CDATA[sustainability]]></category>
		<category><![CDATA[vegetarianism]]></category>
		<category><![CDATA[vegetarians]]></category>

		<guid isPermaLink="false">http://alex.leonard.ie/?p=961</guid>
		<description><![CDATA[With global fish stocks in serious danger of mass depletion, I think people should question their consumption of fish and at least research whether the fish they eat is caught in a sustainable way.]]></description>
			<content:encoded><![CDATA[<div id="attachment_1412" class="wp-caption alignright" style="width: 160px"><a  href="http://alex.leonard.ie/wp-content/uploads/2010/07/fishing-trawler-flickr-1537402364.jpg" class="thickbox no_icon" rel="gallery-961" title="fishing-trawler-flickr-1537402364"><img class="size-thumbnail wp-image-1412" title="fishing-trawler-flickr-1537402364" src="http://alex.leonard.ie/wp-content/uploads/2010/07/fishing-trawler-flickr-1537402364-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Fishing Trawler</p></div>
<p>I know quite a few vegetarians who have, for various reasons, changed to <a  href="http://en.wikipedia.org/wiki/Pescatarian">pescetarianism or pesco-vegetarianism</a>, which is essentially a vegetarian that also eats fish, but avoids other forms of meat.</p>
<p>I have always felt that if it was necessary for me to abandon vegetarianism (for health reasons or similar) the last thing I would do is revert to eating fish.</p>
<blockquote><p>More than 20 million people employed in the fishing industry may need to be taken out of service and retrained for other work over the next 40 years if the final collapse of fish stocks in oceans around the globe is to be avoided, the UN warned today.</p>
<p>Source: <a  href="http://www.guardian.co.uk/environment/2010/may/17/saving-fish-stocks-cost-jobs">Guardian Newspaper</a></p></blockquote>
<p>In my mind, when it comes to the question of sustainability, the concept of pescatarianism is seriously flawed &#8211; entirely due to the unsustainable nature of the fishing industry (in it&#8217;s current form).</p>
<p>Whilst I&#8217;m not suggesting that there aren&#8217;t issues in other food related industries don&#8217;t face their own issues with regard to environmental impact, those other industries are likely not endangering such a vital part of the earth&#8217;s eco-system to such an extent.</p>
<p>The Guardian article linked to above is well worth the read, and it refers to a <a  href="http://www.unep.org/Documents.Multilingual/Default.asp?DocumentID=624&#038;ArticleID=6566&#038;l=en&#038;t=long">UN report</a> which is also worth reading.</p>
<p><a  href="http://www.flickr.com/photos/adstream/1537402364/"><em>Photo by adstream on flickr</em></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/alexleonard?a=zadl3l502uQ:Cv8kMV2wJpw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=zadl3l502uQ:Cv8kMV2wJpw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=zadl3l502uQ:Cv8kMV2wJpw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=zadl3l502uQ:Cv8kMV2wJpw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=zadl3l502uQ:Cv8kMV2wJpw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=zadl3l502uQ:Cv8kMV2wJpw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=zadl3l502uQ:Cv8kMV2wJpw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=zadl3l502uQ:Cv8kMV2wJpw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/alexleonard/~4/zadl3l502uQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://alex.leonard.ie/2010/07/03/ye-ex-vegetarians-abandon-your-pescetarianism/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://alex.leonard.ie/2010/07/03/ye-ex-vegetarians-abandon-your-pescetarianism/</feedburner:origLink></item>
		<item>
		<title>Workload Insanity Past</title>
		<link>http://feedproxy.google.com/~r/alexleonard/~3/x7gRZfFYb4g/</link>
		<comments>http://alex.leonard.ie/2010/07/01/workload-insanity-past/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 12:00:46 +0000</pubDate>
		<dc:creator>Alex Leonard</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[70 hour week]]></category>
		<category><![CDATA[browsing the internet]]></category>
		<category><![CDATA[computer usage]]></category>
		<category><![CDATA[customer website]]></category>
		<category><![CDATA[insanity]]></category>
		<category><![CDATA[tracker]]></category>
		<category><![CDATA[wakoopa]]></category>
		<category><![CDATA[wordcamp]]></category>

		<guid isPermaLink="false">http://alex.leonard.ie/?p=1196</guid>
		<description><![CDATA[A little graphic demonstration of my computer usage over the past month or so. Stupidly excessive is a phrase that comes to mind.]]></description>
			<content:encoded><![CDATA[<p>Work was insane for me between the end of WordCamp Malaysia and the end of last week. I didn&#8217;t take a day off in that time. I feel a lot better now for a weekend off and normal working hours during this week.</p>
<p>Check out the computer usage below, taken from my <a  href="http://wakoopa.com/alexleonard">Wakoopa account</a> which tracks individual application usage.</p>
<div id="attachment_1197" class="wp-caption alignnone" style="width: 498px"><a  href="http://alex.leonard.ie/wp-content/uploads/2010/07/workload-insanity.png" class="thickbox no_icon" rel="gallery-1196" title="workload-insanity"><img class="size-medium wp-image-1197" title="workload-insanity" src="http://alex.leonard.ie/wp-content/uploads/2010/07/workload-insanity-488x199.png" alt="" width="488" height="199" /></a><p class="wp-caption-text">Too many hours</p></div>
<p>It&#8217;s quite the bulge <img src='http://alex.leonard.ie/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h3>Legend</h3>
<ul>
<li>Blue: Internet</li>
<li>Green: Audio/Video</li>
<li>Red: Development</li>
<li>Orange: Utilities</li>
<li>Purple: Office</li>
<li>Grey/Olive: Design</li>
</ul>
<p>And before anyone says that clearly I just spend all my time browsing the internet, well, in some ways that&#8217;s true &#8211; but it&#8217;s me either making CMS modifications on a customer website, browsing forums for solutions to Magento (that was a lot of time spent in the last month, I&#8217;ll have a wee rant about Magento in a future post), and of course some general net browsing and maybe the occasional writing of a post on this site!</p>
<p>The only thing it doesn&#8217;t include is time spent writing emails to clients on my phone, which should be a relatively small percentage &#8211; still it&#8217;s definitely visually describes the reasons for my current exhausted state!</p>
<p>No more 70 hour weeks for a while thanks.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/alexleonard?a=x7gRZfFYb4g:hQQQZybMLq0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=x7gRZfFYb4g:hQQQZybMLq0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=x7gRZfFYb4g:hQQQZybMLq0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=x7gRZfFYb4g:hQQQZybMLq0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=x7gRZfFYb4g:hQQQZybMLq0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=x7gRZfFYb4g:hQQQZybMLq0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=x7gRZfFYb4g:hQQQZybMLq0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=x7gRZfFYb4g:hQQQZybMLq0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/alexleonard/~4/x7gRZfFYb4g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://alex.leonard.ie/2010/07/01/workload-insanity-past/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://alex.leonard.ie/2010/07/01/workload-insanity-past/</feedburner:origLink></item>
		<item>
		<title>Suggestions Wanted: PDF Reader software for Windows</title>
		<link>http://feedproxy.google.com/~r/alexleonard/~3/Zk90b22Vbik/</link>
		<comments>http://alex.leonard.ie/2010/06/30/suggestions-wanted-pdf-reader-software-for-windows/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 04:05:51 +0000</pubDate>
		<dc:creator>Alex Leonard</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[adobe reader]]></category>
		<category><![CDATA[browser toolbar]]></category>
		<category><![CDATA[comments suggestions]]></category>
		<category><![CDATA[crapware]]></category>
		<category><![CDATA[foxit reader]]></category>
		<category><![CDATA[pdf reader]]></category>
		<category><![CDATA[reader software]]></category>
		<category><![CDATA[sumatra]]></category>

		<guid isPermaLink="false">http://alex.leonard.ie/?p=1001</guid>
		<description><![CDATA[I have no interest in bloated Adobe Reader, and Foxit Reader has lost all my support following their move to trick users into installing crapware toolbars.

If you've got a suggestion for the best option for a lightweight PDF reader, I'd love to hear about it.]]></description>
			<content:encoded><![CDATA[<p>A post on <a  href="http://www.downloadsquad.com/2010/06/29/foxit-updates-free-pdf-reader-to-v4-but-watch-out-for-adware/">Download Squad</a>, shared by <a  href="http://www.google.com/profiles/104920681481055700382">Vlad</a> (an old Jaiku contact), reminded me that I&#8217;ve been meaning to sort out a new alternative to the <a  href="http://blog.brush.co.nz/2008/07/adobe-reader-9/">stupidly</a> <a  href="http://everyjoe.com/technology/adobe-reader-bloat-continues-59/">bloated</a> Adobe Reader.</p>
<p>I&#8217;ve been a long time user of Foxit Reader, but over the last while this piece of software has increased in size, gotten much slower on load time, and worst of all, started to use dubious practices in tricking you to install crapware &#8211; the worst of all being as displayed in the screenshot below.</p>
<div id="attachment_1002" class="wp-caption alignnone" style="width: 498px"><a  href="http://alex.leonard.ie/wp-content/uploads/2010/06/foxit-crapware-trick.jpg" class="thickbox no_icon" rel="gallery-1001" title="foxit-crapware-trick"><img class="size-medium wp-image-1002" title="foxit-crapware-trick" src="http://alex.leonard.ie/wp-content/uploads/2010/06/foxit-crapware-trick-488x387.jpg" alt="" width="488" height="387" /></a><p class="wp-caption-text">Foxit Crapware Trick (courtesy of Download Squad)</p></div>
<p>This nasty tactic makes you think you&#8217;re deselecting items you don&#8217;t want and then, if you aren&#8217;t paying attention, your default reaction is to click &#8220;I accept&#8221; assuming that you&#8217;re accepting the installation of Foxit Reader without the unwanted crapware. No no. This means you&#8217;re accepting the install of yet-another-useless-browser-toolbar but not using Ask as your homepage/default search.</p>
<p>This nearly caught me out, and I&#8217;m a seasoned computer user wary of such things.</p>
<p>As a result I will no longer be suggesting Foxit software as an alternative to Adobe.</p>
<p>Now I need recommendations on new alternatives. I&#8217;ve tried Sumatra, but it&#8217;s missing out on text selection. In fact, pretty much the only feature I need in a PDF reader is being able to read the document and text selection &#8211; I need no other features.</p>
<p>Anyone got a recommendation? If so <a  href="http://alex.leonard.ie/2010/06/30/suggestions-wanted-pdf-reader-software-for-windows/#respond">I&#8217;d love to hear about it in the comments</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/alexleonard?a=Zk90b22Vbik:7RQ9LBCOI3w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=Zk90b22Vbik:7RQ9LBCOI3w:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=Zk90b22Vbik:7RQ9LBCOI3w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=Zk90b22Vbik:7RQ9LBCOI3w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=Zk90b22Vbik:7RQ9LBCOI3w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/alexleonard?i=Zk90b22Vbik:7RQ9LBCOI3w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=Zk90b22Vbik:7RQ9LBCOI3w:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/alexleonard?a=Zk90b22Vbik:7RQ9LBCOI3w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/alexleonard?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/alexleonard/~4/Zk90b22Vbik" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://alex.leonard.ie/2010/06/30/suggestions-wanted-pdf-reader-software-for-windows/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://alex.leonard.ie/2010/06/30/suggestions-wanted-pdf-reader-software-for-windows/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.512 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-28 01:08:00 -->
