<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jose Thomas on Wordpress</title>
	<atom:link href="http://josethomas.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://josethomas.wordpress.com</link>
	<description>My blog @ wordpress.com</description>
	<lastBuildDate>Mon, 02 Aug 2010 13:13:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='josethomas.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Jose Thomas on Wordpress</title>
		<link>http://josethomas.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://josethomas.wordpress.com/osd.xml" title="Jose Thomas on Wordpress" />
	<atom:link rel='hub' href='http://josethomas.wordpress.com/?pushpress=hub'/>
		<item>
		<title>WordPress Page Menu with pages separated by &#8220;&#124;&#8221; (Printer friendly )</title>
		<link>http://josethomas.wordpress.com/2010/08/01/wordpress-page-menu-with-pages-separated-by-printer-friendly/</link>
		<comments>http://josethomas.wordpress.com/2010/08/01/wordpress-page-menu-with-pages-separated-by-printer-friendly/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 20:03:38 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://josethomas.wordpress.com/?p=108</guid>
		<description><![CDATA[Last week, i was doing a PSD to wordpress CMS work. There was a footer menu, in which pages are separated by a horizontal line. I just simply listed the pages and added line as border in CSS. #nav li a{border-right: 1px solid #ccc;} But the client said they want a &#8216;printer friendly&#8217; menu seperated [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=108&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week, i was doing a PSD to wordpress CMS work. There was a footer menu, in which pages are separated by a horizontal line. I just simply listed the pages and added line as border in CSS. </p>
<p>   #nav li a{border-right: 1px solid #ccc;}</p>
<p>But the client said they want a &#8216;printer friendly&#8217; menu seperated with &#8220;|&#8221; symbol. </p>
<p>a menu like this:</p>
<pre>
<a href="#">Home</a>  |   <a href="#">About</a>  |  <a href="#">Contact</a>
</pre>
<p>The <a href="http://codex.wordpress.org/Function_Reference/wp_list_pages">list pages function</a>, displays only as a list, ie it adds html tag <code>&lt;li&amp;&gt; and &lt;/li&amp;&gt;</code> to every elements. It will result only vertical list with bullets if css is disabled.</p>
<p>There is a way to remove thos &#8220;li&#8221;s. using the the preg_replace php function</p>
<p>here is the code to display wordpress pages separated with | </p>
<blockquote><p><code><br />
<span class="home">&lt;a href=&quot;/"&gt;<br />
Home<br />
</a></span><br />
&lt;?php $pages = wp_list_pages(&#039;sort_column=menu_order&amp;title_li=&amp;echo=0&#039;);<br />
$pages = preg_replace(&#039;%
<li>]+)&gt;%U',' | <span>', $pages);<br />
$pages = str_replace('</li>
<p>','</span>', $pages);<br />
echo $pages; ?&gt;<br />
  </code></p></blockquote>
<p>This will replace li with span and &#8216;|&#8217;. This can be used to add more tags like divs or span in the page list.</p>
<p>same code can be used with <a href="http://codex.wordpress.org/Template_Tags/wp_list_categories">list category function</a> also</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/josethomas.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/josethomas.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/josethomas.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/josethomas.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/josethomas.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/josethomas.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/josethomas.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/josethomas.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/josethomas.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/josethomas.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/josethomas.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/josethomas.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/josethomas.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/josethomas.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=108&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://josethomas.wordpress.com/2010/08/01/wordpress-page-menu-with-pages-separated-by-printer-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/110311be1a64a2c1c9ce2bc4351c0e50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jawzz</media:title>
		</media:content>
	</item>
		<item>
		<title>It snowed in the Sahara desert</title>
		<link>http://josethomas.wordpress.com/2009/01/11/it-snowed-in-the-sahara-desert/</link>
		<comments>http://josethomas.wordpress.com/2009/01/11/it-snowed-in-the-sahara-desert/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 07:32:39 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Cool]]></category>

		<guid isPermaLink="false">http://josethomas.wordpress.com/?p=82</guid>
		<description><![CDATA[Yaa, It is true. On February 18, 1979, snow fell in that desert. No records indicate that Sahara Desert had snowed there before or since. . . Don&#8217;t worry, It quickly melted.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=82&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yaa, It is true. On February 18, 1979, snow fell in that desert. No records indicate that Sahara Desert had snowed there before or since. . .</p>
<p><img class="alignnone size-full wp-image-83" title="snow-in-sahara" src="http://josethomas.files.wordpress.com/2009/01/snow-in-sahara.jpg?w=500&#038;h=336" alt="snow-in-sahara" width="500" height="336" /></p>
<p>Don&#8217;t worry, It quickly melted.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/josethomas.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/josethomas.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/josethomas.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/josethomas.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/josethomas.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/josethomas.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/josethomas.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/josethomas.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/josethomas.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/josethomas.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/josethomas.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/josethomas.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/josethomas.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/josethomas.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=82&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://josethomas.wordpress.com/2009/01/11/it-snowed-in-the-sahara-desert/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/110311be1a64a2c1c9ce2bc4351c0e50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jawzz</media:title>
		</media:content>

		<media:content url="http://josethomas.files.wordpress.com/2009/01/snow-in-sahara.jpg" medium="image">
			<media:title type="html">snow-in-sahara</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing WordPress Theme Footer Encryption For Google Analytics</title>
		<link>http://josethomas.wordpress.com/2009/01/04/removing-wordpress-theme-footer-encryption-for-google-analytics/</link>
		<comments>http://josethomas.wordpress.com/2009/01/04/removing-wordpress-theme-footer-encryption-for-google-analytics/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 13:07:53 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Cool]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://josethomas.wordpress.com/?p=77</guid>
		<description><![CDATA[If you are using a free wordpress theme, you may find some bad codes in the footer.php file. No problem, it is not a virus. It is the encrypted footer. Many of the free WordPress themes comes with encrypted footer. It contains the credit links to the auther. The authors are encrypting this to avoid [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=77&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are using a free wordpress theme, you may find some bad codes in the footer.php file. No problem, it is not a virus. It is the encrypted footer.</p>
<p>Many of the free WordPress themes comes with encrypted footer. It contains the credit links to the auther. The authors are encrypting this to avoid link removal. Those themes are made free for you because of these credit links. Many theme authers will encrypt this. The encrypted footer causes many problem.  For many applications like google analytics, Payperpost etc. a code is need to be pasted in footer. The encrypted footer will not  allow this.</p>
<p><img class="alignnone size-full wp-image-78" title="encoded" src="http://josethomas.files.wordpress.com/2009/01/encoded.png?w=500&#038;h=446" alt="encoded" width="500" height="446" /></p>
<p>In such cased you need not change the template. Here is a way for Removing WordPress Theme Footer Encryption.<br />
Step1: Log-in to wp-admin and Go to <em>http://xxxxxxxx.xxx/wp-admin/theme-editor.php</em></p>
<p>On the right side of the editor, you will find many files like <em>archieves.php, header.php, sidebar.php, footer.php, index.php</em> etc. Go to main index template by clicking on <em>index.php </em></p>
<p>In some themes there may be a file called <em>Home.php</em> In such themes, go to edit that file.</p>
<p>At the end of that file you can find a code:</p>
<blockquote>
<pre>&lt;?php get_footer(); ?&gt;</pre>
</blockquote>
<p>Change it into:</p>
<blockquote>
<pre>&lt;!--Footer code starts here--&gt;

&lt;?php get_footer(); ?&gt;

&lt;!--Footer code ends here--&gt;</pre>
</blockquote>
<p>Then Open the site. Then view the source code. It can be viewed by clicking View -&gt; Source (in explorer) or  View -&gt; Page Source (in firefox).  At the end you can see some code between the 2 strings.</p>
<blockquote>
<pre>&lt;!--Footer code starts here--&gt;

    <strong><em>footer code</em></strong>

&lt;!--Footer code ends here--&gt;</pre>
</blockquote>
<p>Copy the code between&lt;!&#8211;Footer code starts here&#8211;&gt; and&lt;!&#8211;Footer code ends here&#8211;&gt; and paste it to the <em>footer.php</em> in the theme editor.<br />
U decoded it. Now you can paste Google analytics code in the footer. Or web site tracker or code from http://whos.amung.us to find how many people online.</p>
<p>One more thing, Don&#8217;t forget to add &#8220;wp_footer()&#8221; function. Some plugins have to add some php codes in the footer. Such plugins won&#8217;t work if ther&#8217;s no wp_footer function.  It&#8217;s easy. Just paste</p>
<blockquote>
<pre>&lt;?php wp_footer(); ?&gt;</pre>
</blockquote>
<p><strong><span style="font-weight:normal;">before &lt;/body&gt; tag.</span></strong></p>
<p>Make sure that  you are not removing the credit links or sponsor links. Because you are enjoying a free theme because of that link <em>(Be honest)</em>. These links will not cause any problem for your blog.</p>
<p>Some authers allow removal of such links by paying a small amount to them.</p>
<p>In some themes there may a widget enabled footer. In such themes after decoding you will get static code. In such cases find the code for widgets from wordpress support forum.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/josethomas.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/josethomas.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/josethomas.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/josethomas.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/josethomas.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/josethomas.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/josethomas.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/josethomas.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/josethomas.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/josethomas.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/josethomas.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/josethomas.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/josethomas.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/josethomas.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=77&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://josethomas.wordpress.com/2009/01/04/removing-wordpress-theme-footer-encryption-for-google-analytics/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/110311be1a64a2c1c9ce2bc4351c0e50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jawzz</media:title>
		</media:content>

		<media:content url="http://josethomas.files.wordpress.com/2009/01/encoded.png" medium="image">
			<media:title type="html">encoded</media:title>
		</media:content>
	</item>
		<item>
		<title>Ferrari Aurea</title>
		<link>http://josethomas.wordpress.com/2008/11/04/ferrari-aurea/</link>
		<comments>http://josethomas.wordpress.com/2008/11/04/ferrari-aurea/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 15:53:40 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Cool]]></category>
		<category><![CDATA[Cars]]></category>
		<category><![CDATA[jose thomas]]></category>

		<guid isPermaLink="false">http://josethomas.wordpress.com/?p=68</guid>
		<description><![CDATA[Ferrari Aurea<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=68&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ferrari Aurea</p>

<a href='http://josethomas.wordpress.com/2008/11/04/ferrari-aurea/jose-thomas-2-2/' title='jose-thomas-2'><img width="150" height="112" src="http://josethomas.files.wordpress.com/2008/11/jose-thomas-2.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Ferrari Aurea" title="jose-thomas-2" /></a>
<a href='http://josethomas.wordpress.com/2008/11/04/ferrari-aurea/jose-thomas_ferrari_aurea/' title='jose-thomas_ferrari_aurea'><img width="150" height="112" src="http://josethomas.files.wordpress.com/2008/11/jose-thomas_ferrari_aurea.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="jose-thomas_ferrari_aurea" title="jose-thomas_ferrari_aurea" /></a>
<a href='http://josethomas.wordpress.com/2008/11/04/ferrari-aurea/jose-thomas-3-2/' title='jose-thomas-3'><img width="150" height="112" src="http://josethomas.files.wordpress.com/2008/11/jose-thomas-3.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="jose-thomas-3" title="jose-thomas-3" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/josethomas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/josethomas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/josethomas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/josethomas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/josethomas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/josethomas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/josethomas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/josethomas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/josethomas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/josethomas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/josethomas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/josethomas.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/josethomas.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/josethomas.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=68&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://josethomas.wordpress.com/2008/11/04/ferrari-aurea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/110311be1a64a2c1c9ce2bc4351c0e50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jawzz</media:title>
		</media:content>
	</item>
		<item>
		<title>Keeping cars from collision</title>
		<link>http://josethomas.wordpress.com/2008/06/12/keeping-cars-from-collision/</link>
		<comments>http://josethomas.wordpress.com/2008/06/12/keeping-cars-from-collision/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 03:35:24 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Cool]]></category>

		<guid isPermaLink="false">http://josethomas.wordpress.com/?p=13</guid>
		<description><![CDATA[Every minute, on average, at least one person dies in a crash. If you read this article from start to finish, 30 or more deaths will have occurred across the globe by the time you are done. Auto accidents will also injure at least 10 million people this year, two or three million of them [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=13&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Every minute, on average, at least one person dies in a crash. If you read this article from start to finish,<br />
30 or more deaths will have occurred across the globe by the time you are done. Auto accidents<br />
will also injure at least 10 million people this year, two or three million of them seriously.</p>
<p>All told, the hospital bills, damaged property, and other costs will add up to 1–3 percent of the world’s gross domestic product, according to the Paris-based Organization for Economic Cooperation and  development. For the United States alone, the tally will amount to roughly US $200 billion. And, of course, thelosses that matter most are not even captured by these statistics,<br />
because there’s no way to put a dollar value on them.<br />
Engineers have been chipping away at these staggering numbers<br />
for a long time. Air bags and seat belts save tens of thousands<br />
of people a year. Supercomputers now let designers create<br />
car frames and bodies that protect the people inside by<br />
absorbing as much of the energy of a crash as possible. As a<br />
result, the number of fatalities per million miles of vehicle travel<br />
has decreased. But the ultimate solution, and the only one that<br />
will save far more lives, limbs, and money, is to keep cars from<br />
smashing into each other in the first place.<br />
That is exactly what engineers in the United States, Europe,<br />
and Japan are trying to do. They are applying advanced microprocessors,<br />
radars, high-speed ICs, and signal-processing chips<br />
and algorithms in R&amp;D programs that mark an about-face in the<br />
automotive industry: from safety systems that kick in after an accident<br />
occurs, attempting to minimize injury and damage, to ones<br />
that prevent collisions altogether.<br />
The first collision-avoidance features are already on the<br />
road, as pricey adaptive cruise control options on a small<br />
40 group of luxury cars. Over the next few years, these systemswill grow more capable and more widely available, until they<br />
become standard equipment on luxury vehicles. Meanwhile,<br />
researchers will be bringing the first cooperative safety systems<br />
to market. These will raise active safety technology to the next<br />
level, enabling vehicles to communicate and coordinate responses<br />
to avoid collisions. Note that to avoid liability claims in the event<br />
of collisions between cars equipped with adaptive cruise control<br />
systems, manufacturers of these systems and the car companies<br />
that use them are careful not to refer to them as safety devices.<br />
Instead, they are being marketed as driver aids, mere conveniences<br />
made possible by new technologiesFurther in the future, developments by private research groups<br />
and publicly funded entities such as the U.S. Department of<br />
Transportation’s Intelligent Transportation Systems (ITS) Joint<br />
Program Office, and Japan’s Advanced Cruise-Assist Highway<br />
System Research Association, may make driving a completely<br />
automated experience. Communication among sensors and<br />
processors embedded not only in vehicles but in roads, signs, and<br />
guard rails are expected to let cars race along practically bumper<br />
to bumper at speeds above 100 km/h while passengers snooze,<br />
read, or watch television.</p>
<p><a href="http://josethomas.files.wordpress.com/2008/10/jose-thomas-car.jpg"><img class="alignnone size-medium wp-image-16" title="jose-thomas-car" src="http://josethomas.files.wordpress.com/2008/10/jose-thomas-car.jpg?w=300&#038;h=221" alt="" width="300" height="221" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/josethomas.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/josethomas.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/josethomas.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/josethomas.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/josethomas.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/josethomas.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/josethomas.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/josethomas.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/josethomas.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/josethomas.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/josethomas.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/josethomas.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/josethomas.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/josethomas.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/josethomas.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/josethomas.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=13&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://josethomas.wordpress.com/2008/06/12/keeping-cars-from-collision/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/110311be1a64a2c1c9ce2bc4351c0e50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jawzz</media:title>
		</media:content>

		<media:content url="http://josethomas.files.wordpress.com/2008/10/jose-thomas-car.jpg?w=300" medium="image">
			<media:title type="html">jose-thomas-car</media:title>
		</media:content>
	</item>
		<item>
		<title>History of search engines</title>
		<link>http://josethomas.wordpress.com/2008/06/09/history-of-search-engines/</link>
		<comments>http://josethomas.wordpress.com/2008/06/09/history-of-search-engines/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 08:06:04 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Cool]]></category>

		<guid isPermaLink="false">http://josethomas.wordpress.com/?p=7</guid>
		<description><![CDATA[The grandfather of all search engines called Archie can be traced way back to 1990 created by Alan Emtage, a student at McGill University in Montreal. That was a time when the primary modus operandi of sharing fi les across the network was File Transfer Protocol (FTP). In this method, anyone who has to share [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=7&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The grandfather of all search engines<br />
called Archie can be traced way back to<br />
1990 created by Alan Emtage, a student at<br />
McGill University in Montreal. That was a<br />
time when the primary modus operandi<br />
of sharing fi les across the network was<br />
File Transfer Protocol (FTP). In this method,<br />
anyone who has to share a fi le would run<br />
a service called FTP server. A user requiring<br />
this fi le would connect to the PC using<br />
another program called FTP client. The<br />
availability of fi les for sharing would be<br />
divulged by posting on discussion forums<br />
or mailing lists in what could be termed as<br />
the Internet, equivalent to word of mouth.<br />
Later, anonymous FTP sites came into being<br />
allowing users to post or retrieve the fi les.<br />
Archie changed all this by combining a<br />
script-based gatherer, which would scour<br />
the FTP sites creating indexes of the fi les on<br />
its run. The regular expression matcher of it<br />
allowed the users to access its database.<br />
If Archie is called the grandfather of<br />
search engines then Veronica can rightly be<br />
called the grandmother. This search engine<br />
was developed in 1993 at the university of<br />
Nevada System Computing Services Group.<br />
It was a lot similar to Archie but worked on<br />
Gopher fi les. Gopher is a service akin to FTP<br />
but comprises plain text documents.<br />
Matthew Gray’s World Wide Web<br />
Wanderer, the mother of search engines,<br />
was the fi rst to employ the “robot” concept.<br />
A robot is essentially a software program<br />
designed to access all web pages using<br />
the links found in the web pages already<br />
accessed. Though it was fi rst designed to<br />
count the number of web servers, later it<br />
started capturing URLs as it went along<br />
creating the fi rst web database called<br />
Wandex. Mathew Gray’s wanderer fueled<br />
the development of many more robot-based<br />
search engines, many of which power<br />
today’s search engines.<br />
Types of search engin</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/josethomas.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/josethomas.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/josethomas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/josethomas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/josethomas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/josethomas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/josethomas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/josethomas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/josethomas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/josethomas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/josethomas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/josethomas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/josethomas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/josethomas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/josethomas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/josethomas.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=7&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://josethomas.wordpress.com/2008/06/09/history-of-search-engines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/110311be1a64a2c1c9ce2bc4351c0e50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jawzz</media:title>
		</media:content>
	</item>
		<item>
		<title>Page ranking</title>
		<link>http://josethomas.wordpress.com/2008/06/09/page-ranking/</link>
		<comments>http://josethomas.wordpress.com/2008/06/09/page-ranking/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 08:03:22 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Cool]]></category>

		<guid isPermaLink="false">http://josethomas.wordpress.com/?p=6</guid>
		<description><![CDATA[The success of a search engine is measured by the relevance of its search results. This fi nal job of displaying the search results in your web browser is handled by the page-ranking component of a search engine. People who dabble in search engine optimization make it their task to fi gure out ways to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=6&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The success of a search engine is measured<br />
by the relevance of its search results. This<br />
fi nal job of displaying the search results<br />
in your web browser is handled by the<br />
page-ranking component of a search<br />
engine. People who dabble in search engine<br />
optimization make it their task to fi gure<br />
out ways to program web pages so as to<br />
enable them to show up within the fi rst 10<br />
results of a search query. Hence, unraveling<br />
the secrets of the algorithms employed by<br />
the search engines can help enthusiasts<br />
create pages with the high rankings.<br />
Although the inner details of the<br />
algorithms employed by the search engines<br />
are not publicly available, the manner<br />
in which the results are displayed gives<br />
some insight into the criteria used for<br />
ranking pages. These tell-tale signs could<br />
be the title of the web page, headings,<br />
links of titles within a page, frequency and<br />
prominence of a word on a page, popularity<br />
of a link, freshness of information on that<br />
page, etc.<br />
Some users employ devious means<br />
to wrongfully create pages to appear at<br />
the higher ranks in a search query even<br />
though the page might not contain<br />
relevant information. This is known<br />
as “spamdexing”. People who practise<br />
spamdexing are called search engine<br />
spammers. There is a subtle difference<br />
between search engine optimization and<br />
spamdexing. Spamdexing is more of a<br />
crooked art aimed at misleading search<br />
engines while SEO is the art of adding<br />
quality-rich results to a search query, in<br />
such a way that the page gets listed by<br />
way of its own merit. There is a downside<br />
though to spamdexing which makes the<br />
spammers wary—if the search engine<br />
concludes that a particular page has<br />
resorted to deceitful means to enhance<br />
its ranking, the particular site can be<br />
blacklisted and not considered in the<br />
future. The golden rule is that a page gets<br />
listed only if it has original quality content.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/josethomas.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/josethomas.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/josethomas.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/josethomas.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/josethomas.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/josethomas.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/josethomas.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/josethomas.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/josethomas.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/josethomas.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/josethomas.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/josethomas.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/josethomas.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/josethomas.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/josethomas.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/josethomas.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=6&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://josethomas.wordpress.com/2008/06/09/page-ranking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/110311be1a64a2c1c9ce2bc4351c0e50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jawzz</media:title>
		</media:content>
	</item>
		<item>
		<title>Deciphering calligraphy</title>
		<link>http://josethomas.wordpress.com/2008/06/09/deciphering-calligraphy/</link>
		<comments>http://josethomas.wordpress.com/2008/06/09/deciphering-calligraphy/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 07:21:21 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Cool]]></category>

		<guid isPermaLink="false">http://josethomas.wordpress.com/?p=4</guid>
		<description><![CDATA[Analyzing handwriting or writing style have been considered an art so far. But with the advent of a calligraphy-deducing application developed by Virginia-based Gannon Technologies Group, the practice will acquire a more scientifi c approach. Gannon Technologies unveiled their technology at the annual meeting of American Association for the Advancement of Science, where they were [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=4&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Analyzing handwriting or writing style<br />
have been considered an art so far. But<br />
with the advent of a calligraphy-deducing<br />
application developed by Virginia-based<br />
Gannon Technologies Group, the practice will<br />
acquire a more scientifi c approach.<br />
Gannon Technologies unveiled their<br />
technology at the annual meeting of<br />
American Association for the Advancement<br />
of Science, where they were armed with a<br />
dozen computers and a database of 500<br />
handwriting samples, all of which were<br />
reproductions of a single paragraph titled<br />
“London Letter”. The company claims that<br />
their application can differentiate varied<br />
forms of handwriting while simultaneously<br />
matching different samples of the<br />
handwriting of the same person.</p>
<p><img src="/Users/HOME-pc/AppData/Local/Temp/moz-screenshot.jpg" alt="" /></p>
<p>Here, the key functional area is statistical<br />
analysis. From size to curvature gradation<br />
of each and every character, the instrument<br />
measures more than 200 different<br />
parameters of a letter or a digit. Currently,<br />
the group is also attributing a substantial<br />
amount in research and development to<br />
prove that the technology attains the same<br />
accuracy level as that of DNA analysis.<br />
It is felt that this technology of<br />
evaluation will assign a scientifi c precision<br />
to the forensic investigators’ or document<br />
examiners’ efforts. Presently, this discerning<br />
is solely dependent on manual skills to judge<br />
and draw a conclusion on whether a writing<br />
style presumed to be somebody’s is truly<br />
his. But the prosecutors can challenge these<br />
conclusions as they are aware about the fuzz<br />
factor and the lack of proper technology to<br />
substantiate such arguments. However,<br />
with the new technology in hand, the<br />
handwriting experts should calibrate<br />
their scale of opinions ranging from<br />
“certainty”, “highly probable”, “merely<br />
probable” and “no conclusion” to<br />
something more specifi c and fi gurative.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/josethomas.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/josethomas.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/josethomas.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/josethomas.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/josethomas.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/josethomas.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/josethomas.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/josethomas.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/josethomas.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/josethomas.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/josethomas.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/josethomas.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/josethomas.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/josethomas.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/josethomas.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/josethomas.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=4&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://josethomas.wordpress.com/2008/06/09/deciphering-calligraphy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/110311be1a64a2c1c9ce2bc4351c0e50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jawzz</media:title>
		</media:content>

		<media:content url="/Users/HOME-pc/AppData/Local/Temp/moz-screenshot.jpg" medium="image" />
	</item>
		<item>
		<title>I am JOSE</title>
		<link>http://josethomas.wordpress.com/2008/06/03/hello-world/</link>
		<comments>http://josethomas.wordpress.com/2008/06/03/hello-world/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 06:12:09 +0000</pubDate>
		<dc:creator>Jose</dc:creator>
				<category><![CDATA[Cool]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am Jose Thomas. This is my first post.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=1&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am Jose Thomas. This is my first post.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/josethomas.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/josethomas.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/josethomas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/josethomas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/josethomas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/josethomas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/josethomas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/josethomas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/josethomas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/josethomas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/josethomas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/josethomas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/josethomas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/josethomas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/josethomas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/josethomas.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=josethomas.wordpress.com&amp;blog=3884259&amp;post=1&amp;subd=josethomas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://josethomas.wordpress.com/2008/06/03/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/110311be1a64a2c1c9ce2bc4351c0e50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jawzz</media:title>
		</media:content>
	</item>
	</channel>
</rss>
