<?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>Jkx@home &#187; google</title>
	<atom:link href="http://www.larsen-b.com/tags/google/feed" rel="self" type="application/rss+xml" />
	<link>http://www.larsen-b.com</link>
	<description>Titanium Exposé</description>
	<lastBuildDate>Tue, 31 Jan 2012 23:53:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Google Index issue</title>
		<link>http://www.larsen-b.com/Article/247.html</link>
		<comments>http://www.larsen-b.com/Article/247.html#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[For a unknow reason, Google decide to drop this website from there index. Currentlty only 19 pages are know by Google. Last week, it was 59 know pages.. anyways it should be something like 260 urls.
I checked Google sitemaps, but this seems to be fine. Last check 1 hours ago&#8230; 258 urls in.
This is a [...]]]></description>
			<content:encoded><![CDATA[<p>For a unknow reason, Google decide to drop this website from there index. Currentlty only 19 pages are know by Google. Last week, it was 59 know pages.. anyways it should be something like 260 urls.</p>
<p>I checked Google sitemaps, but this seems to be fine. Last check 1 hours ago&#8230; 258 urls in.</p>
<p>This is a really bad news, since I take me a long time to achieve the 6 level page rank, and at this level I will fall around 3 for the next Google Dance.</p>
<p>Bye bye ..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.larsen-b.com/Article/247.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I found the secret behind the Guido job at Google</title>
		<link>http://www.larsen-b.com/Article/246.html</link>
		<comments>http://www.larsen-b.com/Article/246.html#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This is a bit funny, but all is on the GoogleMasterPlan . As you can see  to hire Guido, they decided to send spam. Hum, really happy to find Python on this stuff :)
]]></description>
			<content:encoded><![CDATA[<p>This is a bit funny, but all is on the <a class="reference" href="http://picasaweb.google.com/cdibona/RIPGoogleMasterPlan/photo#4979945846336323602">GoogleMasterPlan</a> . As you can see  to hire Guido, they decided to send spam. Hum, really happy to find Python on this stuff :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.larsen-b.com/Article/246.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto to Talk with GoogleTalk in Python</title>
		<link>http://www.larsen-b.com/Article/214.html</link>
		<comments>http://www.larsen-b.com/Article/214.html#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[jabber]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[xmpp]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I guess everybody know GoogleTalk right now. Linux users like me knows that it &#8217;s only a Jabber server with SIP extension. Like a lot of people seems to use this, I decided to switch from MSN(suxTm) to this Jabber server, beside it lacks a lot of Jabber features (like offline messaging )
But, how can [...]]]></description>
			<content:encoded><![CDATA[<p>I guess everybody know GoogleTalk right now. Linux users like me knows that it &#8217;s only a <a class="reference" href="http://www.jabber.org">Jabber</a> server with SIP extension. Like a lot of people seems to use this, I decided to switch from MSN(suxTm) to this Jabber server, beside it lacks a lot of Jabber features (like offline messaging )</p>
<p>But, how can I send a message to my Gmail Talk in less 10 lines of code. I decided to look at <a class="reference" href="http://xmpppy.sourceforge.net/">xmpppy</a> .. Ok I get a strange issue w/ secure login ..</p>
<p>As I already use <a class="reference" href="http://gajim.org/">gajim</a>, I decided to look at this code.. Hum, look strange it has the same xmpp module, with the same API, but this one is working.</p>
<pre class="literal-block">import xmpp

login = 'Your.Login' # @gmail.com
pwd   = 'YourPassword'

cnx = xmpp.Client('gmail.com')
cnx.connect( server=('talk.google.com',5223) )

cnx.auth(login,pwd, 'botty')

cnx.send( xmpp.Message( "YourFriend@gmail.com" ,"Hello World form Python" ) )</pre>
<p>As you can see this is small and simple :) The only issue is to find the right module, and hope the <a class="reference" href="http://xmpppy.sourceforge.net/">xmpppy</a> will fix that soon.</p>
<p>(In fact <a class="reference" href="http://gajim.org/">gajim</a> team seems to fork the xmpp code due to lack of support. This bug already exists in the <a class="reference" href="http://xmpppy.sourceforge.net/">xmpppy</a> bug list )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.larsen-b.com/Article/214.html/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Who want some ? (Gmail Account)</title>
		<link>http://www.larsen-b.com/Article/165.html</link>
		<comments>http://www.larsen-b.com/Article/165.html#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hey Baby .. Do you want some ? (this come from the Duke Nuke3D game..) Anyway I get 4 Gmail account to give. So the first 4 posts here will receive one.
(I&#8217;m busy right now. So don&#8217;t expect this quickly) ..
]]></description>
			<content:encoded><![CDATA[<p>Hey Baby .. Do you want some ? (this come from the Duke Nuke3D game..) Anyway I get 4 Gmail account to give. So the first 4 posts here will receive one.</p>
<p>(I&#8217;m busy right now. So don&#8217;t expect this quickly) ..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.larsen-b.com/Article/165.html/feed</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>Googling</title>
		<link>http://www.larsen-b.com/Article/92.html</link>
		<comments>http://www.larsen-b.com/Article/92.html#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Designing search engine friendly PHP pages: Even if this is for PHP, this should usefull for other langage. I don&#8217;t really like the way some blog hack google by adding some keywords in url, that aren&#8217;t usefull but that google like. This is a wrong way to solve the problem. ..
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stargeek.com/php-seo.php">Designing search engine friendly PHP pages</a>: Even if this is for PHP, this should usefull for other langage. I don&#8217;t really like the way some blog hack google by adding some keywords in url, that aren&#8217;t usefull but that google like. This is a wrong way to solve the problem. ..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.larsen-b.com/Article/92.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
