<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Misty thoughts</title>
	<atom:link href="http://blog.kfirbreger.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kfirbreger.com</link>
	<description></description>
	<lastBuildDate>Tue, 13 Jul 2010 07:44:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Setting up Solr for Drupal under tomcat</title>
		<link>http://blog.kfirbreger.com/2010/07/13/setting-up-solr-for-drupal-under-tomcat/</link>
		<comments>http://blog.kfirbreger.com/2010/07/13/setting-up-solr-for-drupal-under-tomcat/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 06:37:56 +0000</pubDate>
		<dc:creator>Kfir</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[solr]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://blog.kfirbreger.com/?p=263</guid>
		<description><![CDATA[Disclaimer: This method will probably not work for all servers running tomcat, it is more a personal guide then a general one. Solr is a "popular, blazing fast open source enterprise search platform from the Apache Lucene project". Drupal search has traditionally been less then adequate. Using Solr to index and search you Drupal site [...]]]></description>
			<content:encoded><![CDATA[<p>Disclaimer: This method will probably not work for all servers running tomcat, it is more a personal guide then a general one.</p>
<p>Solr is a "popular, blazing fast open source enterprise search platform from the Apache Lucene project". Drupal search has traditionally been less then adequate. Using Solr to index and search you Drupal site is therefore quite helpful.</p>
<p>To start, download the Solr package (<a href="http://www.apache.org/dyn/closer.cgi/lucene/solr/">link</a>) and the Solr drupal module (<a href="http://drupal.org/project/apachesolr">link</a>). the current standard distribution is Solr 1.4 and Drupal 6.<br />
Unarchive the tar files in a location that is reachable from your server.</p>
<p>We will assume that tomcat is installed in <code>/opt/tomcat</code></p>
<p>In the Solr package there is an example application. That is the Solr application we are going to use. If you can write your own, you probably don't need this tutorial.</p>
<p><strong>Step 1:</strong><br />
Copy the example application, found in the solr package under <code>example/webapps</code> to the tomecat webapps folder which should be <code>/opt/tomcat/webapps</code>. when copying the file rename it to something other the solr. this will enable you to have multiplie solr installations running under one Tomcat container. We will assume the app is renamed <code>new_solr_inst</code>. If you are in the tomcat root folder the command should like like this:<br />
<code>cp /path/to/solr/package/apache-solr-1.4.0/apache-solr-1.4.0/example/webapps/solr.war webapps/new_solr_inst.war</code></p>
<p>Tomcat will pick up the war file and open it automatically after a restart.</p>
<p><strong>Step 2:</strong><br />
In the tomcat root folder create a folder to hold your Solr configuration and data.<br />
<code>mkdir new_solr_inst</code><br />
Copy the example app configuration into that folder<br />
<code>cp -R /path/to/solr/package/apache-solr-1.4.0/apache-solr-1.4.0/example/solr/* new_solr_inst</code></p>
<p><strong>Step 3:</strong><br />
You need to replace the original <code>schema.xml</code> and <code>solrconfig.xml</code> with the ones provided by the drupal module. Copy these two files to your Solr configuration folder. Assuming you are currently at the tomcat root folder<br />
<code>cp /path/to/solr/module/schema.xml new_solr_inst/conf</code><br />
<code>cp /path/to/solr/module/solrconfig.xml new_solr_inst/conf</code><br />
The Solr app is now ready for use.</p>
<p><strong>Step 4:</strong><br />
The last step is needed to inform Tomcat about the app and its settings. Go to <code>conf/Catalina/localhost</code> and create the file <code>new_solr_inst.xml</code>. In that file fill the following content:</p>
<div id="_mcePaste"><code>&lt;Context docBase="/opt/tomcat/webapps/new_solr_inst.war" debug="0" privileged="true" allowLinking="true" crossContext="true"&gt;</code></div>
<div id="_mcePaste"><code>&lt;Environment name="solr/home" type="java.lang.String" value="/opt/tomcat/new_solr_inst" override="true" /&gt;</code></div>
<div id="_mcePaste"><code>&lt;/Context&gt;</code></div>
<p><strong>Step 5:</strong><br />
You need to restart tomcat<br />
<code>/opt/tomcat/bin/shutdown.sh</code><br />
<code>/opt/tomcat/bin/startup.sh</code><br />
And your Solr should be running. There are three tests we can use to check everything went well.</p>
<ul>
<li>Tomcat has opened the war file. There is now a folder <code>new_solr_inst</code> in the <code>webapps</code> folder of Tomcat.</li>
<li>Solr has made a <code>data</code> directory in the Solr home folder (that is <code>/opt/tomcat/new_solr_inst</code>)</li>
<li>In your browser go to the Solr app <code>http://domain:tomcat_port/new_solr_inst</code> and you should see a welcome screen</li>
</ul>
<p>If all is well you are ready to combine this Solr installation with your Drupal</p>
<p><strong>Step 6:</strong><br />
Activate the Apache-Solr module and go to the Solr module settings page <code>admin/settings/apachesolr</code><br />
Assuming tomcat and drupal are running on the same server fill in <code>localhost</code> as the host name, fill in the port tomcat is running on and solr path should be your app name in the tomcat webapps folder. In our case is it <code>new_solr_inst</code>.</p>
<p>Save the settings. Drupal should inform you that a connection is made with Solr</p>
<p>Notes</p>
<ul>
<li>It is not nessecary to put the app configuration in the Tomcat root folder. you can probably (though I have not tested this) place it anywhere you want. you do need to make sure that the environment tag in the Tomact configuration file (the one in the <code>conf/Catalina/localhost</code> folder) is pointing to the right place.</li>
<li>If you make changes to the schema you may need to dump all the indices Solr has made. you can do this via the Drupal admin interface for the Solr module.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.kfirbreger.com/2010/07/13/setting-up-solr-for-drupal-under-tomcat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery animation problem in ie7</title>
		<link>http://blog.kfirbreger.com/2010/05/28/jquery-animation-problem-in-ie7/</link>
		<comments>http://blog.kfirbreger.com/2010/05/28/jquery-animation-problem-in-ie7/#comments</comments>
		<pubDate>Fri, 28 May 2010 11:24:30 +0000</pubDate>
		<dc:creator>Kfir</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[ie problems]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://blog.kfirbreger.com/2010/05/28/jquery-animation-problem-in-ie7/</guid>
		<description><![CDATA[For one of our projects, I was creating a photo bar. When the mouse was over one of the photos it was ment to increase in size and decrease back to original size when the mouse left. Unfortunately the client for which this was developed uses ie7 exclusively. This has brought two problems: 1. ie7 [...]]]></description>
			<content:encoded><![CDATA[<p>For one of our projects, I was creating a photo bar. When the mouse was over one of the photos it was ment to increase in size and decrease back to original size when the mouse left. Unfortunately the client for which this was developed uses ie7 exclusively. This has brought two  problems:<br />
1. ie7 does not support the mouseleave event. I needed to replace it with mouseout event.<br />
2. ie7 does not accept the position property in the jQuery animate function. Giving the position as a parameter will cause an error.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kfirbreger.com/2010/05/28/jquery-animation-problem-in-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Namespacing and setTimeOut in Javascript</title>
		<link>http://blog.kfirbreger.com/2010/05/11/namespacing-and-settimeout-in-javascript/</link>
		<comments>http://blog.kfirbreger.com/2010/05/11/namespacing-and-settimeout-in-javascript/#comments</comments>
		<pubDate>Tue, 11 May 2010 10:39:47 +0000</pubDate>
		<dc:creator>Kfir</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.kfirbreger.com/2010/05/11/namespacing-and-settimeout-in-javascript/</guid>
		<description><![CDATA[It is good practice to put all of your javascript code in its own namespace. When doing so in combination with setTimeOut timer function it is important to remember that the object evoking the function will be the DOM window and not your namespace object. Therefore it is needed to add the namespace before the [...]]]></description>
			<content:encoded><![CDATA[<p>It is good practice to put all of your javascript code in its own namespace. When doing so in combination with setTimeOut timer function it is important to remember that the object evoking the function will be the DOM window and not your namespace object. Therefore it is needed to add the namespace before the name of the function called.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kfirbreger.com/2010/05/11/namespacing-and-settimeout-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting session ID in Drupal 6</title>
		<link>http://blog.kfirbreger.com/2010/02/25/getting-session-id-in-drupal-6/</link>
		<comments>http://blog.kfirbreger.com/2010/02/25/getting-session-id-in-drupal-6/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 20:49:22 +0000</pubDate>
		<dc:creator>Kfir</dc:creator>
				<category><![CDATA[guide]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.kfirbreger.com/?p=257</guid>
		<description><![CDATA[Drupal saves its sessions in the sessions table. One can always query they table to get the session ID. There is however a faster way. If the user is logged it, the session id can be found with the following code: global $user; $user->sid; In any case the session id can also be read from [...]]]></description>
			<content:encoded><![CDATA[<p>
Drupal saves its sessions in the sessions table. One can always query they table to get the session ID. There is however a faster way.<br />
If the user is logged it, the session id can be found with the following code:</p>
<pre>
global $user;
$user->sid;
</pre>
<p><span>In any case the session id can also be read from the cookie:</span></p>
<pre>
$_COOKIE[session_name()];
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.kfirbreger.com/2010/02/25/getting-session-id-in-drupal-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theming a form in Drupal 6</title>
		<link>http://blog.kfirbreger.com/2010/02/23/theming-a-form-in-drupal-6/</link>
		<comments>http://blog.kfirbreger.com/2010/02/23/theming-a-form-in-drupal-6/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 11:07:19 +0000</pubDate>
		<dc:creator>Kfir</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[form api]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[theming]]></category>

		<guid isPermaLink="false">http://blog.kfirbreger.com/2010/02/23/theming-a-form-in-drupal-6/</guid>
		<description><![CDATA[Form theming in drupal 6 is quite flexible. One of the nicest tricks is the ability to theme the form in stages. Calling drupal_render on a part of the form will not only return the rendered version of it, but it will also mark that part as rendered so that when you call the final [...]]]></description>
			<content:encoded><![CDATA[<p>Form theming in drupal 6 is quite flexible. One of the nicest tricks is the ability to theme the form in stages. Calling drupal_render on a part of the form will not only return the rendered version of it, but it will also mark that part as rendered so that when you call the final drupal_render over the whole form, it will not re-render the parts already rendered.</p>
<p>Remember that in order for the form to function correctly there are some hidden fields in every form that must be added to the form. Also drupal needs to generate the form tag. Therefore it is my advise, after doing the custom rendering of the parts you want, add a general render of the form. this will reduce the chance of problems with form submission.</p>
<p>Special thanks to Rolf van de Krol, for this tip.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kfirbreger.com/2010/02/23/theming-a-form-in-drupal-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sir Richard Francis Burton</title>
		<link>http://blog.kfirbreger.com/2009/08/31/sir-richard-francis-burton/</link>
		<comments>http://blog.kfirbreger.com/2009/08/31/sir-richard-francis-burton/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 08:52:42 +0000</pubDate>
		<dc:creator>Kfir</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://blog.kfirbreger.com/?p=221</guid>
		<description><![CDATA[Sir Richard Francis Burton: "'The more I study religions the more I am convinced that man never worshipped anything but himself.'" (Via Quotes of the Day.)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quotationspage.com/quote/758.html">Sir Richard Francis Burton</a>: "'The more I study religions the more I am convinced that man never worshipped anything but himself.'"</p>
<p>(Via <a href="http://www.quotationspage.com/qotd.html">Quotes of the Day</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kfirbreger.com/2009/08/31/sir-richard-francis-burton/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The history of Johnnie Walker in 6min</title>
		<link>http://blog.kfirbreger.com/2009/08/29/the-history-of-johnnie-walker-in-6min/</link>
		<comments>http://blog.kfirbreger.com/2009/08/29/the-history-of-johnnie-walker-in-6min/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 07:28:59 +0000</pubDate>
		<dc:creator>Kfir</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://blog.kfirbreger.com/?p=192</guid>
		<description><![CDATA[The first whiskey I ever drank was a Johnnie Walker Red Label. It was horrible. Burned my mouth completely. I was, as can be expected young and knew nothing about whiskey, aside form the name. And that it was apparently "cool" to drink. So I tried. After that one sip I stayed of whiskey for [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>The first whiskey I ever drank was a Johnnie Walker Red Label. It was horrible. Burned my mouth completely. I was, as can be expected young and knew nothing about whiskey, aside form the name. And that it was apparently "cool" to drink. So I tried. After that one sip I stayed of whiskey for over two years.</p>
<p>The second tim eI tasted whiskey, it was a Johnnie Walker Black label. It was strong, burning, and delightful. I do not know what has changed in those two years or if something changed at all. Maybe if I had tried the black first instead of the red, I would be set right off the start. For the next three years or so I only drank Johnnie Blacks.</p>
<p>As my taste evolved I stated trying more whiskeys. Like most people I started to value the single malts more and more. Eventually completely abandoning the blended sorts, of which Johnnie was my darling. Nowadays I have at home a small collection of singles, out of which I drink a glass almost daily. Whiskey has definitely become my favorite strong drink. Johnnie had a lot to do with it</p>
<p>That is why I was so delighted to see this 6 minute film over the history of Johnnie Walker. Even if you are not a fan of the drink, or the brand, it is worth 6 minutes of your time</p></div>
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/S5QknFnqhhs&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/S5QknFnqhhs&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<div>
<p>Update: Unfortunatley the film was removed due to copy-write violations. quite unfortunate</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.kfirbreger.com/2009/08/29/the-history-of-johnnie-walker-in-6min/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Byline review</title>
		<link>http://blog.kfirbreger.com/2009/08/29/byline-review/</link>
		<comments>http://blog.kfirbreger.com/2009/08/29/byline-review/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 07:18:43 +0000</pubDate>
		<dc:creator>Kfir</dc:creator>
				<category><![CDATA[reviews]]></category>
		<category><![CDATA[byline]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[rss reader]]></category>

		<guid isPermaLink="false">http://blog.kfirbreger.com/?p=181</guid>
		<description><![CDATA[For a while now I have been using Google Reader as my rss reader. Managing feeds was simple, though not ideal and it was accessible from just about any computer. Better yet, I did not need to find way to sync between all my different rss readers, which was starting to get tiresome. On the iPhone [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.phantomfish.com/byline.html"><img class="alignright size-full wp-image-209" title="Byline icon" src="http://blog.kfirbreger.com/wp-content/uploads/2009/08/bylineicon.png" alt="Byline icon" width="128" height="128" /></a>For a while now I have been using Google Reader as my rss reader. Managing feeds was simple, though not ideal and it was accessible from just about any computer. Better yet, I did not need to find way to sync between all my different rss readers, which was starting to get tiresome. On the iPhone the situation was a bit different. Even though Google Reader on the iPhone is reasonable, it felt slugish and not very natural. Running in mobile safari, that was of course, to be expected.</p>
<p>I decided it was time to look for a dedicated rss reader for the iPhone. I was looking for an application that offered syncing with Google Reader, and that was about it.  I decided to try Byline from Phantom Fish. I have been using Byline for a month now and am very happy with it. So much so I decided to write my first app review about it. Let me give you a closer look at it.</p>
<div>
<ul>
<li><strong>The icon:</strong> Clear and unique enough to not be confused with other apps. The icon is definitely beautiful, though in my opinion it could have been a bit more abstract.</li>
<li><strong>Setting up:</strong> Setting up is as simple as logging into your google account. Works well.</li>
<li><strong>Usage:</strong> The app is responsive and slick. It feels fast and the UI is very natural. I cant imagine going back to Google Reader.</li>
<li><strong>Sync:</strong> Syncing works really well. I can't remember having any kind of trouble with it.</li>
</ul>
<p>As I mentioned before, Byline also caches the feeds so that you can read while offline. Traveling around europe regularly, it is possible for me to use my rss reader without the need to pay ridiculous amounts of money for roaming data (1 voor 100kb).</p></div>
<p>All in all I am very happy with Byline. It does everything I wanted it to do, and it does it well. What I am missing is the ability to view entries per feed instead of per group. However this is a minor complain seeing the overall experience.<br />
In fact I liked the use of Byline so much, I switched back to an rss reader app on my computers as well. Readers that sync with Google Reader that is. Look at <a title="Phantom Fish Byline" href="http://www.phantomfish.com/byline.html" target="_blank">Phantom Fishs</a> Byline page for screenshots and video demo. Or use the link bellow to go directly to the app store.</p>
<p><img class="aligncenter size-full wp-image-213" title="Get Byline on the app store" src="http://blog.kfirbreger.com/wp-content/uploads/2009/08/appstore.png" alt="Get Byline on the app store" width="224" height="73" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kfirbreger.com/2009/08/29/byline-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opposite directions</title>
		<link>http://blog.kfirbreger.com/2009/08/28/opposite-directions/</link>
		<comments>http://blog.kfirbreger.com/2009/08/28/opposite-directions/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 06:54:47 +0000</pubDate>
		<dc:creator>Kfir</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[justice scalia]]></category>
		<category><![CDATA[law]]></category>
		<category><![CDATA[stupid]]></category>

		<guid isPermaLink="false">http://blog.kfirbreger.com/?p=201</guid>
		<description><![CDATA[You probably heard about justice Scalia of the American supreme court saying executing an innocent man is not unlawful because he was found guilty in a legal trial. New findings which can acquit said innocent man, are, for justice Scalia, no reason not not proceed with what a court has found to be just. That [...]]]></description>
			<content:encoded><![CDATA[<p>You probably heard about justice Scalia of the American supreme court saying executing an innocent man is not unlawful because he was found guilty in a legal trial. New findings which can acquit said innocent man, are, for justice Scalia, no reason not not proceed with what a court has found to be just.<br />
That may sound strange, even scary coming from a supreme court justice. The thing is, I have seen this kind of thinking before from people who give service to society. Sometimes they seem to loose sight of what is actually the grand reason for them being there. They stop seeing their system as a system that gives service to society, but that society is there so obey their wonderful system.</p>
<p>This I believe is exactly what happened to justice Scalia. He lost sight of the reason he is there. To serve society. Executing an innocent man does not do that in any way. Look at it from the other direction, and you can see how he reasons.</p>
<p>One must ask himself if someone who completely lost sight of what its all about could, or should, remain in his position.</p>
<p>For more information on this case read <a href="http://writ.news.findlaw.com/dorf/20090826.html">this</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.kfirbreger.com/2009/08/28/opposite-directions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bolt&#8217;s new world record at the Berlin world championship</title>
		<link>http://blog.kfirbreger.com/2009/08/22/bolts-new-world-record-at-the-berlin-world-championship/</link>
		<comments>http://blog.kfirbreger.com/2009/08/22/bolts-new-world-record-at-the-berlin-world-championship/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 11:57:11 +0000</pubDate>
		<dc:creator>Kfir</dc:creator>
				<category><![CDATA[sport]]></category>
		<category><![CDATA[100m]]></category>
		<category><![CDATA[usain bolt]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[world record]]></category>

		<guid isPermaLink="false">http://blog.kfirbreger.com/?p=196</guid>
		<description><![CDATA[Look carefully at Usain as he moves. There is a lot of side movement still present. If he can improve his technique, I believe he might break the 9.5 sec barrier. How wonderful it is to see this man run!]]></description>
			<content:encoded><![CDATA[<div>
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/JR81cx87_ko&#038;hl=en&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JR81cx87_ko&#038;hl=en&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object>
</div>
<div>
<p>Look carefully at Usain as he moves. There is a lot of side movement still present. If he can improve his technique, I believe he might break the 9.5 sec barrier. How wonderful it is to see this man run!</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.kfirbreger.com/2009/08/22/bolts-new-world-record-at-the-berlin-world-championship/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
