<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><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/" version="2.0">

<channel>
	<title>seeking immortality</title>
	
	<link>http://blag.sebacean.net</link>
	<description>where are we going? why am I in this handbasket?</description>
	<pubDate>Sun, 14 Dec 2008 16:10:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/SeekingImmortality" type="application/rss+xml" /><item>
		<title>Horde on Webspace (no shell) Part2</title>
		<link>http://blag.sebacean.net/2008/12/14/horde-on-webspace-no-shell-part2/</link>
		<comments>http://blag.sebacean.net/2008/12/14/horde-on-webspace-no-shell-part2/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 16:07:36 +0000</pubDate>
		<dc:creator>me</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[horde]]></category>

		<category><![CDATA[hosting]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=63</guid>
		<description><![CDATA[After uploading the (now smaller) Horde with our FTP client we can continue with
Part 2 The Database
Since without shell access we can&#8217;t use Horde&#8217;s setup (./scripts/setup.php) to do this for us we have to manually set up the database for Horde.
This step depends on your webhosters so i&#8217;ll just make it quick:
First create a database [...]]]></description>
			<content:encoded><![CDATA[<p>After uploading the (<a href="http://blag.sebacean.net/2008/12/14/horde-on-webspace-no-shell-part1/" >now</a> smaller) Horde with our FTP client we can continue with</p>
<p><strong>Part 2 The Database</strong><br />
Since without shell access we can&#8217;t use Horde&#8217;s setup (./scripts/setup.php) to do this for us we have to manually set up the database for Horde.</p>
<p>This step depends on your webhosters so i&#8217;ll just make it quick:<br />
First create a database with your webhost, then find: hostname (often locahost), username, password, type (often tcp) and databasename for that database.</p>
<p>Now your webhoster probably offers some kind of management frontend (mostly phpmyadmin). There you navigate to your database and select the &#8220;SQL&#8221; tab.</p>
<p>In the editbox you will find there you have to paste some of the lines from the .sql file provided with Horde that matches your database. I use mysql so i used ./scripts/sql/create.mysql.sql.</p>
<p>Out host already created the database, the user etc. so we only need lines that create tables. In my file this would be lines 52 -> end (look for the first CREATE TABLE statement). Copy&#038;Paste and press Submit. This should have given you no errors and created ~18 tables in your database.</p>
<p>In the next step we will create a basic configuration that allows Horde to run so we can do the rest of the setup from within it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/12/14/horde-on-webspace-no-shell-part2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Horde on Webspace (no shell) Part1</title>
		<link>http://blag.sebacean.net/2008/12/14/horde-on-webspace-no-shell-part1/</link>
		<comments>http://blag.sebacean.net/2008/12/14/horde-on-webspace-no-shell-part1/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 01:19:09 +0000</pubDate>
		<dc:creator>me</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[horde]]></category>

		<category><![CDATA[hosting]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=57</guid>
		<description><![CDATA[Because i don't like the webmailer my host has chosen for me (roundcube) i decided to try installing Horde on the webspace that came with it.
This experiment will most likely fail because i don't have shell access and the php installation is probably missing vital modules .. but what else is there to do on a saturday evening]]></description>
			<content:encoded><![CDATA[<p>Because i don&#8217;t like the webmailer my host has chosen for me (roundcube) i decided to try installing Horde on the webspace that came with it.</p>
<p>This experiment will most likely fail because i don&#8217;t have shell access and the php installation is probably missing vital modules .. but what else is there to do on a saturday evening<br />
<strong><br />
Part1: Horde is f***ing huge!<br />
</strong><br />
<code><br />
du -sch .<br />
108M    total<br />
</code></p>
<p>I&#8217;ll start by making horde a little slimer&#8230;<br />
This will give me all the folders with locales other than german or english (cd to horde first)<br />
<code><br />
find -iname ??_?? -type d | grep -v de_DE | grep -v en_US | grep -v en_GB<br />
</code><br />
and this will delete them<br />
<code><br />
find -iname ??_?? -type d | grep -v de_DE | grep -v en_US | grep -v en_GB | xargs rm -r<br />
</code></p>
<p>The same for the &#8220;.po&#8221; files:<br />
<code><br />
find -iname ??_??.po -type f | grep -v de_DE | grep -v en_US | grep -v en_GB | xargs rm -r<br />
</code></p>
<p><code><br />
du -sch .<br />
51M     total<br />
</code><br />
Half the size, nice :)</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/12/14/horde-on-webspace-no-shell-part1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>om nom nom nom nom</title>
		<link>http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/</link>
		<comments>http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 17:02:51 +0000</pubDate>
		<dc:creator>me</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[fun]]></category>

		<category><![CDATA[pics]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=20</guid>
		<description><![CDATA[An onomatopoeical adjective based on the sound emitted when something is &#8220;oh so tasty&#8221; (either through hunger or flavorological value) that one gnaws through it without regard to cleanliness or etiquette.
]]></description>
			<content:encoded><![CDATA[<blockquote><p>An onomatopoeical adjective based on the sound emitted when something is &#8220;oh so tasty&#8221; (either through hunger or flavorological value) that one gnaws through it without regard to cleanliness or etiquette.</p></blockquote>

<a href='http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/biteps0_copy_1/' title='omnom1'><img src="http://blag.sebacean.net/wp-content/uploads/2008/07/biteps0_copy_1-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/bushcorn/' title='omnom2'><img src="http://blag.sebacean.net/wp-content/uploads/2008/07/bushcorn-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/carmonster/' title='omnom3'><img src="http://blag.sebacean.net/wp-content/uploads/2008/07/carmonster-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/nom-nom-nom/' title='omnom4'><img src="http://blag.sebacean.net/wp-content/uploads/2008/07/nom-nom-nom-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/omnomnommnnfail_1_1/' title='omnom5'><img src="http://blag.sebacean.net/wp-content/uploads/2008/07/omnomnommnnfail_1_1-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/trucknomnom/' title='omnom6'><img src="http://blag.sebacean.net/wp-content/uploads/2008/07/trucknomnom-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/nomnomnomno128391045611718750/' title='omnom7'><img src="http://blag.sebacean.net/wp-content/uploads/2008/07/nomnomnomno128391045611718750-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
<a href='http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/chipmunk-485019/' title='omnom8'><img src="http://blag.sebacean.net/wp-content/uploads/2008/07/chipmunk-485019-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>

]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/07/25/om-nom-nom-nom-nom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>what internetaccess used to cost…</title>
		<link>http://blag.sebacean.net/2008/06/10/what-internetaccess-used-to-cost/</link>
		<comments>http://blag.sebacean.net/2008/06/10/what-internetaccess-used-to-cost/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 18:42:36 +0000</pubDate>
		<dc:creator>me</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[money]]></category>

		<category><![CDATA[ultima online]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=19</guid>
		<description><![CDATA[While cleaning up my harddrive i found an old .txt i used to keep track of what i paid each month for internet access. Back then i used a modem, maybe ISDN later to dial to a local ISP, so essentially i paid a local phonecall, mostly in the evening.
These Prices are in German Marks, [...]]]></description>
			<content:encoded><![CDATA[<p>While cleaning up my harddrive i found an old .txt i used to keep track of what i paid each month for internet access. Back then i used a modem, maybe ISDN later to dial to a local ISP, so essentially i paid a local phonecall, mostly in the evening.</p>
<p>These Prices are in German Marks, which back then was maybe half to two thirds of a dollar (date is in MM/YY form and the comma marks the decimal point, so first entry reads 62 Mark and 3 Pfennig)</p>
<p>07/98:  62,03<br />
08/98: 190,66<br />
09/98: 193,22<br />
10/98: 174,92<br />
11/98: 176,06<br />
12/98: 231,59<br />
01/99: 179,12<br />
02/99: 207,84<br />
03/99: 237,94<br />
04/99: 238,27<br />
05/99: 226,31<br />
06/99: 137,04</p>
<p>Back then you had 56kbit with a modem or 64kbit with ISDN later and you had to make every minute count ;) All of this was to play Ultima Online in the evenings and i was still in school back then &#8230; kind of an expensive hobby :)<br />
Comparing this to today&#8217;s DSL market really makes you cry ;)<br />
You get 16mbit down 1mbit DSL up for 20 euros flat or even 50mbit down 10mbit up VDSL for 70 euros flat. Kids today have it way to easy! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/06/10/what-internetaccess-used-to-cost/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Misery Business - Wordpress 2.5.1</title>
		<link>http://blag.sebacean.net/2008/04/28/misery-business-wordpress-251/</link>
		<comments>http://blag.sebacean.net/2008/04/28/misery-business-wordpress-251/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 23:14:23 +0000</pubDate>
		<dc:creator>me</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[girls]]></category>

		<category><![CDATA[videos]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=16</guid>
		<description><![CDATA[Annoyed by the fact that I was &#8220;forced&#8221; to upgrade Wordpress by a security vulnerability I decided to simplify the process by using the anonymous subversion access Wordpress provides instead of doing the manual &#8220;delete these, keep these&#8221; routine.
It worked fine, currently I set it to the newest tag, but in future I might switch [...]]]></description>
			<content:encoded><![CDATA[<p>Annoyed by the fact that I was &#8220;forced&#8221; to upgrade Wordpress by a <a href="http://wordpress.org/development/2008/04/wordpress-251/" >security vulnerability</a> I decided to simplify the process by using the <a href="http://codex.wordpress.org/Installing/Updating_WordPress_with_Subversion" >anonymous subversion access</a> Wordpress provides instead of doing the manual &#8220;delete these, keep these&#8221; routine.</p>
<p>It worked fine, currently I set it to the newest tag, but in future I might switch to the trunk, maybe then finally something breakes that I can then fix ;)</p>
<p>Title is once again inspired by a song I currently like, which was used as the music in this lovely &#8220;hooping&#8221; video:<br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/x6PEsM3rQpI&#038;hl=en&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/x6PEsM3rQpI&#038;hl=en&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/04/28/misery-business-wordpress-251/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Only happy when it rains …</title>
		<link>http://blag.sebacean.net/2008/03/29/only-happy-when-it-rains/</link>
		<comments>http://blag.sebacean.net/2008/03/29/only-happy-when-it-rains/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 21:50:00 +0000</pubDate>
		<dc:creator>me</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[videos]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=9</guid>
		<description><![CDATA[Well &#8230; i just updated to Wordpress 2.5. And it worked, just following the guide on the offical homepage.
How boring is that? I want excitement, something should go wrong and need fixing!

&#8230;

For those that did not recognize the title:

]]></description>
			<content:encoded><![CDATA[<p>Well &#8230; i just updated to <a href="http://wordpress.org/development/2008/03/wordpress-25-brecker/" >Wordpress 2.5</a>. And it worked, just following the <a href="http://codex.wordpress.org/Upgrading_WordPress" >guide</a> on the offical homepage.<br />
How boring is that? I want excitement, something should go wrong and need fixing!<br />
<br/><br />
&#8230;<br />
<br/><br />
For those that did not recognize the title:<br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/zdodc1Eu1nA&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/zdodc1Eu1nA&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/03/29/only-happy-when-it-rains/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jamaican screamo reggea-metal?</title>
		<link>http://blag.sebacean.net/2008/03/19/jamaican-screamo-reggea-metal/</link>
		<comments>http://blag.sebacean.net/2008/03/19/jamaican-screamo-reggea-metal/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 18:18:24 +0000</pubDate>
		<dc:creator>me</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[metal]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/2008/03/19/jamaican-screamo-reggea-metal/</guid>
		<description><![CDATA[Whatever this song&#8217;s genre is called &#8230; i like it &#8230; alot :)

]]></description>
			<content:encoded><![CDATA[<p>Whatever this song&#8217;s genre is called &#8230; i like it &#8230; alot :)</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/h-kmLkfFrtU&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/h-kmLkfFrtU&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/03/19/jamaican-screamo-reggea-metal/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP DateTime bugs:  i hate i18n</title>
		<link>http://blag.sebacean.net/2008/03/11/php-datetime-bugs-i-hate-i18n/</link>
		<comments>http://blag.sebacean.net/2008/03/11/php-datetime-bugs-i-hate-i18n/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 18:36:58 +0000</pubDate>
		<dc:creator>me</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/2008/03/11/php-datetime-bugs-i-hate-i18n/</guid>
		<description><![CDATA[Handling different dates and timezones in an application is - like most aspects of i18n - very annoying (to put it mildly)&#8230; Recently we discovered the following behaviour at work&#8230;
If you create a DateTime object like this (in the current stable version of php, 5.2.3):
&#60;?php
$oDateTest = new DateTime("@0", new DateTimeZone(date_default_timezone_get()));
echo "tz: ".$oDateTest-&#62;getTimezone()-&#62;getName()."\n";
echo "date: ". $oDateTest-&#62;format("Y-m-d [...]]]></description>
			<content:encoded><![CDATA[<p>Handling different dates and timezones in an application is - like most aspects of i18n - very annoying (to put it mildly)&#8230; Recently we discovered the following behaviour at work&#8230;</p>
<p>If you create a DateTime object like this (in the current stable version of php, 5.2.3):</p>
<pre name="code" class="php:nogutter">&lt;?php
$oDateTest = new DateTime("@0", new DateTimeZone(date_default_timezone_get()));
echo "tz: ".$oDateTest-&gt;getTimezone()-&gt;getName()."\n";
echo "date: ". $oDateTest-&gt;format("Y-m-d H:i:s")."\n";
?&gt;</pre>
<p>It will be in the default timezone (&#8217;Europe/Berlin&#8217; in my case) but say the date is 1970-01-01 00:00. This is wrong. The Unix timestamp &#8220;0&#8243; stands for that exact date, but in another timezone: UTC. It should be 01:00 in Berlin.</p>
<p>This bug was reported multiple times, but with sometimes confusing bug reports. But someone had managed to submit a clear bug report with code to reproduce the behaviour (<a href="http://bugs.php.net/bug.php?id=43003" >PHP Bug 43003</a>) and the php developers acknowledged the bug and issued a fix that i verified to be (at least) in the following snapshots: php5.2-200803111530 and php5.3-200803111530.</p>
<p>Sadly, this fix is at best &#8220;unintuitive&#8221;, maybe it even qualifies as &#8220;still broken&#8221;. The above code gives the following output in these snapshots:</p>
<blockquote><p> tz: +00:00<br />
date: 1970-01-01 00:00:00</p></blockquote>
<p>So, the DateTime object now knows that UNIX timestamps always are given in UTC and sets it&#8217;s timezone accordingly. But is this what it should do in this case? I - the programmer - clearly stated i wanted the DateTime object to be in my default timezone! Even if i explicitly give the timezone as &#8216;Europe/Berlin&#8217; during construction, the object&#8217;s timezone still is UTC afterwards.</p>
<p>So instead of knowing that i have to manually set the DateTime to UTC, then back to my desired timezone when working with an UNIX timestamp i now have to know that a DateTime will be in UTC after setting it up with a UNIX timestamp. Personally i hate having to know things, IMHO it&#8217;s a sign of weak design. The API has to be clear, i don&#8217;t give a rat&#8217;s backside about the inner workings and struggles of the objects i use.</p>
<p>We went from this:</p>
<pre name="code" class="php:nogutter">// FIXME: DateTime issue... needs the conversion to and from UTC...
$oDateTest = new DateTime("@0", new DateTimeZone('UTC'));
$oDateTest-&gt;setTimezone(new DateTimeZone("Europe/Berlin"));
</pre>
<p>To this:</p>
<pre name="code" class="php:nogutter">// FIXME: DateTime issue... will always be UTC afterwards...
$oDateTest = new DateTime("@0", new DateTimeZone('Europe/Berlin')); // or UTC, or what/ever....
$oDateTest-&gt;setTimezone(new DateTimeZone("Europe/Berlin"));
</pre>
<p>Is this better or worse?</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/03/11/php-datetime-bugs-i-hate-i18n/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Give me penne a la arrabiata or you shall die!</title>
		<link>http://blag.sebacean.net/2008/03/04/give-me-penne-a-la-arrabiata-or-you-shall-die/</link>
		<comments>http://blag.sebacean.net/2008/03/04/give-me-penne-a-la-arrabiata-or-you-shall-die/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 17:23:51 +0000</pubDate>
		<dc:creator>me</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[fun]]></category>

		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=4</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><embed src="http://www.youtube.com/v/Sv5iEK-IEzw&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" wmode="transparent" height="355" width="425"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/03/04/give-me-penne-a-la-arrabiata-or-you-shall-die/feed/</wfw:commentRss>
		</item>
		<item>
		<title>harder, better, faster, stronger</title>
		<link>http://blag.sebacean.net/2007/11/14/harder-better-faster-stronger/</link>
		<comments>http://blag.sebacean.net/2007/11/14/harder-better-faster-stronger/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 21:05:00 +0000</pubDate>
		<dc:creator>me</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[fun]]></category>

		<category><![CDATA[girls]]></category>

		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/2007/11/14/harder-better-faster-stronger/</guid>
		<description><![CDATA[Lesson #4711: How to spend an hour on youtube
First somebody sends you this:
Then you watch this as a followup&#8230;
After that you watch this related video&#8230;
And, just because you&#8217;re doing nothing special anyways, you watch this afterwards&#8230;
And if you&#8217;re like me, always looking for the &#8220;real&#8221; version of a video before rating/favorting it and reading some [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-weight:bold;">Lesson #4711: How to spend an hour on youtube</span></p>
<p>First somebody sends you this:<br /><object type="application/x-shockwave-flash" data="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1789284&#038;fullscreen=1" width="480" height="360" ><param name="allowfullscreen" value="true" /><param name="movie" quality="best" value="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1789284&#038;fullscreen=1" /></object></p>
<p>Then you watch this as a followup&#8230;<br /><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/K2cYWfq--Nw&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/K2cYWfq--Nw&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>After that you watch this related video&#8230;<br /><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Sr2JneittqQ&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Sr2JneittqQ&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>And, just because you&#8217;re doing nothing special anyways, you watch this afterwards&#8230;<br /><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/zbSKnU5ZwJg&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/zbSKnU5ZwJg&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>And if you&#8217;re like me, always looking for the &#8220;real&#8221; version of a video before rating/favorting it and reading some comments etc. this just took you an hour ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2007/11/14/harder-better-faster-stronger/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
