<?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>Not My Idea -- Snippets</title>
	<atom:link href="http://snippets.notmyidea.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://snippets.notmyidea.org</link>
	<description>Some code snippets about Linux / Php and Python</description>
	<lastBuildDate>Tue, 22 Dec 2009 13:06:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using bpython with django &#8211; another way</title>
		<link>http://snippets.notmyidea.org/2009/12/22/using-bpython-with-django/</link>
		<comments>http://snippets.notmyidea.org/2009/12/22/using-bpython-with-django/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 13:01:08 +0000</pubDate>
		<dc:creator>Alexis Métaireau</dc:creator>
				<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://snippets.notmyidea.org/?p=49</guid>
		<description><![CDATA[Lakshman wrotes up a nice article introducing bpython, and gives some tips to integrate it with django.
Unfortunatly, the tip laksman proposed can&#8217;t use additional parameters. Here is another way to use bpython, with django. It makes somes changes into the files of the framework (that some people &#8212; myself included &#8212; calls an ugly hack, [...]]]></description>
			<content:encoded><![CDATA[<p>Lakshman wrotes up <a href="http://uswaretech.com/blog/2009/12/using-bpython-shell-with-django-and-some-ipython-features-you-should-know/">a nice article introducing bpython</a>, and gives some tips to integrate it with django.</p>
<p>Unfortunatly, the tip laksman proposed can&#8217;t use additional parameters. Here is another way to use bpython, with django. It makes somes changes into the files of the framework (that some people &#8212; myself included &#8212; calls an <em>ugly hack</em>, but, it works the right way).</p>
<p> To run django shell with bpython, just enter</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">django shell --bpython</div></div>
<p>And you&#8217;re done.</p>
<p>Here is the patch:</p>
<div class="codecolorer-container diff vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:500px;"><div class="diff codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Index: shell.py<br />
===================================================================<br />
<span style="color: #888822;">--- shell.py&nbsp; &nbsp; <span style="">&#40;</span>révision <span style="">11821</span><span style="">&#41;</span></span><br />
<span style="color: #888822;">+++ shell.py&nbsp; &nbsp; <span style="">&#40;</span>copie de travail<span style="">&#41;</span></span><br />
<span style="color: #440088;">@@ -<span style="">6</span>,<span style="">8</span> +<span style="">6</span>,<span style="">12</span> @@</span><br />
&nbsp; &nbsp; &nbsp;option_list = NoArgsCommand.option_list + <span style="">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;make_option<span style="">&#40;</span>'--plain', action='store_true', dest='plain',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;help='Tells Django to use plain Python, not IPython.'<span style="">&#41;</span>,<br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp;make_option<span style="">&#40;</span>'--bpython', action='store_true', dest='bpython',</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;help='Tells Django to use the bpython interpreter, not IPython.'<span style="">&#41;</span>, &nbsp; &nbsp;</span><br />
&nbsp; &nbsp; &nbsp;<span style="">&#41;</span><br />
<span style="color: #991111;">- &nbsp; &nbsp;help = &quot;Runs a Python interactive interpreter. Tries to use IPython, if it's available.&quot;</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp;help = &quot;&quot;&quot;Runs a Python interactive interpreter. Tries to use IPython, if </span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp;it's available. Can use bpython with the --bpython option</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp;&quot;&quot;&quot;</span><br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp;requires_model_validation = False<br />
&nbsp;<br />
<span style="color: #440088;">@@ -<span style="">18</span>,<span style="">16</span> +<span style="">22</span>,<span style="">22</span> @@</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;loaded_models = get_models<span style="">&#40;</span><span style="">&#41;</span><br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;use_plain = options.get<span style="">&#40;</span>'plain', False<span style="">&#41;</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp;use_bpython = options.get<span style="">&#40;</span>'bpython', False<span style="">&#41;</span></span><br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;try:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if use_plain:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# Don't bother loading IPython, because the user wants plain Python.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;raise ImportError<br />
<span style="color: #991111;">- &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;import IPython</span><br />
<span style="color: #991111;">- &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# Explicitly pass an empty list as arguments, because otherwise IPython</span><br />
<span style="color: #991111;">- &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# would use sys.argv from this script.</span><br />
<span style="color: #991111;">- &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;shell = IPython.Shell.IPShell<span style="">&#40;</span>argv=<span style="">&#91;</span><span style="">&#93;</span><span style="">&#41;</span></span><br />
<span style="color: #991111;">- &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;shell.mainloop<span style="">&#40;</span><span style="">&#41;</span></span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;elif use_bpython:</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# The user wants bpython</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;from bpython.cli import main</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;main<span style="">&#40;</span>args=<span style="">&#91;</span><span style="">&#93;</span><span style="">&#41;</span></span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else:</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;import IPython</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# Explicitly pass an empty list as arguments, because otherwise IPython</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# would use sys.argv from this script.</span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;shell = IPython.Shell.IPShell<span style="">&#40;</span>argv=<span style="">&#91;</span><span style="">&#93;</span><span style="">&#41;</span></span><br />
<span style="color: #00b000;">+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;shell.mainloop<span style="">&#40;</span><span style="">&#41;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;except ImportError:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;import code<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# Set up a dictionary to serve as the environment for the shell, so</div></div>
<p>And the entire file (for django 1.1.1 and trunk):</p>
<div class="codecolorer-container python vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:500px;"><div class="python codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">os</span><br />
<span style="color: #ff7700;font-weight:bold;">from</span> django.<span style="color: black;">core</span>.<span style="color: black;">management</span>.<span style="color: black;">base</span> <span style="color: #ff7700;font-weight:bold;">import</span> NoArgsCommand<br />
<span style="color: #ff7700;font-weight:bold;">from</span> <span style="color: #dc143c;">optparse</span> <span style="color: #ff7700;font-weight:bold;">import</span> make_option<br />
<br />
<span style="color: #ff7700;font-weight:bold;">class</span> Command<span style="color: black;">&#40;</span>NoArgsCommand<span style="color: black;">&#41;</span>:<br />
&nbsp; &nbsp; option_list = NoArgsCommand.<span style="color: black;">option_list</span> + <span style="color: black;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; make_option<span style="color: black;">&#40;</span><span style="color: #483d8b;">'--plain'</span>, action=<span style="color: #483d8b;">'store_true'</span>, dest=<span style="color: #483d8b;">'plain'</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">help</span>=<span style="color: #483d8b;">'Tells Django to use plain Python, not IPython.'</span><span style="color: black;">&#41;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; make_option<span style="color: black;">&#40;</span><span style="color: #483d8b;">'--bpython'</span>, action=<span style="color: #483d8b;">'store_true'</span>, dest=<span style="color: #483d8b;">'bpython'</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">help</span>=<span style="color: #483d8b;">'Tells Django to use the bpython interpreter, not IPython.'</span><span style="color: black;">&#41;</span>, &nbsp; &nbsp;<br />
&nbsp; &nbsp; <span style="color: black;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #008000;">help</span> = <span style="color: #483d8b;">&quot;&quot;&quot;Runs a Python interactive interpreter. Tries to use IPython, if <br />
&nbsp; &nbsp; it's available. Can use bpython with the --bpython option<br />
&nbsp; &nbsp; &quot;&quot;&quot;</span><br />
<br />
&nbsp; &nbsp; requires_model_validation = <span style="color: #008000;">False</span><br />
<br />
&nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">def</span> handle_noargs<span style="color: black;">&#40;</span><span style="color: #008000;">self</span>, <span style="color: #66cc66;">**</span>options<span style="color: black;">&#41;</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># XXX: (Temporary) workaround for ticket #1796: force early loading of all</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># models from installed apps.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">from</span> django.<span style="color: black;">db</span>.<span style="color: black;">models</span>.<span style="color: black;">loading</span> <span style="color: #ff7700;font-weight:bold;">import</span> get_models<br />
&nbsp; &nbsp; &nbsp; &nbsp; loaded_models = get_models<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; use_plain = options.<span style="color: black;">get</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'plain'</span>, <span style="color: #008000;">False</span><span style="color: black;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; use_bpython = options.<span style="color: black;">get</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'bpython'</span>, <span style="color: #008000;">False</span><span style="color: black;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">try</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">if</span> use_plain:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># Don't bother loading IPython, because the user wants plain Python.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">raise</span> <span style="color: #008000;">ImportError</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">elif</span> use_bpython:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># The user wants bpython</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">from</span> bpython.<span style="color: black;">cli</span> <span style="color: #ff7700;font-weight:bold;">import</span> main<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; main<span style="color: black;">&#40;</span>args=<span style="color: black;">&#91;</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">else</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">import</span> IPython<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># Explicitly pass an empty list as arguments, because otherwise IPython</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># would use sys.argv from this script.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; shell = IPython.<span style="color: black;">Shell</span>.<span style="color: black;">IPShell</span><span style="color: black;">&#40;</span>argv=<span style="color: black;">&#91;</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; shell.<span style="color: black;">mainloop</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">except</span> <span style="color: #008000;">ImportError</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">code</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># Set up a dictionary to serve as the environment for the shell, so</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># that tab completion works on objects that are imported at runtime.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># See ticket 5082.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; imported_objects = <span style="color: black;">&#123;</span><span style="color: black;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">try</span>: <span style="color: #808080; font-style: italic;"># Try activating rlcompleter, because it's handy.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">readline</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">except</span> <span style="color: #008000;">ImportError</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">pass</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">else</span>:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># We don't have to wrap the following import in a 'try', because</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># we already know 'readline' was imported successfully.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">rlcompleter</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #dc143c;">readline</span>.<span style="color: black;">set_completer</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">rlcompleter</span>.<span style="color: black;">Completer</span><span style="color: black;">&#40;</span>imported_objects<span style="color: black;">&#41;</span>.<span style="color: black;">complete</span><span style="color: black;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #dc143c;">readline</span>.<span style="color: black;">parse_and_bind</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;tab:complete&quot;</span><span style="color: black;">&#41;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># We want to honor both $PYTHONSTARTUP and .pythonrc.py, so follow system</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># conventions and get $PYTHONSTARTUP first then import user.</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">if</span> <span style="color: #ff7700;font-weight:bold;">not</span> use_plain: <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; pythonrc = <span style="color: #dc143c;">os</span>.<span style="color: black;">environ</span>.<span style="color: black;">get</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;PYTHONSTARTUP&quot;</span><span style="color: black;">&#41;</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">if</span> pythonrc <span style="color: #ff7700;font-weight:bold;">and</span> <span style="color: #dc143c;">os</span>.<span style="color: black;">path</span>.<span style="color: black;">isfile</span><span style="color: black;">&#40;</span>pythonrc<span style="color: black;">&#41;</span>: <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">try</span>: <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">execfile</span><span style="color: black;">&#40;</span>pythonrc<span style="color: black;">&#41;</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">except</span> <span style="color: #008000;">NameError</span>: <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">pass</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;"># This will import .pythonrc.py as a side-effect</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">user</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #dc143c;">code</span>.<span style="color: black;">interact</span><span style="color: black;">&#40;</span>local=imported_objects<span style="color: black;">&#41;</span></div></div>
<p>Hope it helps</p>
]]></content:encoded>
			<wfw:commentRss>http://snippets.notmyidea.org/2009/12/22/using-bpython-with-django/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install PHP 5.3 + Apache on ubuntu 9.10 using dotdeb repositories, via apt-get</title>
		<link>http://snippets.notmyidea.org/2009/12/13/install-php-5-3-apache-on-ubuntu-9-10-using-dotdeb-repositories-via-apt-get/</link>
		<comments>http://snippets.notmyidea.org/2009/12/13/install-php-5-3-apache-on-ubuntu-9-10-using-dotdeb-repositories-via-apt-get/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 14:42:56 +0000</pubDate>
		<dc:creator>Alexis Métaireau</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[php53]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://snippets.notmyidea.org/?p=44</guid>
		<description><![CDATA[PHP 5.3 isn&#8217;t proposed by default within the default ubuntu 9.10 repositories.
Here are the steps needed to quickly install Apache + PHP 5.3 in an ubuntu linux environment.
All in two command lines  
Just copy the two line above to get php 5.3 working  
sudo su
cd /tmp &#38;&#38; mkdir php53 &#38;&#38; cd php53 &#38;&#38; [...]]]></description>
			<content:encoded><![CDATA[<p>PHP 5.3 isn&#8217;t proposed by default within the default ubuntu 9.10 repositories.</p>
<p>Here are the steps needed to quickly install Apache + PHP 5.3 in an ubuntu linux environment.</p>
<h3>All in two command lines <img src='http://snippets.notmyidea.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </h3>
<p>Just copy the two line above to get php 5.3 working <img src='http://snippets.notmyidea.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">sudo su<br />
cd /tmp &amp;&amp; mkdir php53 &amp;&amp; cd php53 &amp;&amp; wget http://us.archive.ubuntu.com/ubuntu/pool/main/k/krb5/libkrb53_1.6.dfsg.4~beta1-5ubuntu2_i386.deb &amp;&amp; wget http://us.archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu38_3.8-6ubuntu0.2_i386.deb &amp;&amp; dpkg -i *.deb &amp;&amp; echo &quot;deb http://php53.dotdeb.org stable all&quot; &gt;&gt; /etc/apt/sources.list &amp;&amp; aptitude update &amp;&amp; aptitude install libapache2-mod-php5=5.3.1 apache2</div></div>
<h3>Details</h3>
<p>First, download dependencies, and install them.</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">su</span><br />
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<br />
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> php53 <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">cd</span> php53<br />
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>us.archive.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span>pool<span style="color: #000000; font-weight: bold;">/</span>main<span style="color: #000000; font-weight: bold;">/</span>k<span style="color: #000000; font-weight: bold;">/</span>krb5<span style="color: #000000; font-weight: bold;">/</span>libkrb53_1.6.dfsg.4~beta1-5ubuntu2_i386.deb<br />
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>us.archive.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span>pool<span style="color: #000000; font-weight: bold;">/</span>main<span style="color: #000000; font-weight: bold;">/</span>i<span style="color: #000000; font-weight: bold;">/</span>icu<span style="color: #000000; font-weight: bold;">/</span>libicu38_3.8-6ubuntu0.2_i386.deb<br />
<span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> <span style="color: #000000; font-weight: bold;">*</span>.deb</div></div>
<p>Add the dotdeb repository to our apt sources.list:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;deb http://php53.dotdeb.org stable all&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>sources.list<br />
<span style="color: #c20cb9; font-weight: bold;">aptitude</span> update</div></div>
<p>Install apache +  PHP5.3 !</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">aptitude install libapache2-mod-php5=5.3.1 apache2</div></div>
<p>And that&#8217;s it !<br />
<img src="http://snippets.notmyidea.org/wp-content/uploads/2009/12/php53.png" alt="php53" title="php53" width="300" height="278" class="alignnone size-full wp-image-46" /></p>
]]></content:encoded>
			<wfw:commentRss>http://snippets.notmyidea.org/2009/12/13/install-php-5-3-apache-on-ubuntu-9-10-using-dotdeb-repositories-via-apt-get/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Use CLI to traduct you sentencies !</title>
		<link>http://snippets.notmyidea.org/2009/10/06/use-cli-to-traduct-you-sentencies/</link>
		<comments>http://snippets.notmyidea.org/2009/10/06/use-cli-to-traduct-you-sentencies/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 12:28:43 +0000</pubDate>
		<dc:creator>Alexis Métaireau</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://snippets.notmyidea.org/?p=36</guid>
		<description><![CDATA[In a tweet, I was asking if any tools exists to traduct sentencies directly from the command line. And &#171;&#160;tw&#160;&#187; (for translate word) is one ! (thanks @gabouel)
Install and use it :
cd /tmp
sudo apt-get install elinks curl gawk
wget http://mirror.cinquix.com/pub/savannah/twandgtw/tw-0.1.3.tar.bz2
tar -xvf tw-0.1.3.tar.bz2
cd tw-0.1.3
./configure
sudo make &#38;&#38; sudo make install
Now, you can translate directly from the command line [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://twitter.com/ametaireau/status/4653420401">a tweet</a>, I was asking if any tools exists to traduct sentencies directly from the command line. And &laquo;&nbsp;tw&nbsp;&raquo; (for translate word) is one ! (thanks <a href="http://twitter.com/gabouel">@gabouel</a>)</p>
<p>Install and use it :</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> elinks curl <span style="color: #c20cb9; font-weight: bold;">gawk</span><br />
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>mirror.cinquix.com<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>savannah<span style="color: #000000; font-weight: bold;">/</span>twandgtw<span style="color: #000000; font-weight: bold;">/</span>tw-0.1.3.tar.bz2<br />
<span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xvf</span> tw-0.1.3.tar.bz2<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> tw-0.1.3<br />
.<span style="color: #000000; font-weight: bold;">/</span>configure<br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<p>Now, you can translate directly from the command line :</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ tw translate.google.com.fr-en &quot;Salut, je m'apelle Alexis&quot;<br />
Hi, my name is Alexis</div></div>
<p>Yeah !</p>
]]></content:encoded>
			<wfw:commentRss>http://snippets.notmyidea.org/2009/10/06/use-cli-to-traduct-you-sentencies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My vimrc profile</title>
		<link>http://snippets.notmyidea.org/2009/10/04/my-vimrc-profile/</link>
		<comments>http://snippets.notmyidea.org/2009/10/04/my-vimrc-profile/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 15:52:42 +0000</pubDate>
		<dc:creator>Alexis Métaireau</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://snippets.notmyidea.org/2009/10/04/my-vimrc-profile/</guid>
		<description><![CDATA[For some weeks, I&#8217;m now using vim to code, and to redact articles and documentation.

You can check out my currently used .vimrc, and follow it&#8217;s modifications on it&#8217;s hg repository.
]]></description>
			<content:encoded><![CDATA[<p>For some weeks, I&#8217;m now using vim to code, and to redact articles and documentation.</p>
<p>
You can check out my currently used .vimrc, and follow it&#8217;s modifications on <a href="http://bitbucket.org/ametaireau/dotfiles/src/tip/.vimrc">it&#8217;s hg repositor</a>y.</p>
]]></content:encoded>
			<wfw:commentRss>http://snippets.notmyidea.org/2009/10/04/my-vimrc-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove all .svn folders recursively ?</title>
		<link>http://snippets.notmyidea.org/2009/09/23/how-to-remove-all-svn-folders-recursively/</link>
		<comments>http://snippets.notmyidea.org/2009/09/23/how-to-remove-all-svn-folders-recursively/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 12:05:02 +0000</pubDate>
		<dc:creator>Alexis Métaireau</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[VCS]]></category>

		<guid isPermaLink="false">http://snippets.notmyidea.org/?p=33</guid>
		<description><![CDATA[SVN is really out of date (if you can, try mercurial or any other DVCS, please!), but if you have to use svn, you&#8217;ll probably encountred the .svn folder. It sticks in every folder of your arborescence.
Here is a tip to remove all theses .svn folders, hope this useful !
find . -name &#34;.svn&#34; -exec rm [...]]]></description>
			<content:encoded><![CDATA[<p>SVN is really out of date (if you can, try <a href="http://hg-scm.org/">mercurial</a> or any other DVCS, please!), but if you have to use svn, you&#8217;ll probably encountred the .svn folder. It sticks in every folder of your arborescence.</p>
<p>Here is a tip to remove all theses .svn folders, hope this useful !</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-name</span> <span style="color: #ff0000;">&quot;.svn&quot;</span> <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> \;</div></div>
]]></content:encoded>
			<wfw:commentRss>http://snippets.notmyidea.org/2009/09/23/how-to-remove-all-svn-folders-recursively/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What do I read ? (RSS Feeds)</title>
		<link>http://snippets.notmyidea.org/2009/07/30/what-do-i-read-rss-feeds/</link>
		<comments>http://snippets.notmyidea.org/2009/07/30/what-do-i-read-rss-feeds/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 17:05:19 +0000</pubDate>
		<dc:creator>Alexis Métaireau</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[OPML]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://snippets.notmyidea.org/2009/07/30/what-do-i-read-rss-feeds/</guid>
		<description><![CDATA[&#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#62;
&#60;opml version=&#34;1.0&#34;&#62;
&#160; &#160; &#60;head&#62;
&#160; &#160; &#160; &#160; &#60;title&#62;Alexis Metaireau subscriptions in Google Reader&#60;/title&#62;
&#160; &#160; &#60;/head&#62;
&#160; &#160; &#60;body&#62;
&#160; &#160; &#160; &#160; &#60;outline text=&#34;Clément Delafargue // Divarvel&#34;
 &#160; &#160; &#160; &#160; &#160; &#160;title=&#34;Clément Delafargue // Divarvel&#34; type=&#34;rss&#34;
 &#160; &#160; &#160; &#160; &#160; &#160;xmlUrl=&#34;http://www.divarvel.fr/rss/&#34; htmlUrl=&#34;http://www.divarvel.fr&#34;/&#62;
&#160; &#160; &#160; &#160; &#60;outline text=&#34;DLFP - Dépêches de page principale&#34;
 &#160; [...]]]></description>
			<content:encoded><![CDATA[<p><div class="codecolorer-container xml vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:500px;"><div class="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;opml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;head<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Alexis Metaireau subscriptions in Google Reader<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/head<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;body<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Clément Delafargue // Divarvel&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Clément Delafargue // Divarvel&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.divarvel.fr/rss/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.divarvel.fr&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;DLFP - Dépêches de page principale&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;DLFP - Dépêches de page principale&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://linuxfr.org/backend/news-homepage/rss20.rss&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://linuxfr.org/news/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;patterns&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;patterns&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Not My Idea&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Not My Idea&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.notmyidea.org/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.notmyidea.org&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;others&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;others&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;David Kulak&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;David Kulak&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.davidkulak.com/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.davidkulak.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Geekscottes&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Geekscottes&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.nojhan.net/geekscottes/rss.php&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.nojhan.net/geekscottes/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Le webcomic&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Le webcomic&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.maliki.com/rss.xml&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.maliki.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;.Net&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;.Net&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Blog de Julien Dollon&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Blog de Julien Dollon&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blogs.dotnet-france.com/juliend/syndication.axd?format=rss&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blogs.dotnet-france.com/juliend/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;CodeBetter.Com - Stuff you need to Code Better!&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;CodeBetter.Com - Stuff you need to Code Better!&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds2.feedburner.com/codebetter&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://codebetter.com/blogs/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;CodeUtopia&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;CodeUtopia&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://codeutopia.net/blog/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://codeutopia.net/blog&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;DotNetGuru.org&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;DotNetGuru.org&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dotnetguru.org/backend.php&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dotnetguru.org/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Elegant Code&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Elegant Code&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds2.feedburner.com/ElegantCode&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://elegantcode.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;InfoQ Personalized Feed for Unregistered User - Register to upgrade!&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;InfoQ Personalized Feed for Unregistered User - Register to upgrade!&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.infoq.com/rss/rss.action?token=Nd6yHNyrOmvDlyRNG3qlT51jtA2IDoTG&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.infoq.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Le blog de L'ami Sami&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Le blog de L'ami Sami&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dng-consulting.com/blogs/index.php?blog=1&amp;amp;tempskin=_rss2&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dng-consulting.com/blogs/index.php?blog=1&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Radenko Zec Blog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Radenko Zec Blog&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds2.feedburner.com/RadenkoZecBlog&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.developers.ba/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Sebastien.warin.fr&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Sebastien.warin.fr&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/sebastienwarin&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://sebastien.warin.fr&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Thomas Lebrun&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Thomas Lebrun&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blogs.developpeur.org/tom/rss.aspx&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blogs.developpeur.org/tom/default.aspx&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Valtech Blog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Valtech Blog&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.valtech.fr/wordpress/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.valtech.fr/wordpress&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;django&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;django&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Biologeek : Ubuntu, bio-informatique et geekeries libres d'un bio-informaticien au quotidien.&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Biologeek : Ubuntu, bio-informatique et geekeries libres d'un bio-informaticien au quotidien.&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.biologeek.com/journal/rss.php&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.biologeek.com/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Creaone.fr - Ingenieur multimedia IMAC&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Creaone.fr - Ingenieur multimedia IMAC&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span> <span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.creaone.fr/feed/atom&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.creaone.fr/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Makina-Corpus.Org&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Makina-Corpus.Org&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span> <span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.makina-corpus.org/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.makina-corpus.org&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;The Django community aggregator&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;The Django community aggregator&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.djangoproject.com/rss/community/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.djangoproject.com/community/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;The Django weblog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;The Django weblog&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.djangoproject.com/rss/weblog/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.djangoproject.com/weblog/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;web&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;web&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;eclaireur.net&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;eclaireur.net&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/eclaireur&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.eclaireur.net&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;XHTML.net&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;XHTML.net&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://xhtml.net/rss.php&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://xhtml.net/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Zend&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Zend&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;BigOrNot [fr]&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;BigOrNot [fr]&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://bigornot-fr.blogspot.com/feeds/posts/default?alt=rss&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://bigornot-fr.blogspot.com/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Julien Pauli DevPHP blog&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Julien Pauli DevPHP blog&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.developpez.com/xmlsrv/rss2.php?blog=126&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.developpez.com/julienpauli/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Zend Developer Zone&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Zend Developer Zone&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/ZendDeveloperZone&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://devzone.zend.com/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;世界人のBlog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;世界人のBlog&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://sekaijin.ovh.org/?feed=rss2&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://sekaijin.ovh.org&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;javaScript&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;javaScript&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Clever Marks&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Clever Marks&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.clever-age.com/Clever-Age-Marks&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.clever-age.com/veille/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;jQuery Blog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;jQuery Blog&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/jquery/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.jquery.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Concerts&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Concerts&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;digitick.com : En Tournee&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;digitick.com : En Tournee&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.digitick.com/rss/flux/enTournee.xml&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.digitick.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;linux&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;linux&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Dotdeb&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Dotdeb&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dotdeb.org/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dotdeb.org&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;GNOME Do Announcements&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;GNOME Do Announcements&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.launchpad.net/do/announcements.atom&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;https://launchpad.net/do/+announcements&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Makina-Corpus.Org&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Makina-Corpus.Org&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span> <span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.makina-corpus.org/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.makina-corpus.org&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Planet Ubuntu Francophone&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Planet Ubuntu Francophone&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://planet.ubuntu-fr.org/feed/rss2&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://planet.ubuntu-fr.org/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Thomas.enix.org&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Thomas.enix.org&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span> <span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://thomas.enix.org/rss&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://thomas.enix.org&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Java&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Java&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Latest headlines from JavaWorld&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Latest headlines from JavaWorld&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.javaworld.com/index.xml&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.javaworld.com/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Le blog de L'ami Sami&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Le blog de L'ami Sami&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dng-consulting.com/blogs/index.php?blog=1&amp;amp;tempskin=_rss2&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dng-consulting.com/blogs/index.php?blog=1&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Valtech Blog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Valtech Blog&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.valtech.fr/wordpress/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.valtech.fr/wordpress&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Symfony&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Symfony&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Blog de Jérémy Barthe, développeur Web&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Blog de Jérémy Barthe, développeur Web&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds2.feedburner.com/jeremy-barthe&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://jeremybarthe.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Clever Marks&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Clever Marks&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.clever-age.com/Clever-Age-Marks&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.clever-age.com/veille/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Damien ALEXANDRE&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Damien ALEXANDRE&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.damienalexandre.fr/index.php?feed/rss2&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.damienalexandre.fr/index.php?&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Fabien Potencier&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Fabien Potencier&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.fabien.potencier.org/aidedecamp&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://fabien.potencier.org/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Prendre un Café&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Prendre un Café&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/prendreuncafe&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://prendreuncafe.com/blog/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;symfony Project Blog&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;symfony Project Blog&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/symfony/blog&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.symfony-project.org/blog/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;php&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;php&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;BastNic's blog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;BastNic's blog&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span> <span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/bastnic&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.bastnic.info/index.php/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Ben Ramsey&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Ben Ramsey&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://benramsey.com/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://benramsey.com/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;BigOrNot [fr]&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;BigOrNot [fr]&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://bigornot-fr.blogspot.com/feeds/posts/default?alt=rss&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://bigornot-fr.blogspot.com/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Clever Marks&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Clever Marks&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.clever-age.com/Clever-Age-Marks&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.clever-age.com/veille/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Cyruss Blog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Cyruss Blog&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://cyruss.com/blog/rss.php&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://cyruss.com/blog/index.php&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Damien ALEXANDRE&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Damien ALEXANDRE&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.damienalexandre.fr/index.php?feed/rss2&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.damienalexandre.fr/index.php?&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Fabien Potencier&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Fabien Potencier&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.fabien.potencier.org/aidedecamp&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://fabien.potencier.org/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;jansch.nl&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;jansch.nl&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/ijansch&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.jansch.nl&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Julien Pauli DevPHP blog&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Julien Pauli DevPHP blog&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.developpez.com/xmlsrv/rss2.php?blog=126&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.developpez.com/julienpauli/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;jy[B]log&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;jy[B]log&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://ljouanneau.com/dotclear/rss.php&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://ljouanneau.com/blog/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Karl Katzke&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Karl Katzke&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/KarlKatzke&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.karlkatzke.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Not My Idea&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Not My Idea&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.notmyidea.org/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.notmyidea.org&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Pascal MARTIN (n+1).zéro&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Pascal MARTIN (n+1).zéro&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.pascal-martin.fr/feed/atom&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.pascal-martin.fr/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;PHP in Action&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;PHP in Action&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.reiersol.com/blog/rss.php?blogId=1&amp;amp;profile=rss20&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.agilephp.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;PHP::Impact ( [str blog] )&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;PHP::Impact ( [str blog] )&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://phpimpact.wordpress.com/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.fedecarg.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;PHPPRO&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;PHPPRO&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.phppro.fr/?feed/atom&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.phppro.fr/?&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Prendre un Café&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Prendre un Café&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/prendreuncafe&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://prendreuncafe.com/blog/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;SitePoint Blogs » PHP&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;SitePoint Blogs » PHP&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.pheedo.com/sitepoint_blogs_category_php_feed&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.sitepoint.com/blogs&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;XHTML.net&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;XHTML.net&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://xhtml.net/rss.php&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://xhtml.net/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Zend Developer Zone&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Zend Developer Zone&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/ZendDeveloperZone&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://devzone.zend.com/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;世界人のBlog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;世界人のBlog&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://sekaijin.ovh.org/?feed=rss2&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://sekaijin.ovh.org&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Python&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Python&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Biologeek : Ubuntu, bio-informatique et geekeries libres d'un bio-informaticien au quotidien.&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Biologeek : Ubuntu, bio-informatique et geekeries libres d'un bio-informaticien au quotidien.&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.biologeek.com/journal/rss.php&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.biologeek.com/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Makina Corpus&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Makina Corpus&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span> <span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.makina-corpus.com/rss.xml&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.makina-corpus.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Makina-Corpus.Org&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Makina-Corpus.Org&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span> <span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.makina-corpus.org/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.makina-corpus.org&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;School&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;School&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;SUPINFO Information Systems&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;SUPINFO Information Systems&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://sis.supinfo.com/feed/atom/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://sis.supinfo.com/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Potes&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Potes&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;David Kulak&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;David Kulak&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.davidkulak.com/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.davidkulak.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/body<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/opml<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://snippets.notmyidea.org/2009/07/30/what-do-i-read-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Scribe log server with PHP.</title>
		<link>http://snippets.notmyidea.org/2009/07/30/using-scribe-log-server-with-php/</link>
		<comments>http://snippets.notmyidea.org/2009/07/30/using-scribe-log-server-with-php/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 14:18:56 +0000</pubDate>
		<dc:creator>Alexis Métaireau</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[scribe]]></category>

		<guid isPermaLink="false">http://snippets.notmyidea.org/?p=23</guid>
		<description><![CDATA[In a previous post, I was talking about howto install Scribe on a debian system.
Now, let&#8217;s talk about howto launch the server properly, and how to use it&#8217;s functionalities with PHP:
Starting Scribe
I&#8217;ve created the /usr/local/scribe/scribe.conf file, with this default content (it will configure scribe to listen port 1463 and write logs to /tmp/scribetest
port=1463
max_msg_per_second=2000000
check_interval=3

# DEFAULT
&#60;store&#62;
category=default
type=buffer

target_write_size=20480
max_write_interval=1
buffer_send_rate=2
retry_interval=30
retry_interval_range=10

&#60;primary&#62;
type=file
fs_type=std
file_path=/tmp/scribetest
base_filename=thisisoverwritten
max_size=1000000
add_newlines=1
&#60;/primary&#62;

&#60;secondary&#62;
type=file
fs_type=std
file_path=/tmp
base_filename=thisisoverwritten
max_size=3000000
&#60;/secondary&#62;
&#60;/store&#62;
Now, start [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://snippets.notmyidea.org/2009/07/29/howto-install-scribe-the-facebook-log-system-on-debian/">In a previous post</a>, I was talking about howto install Scribe on a debian system.<br />
Now, let&#8217;s talk about howto launch the server properly, and how to use it&#8217;s functionalities with PHP:</p>
<h2>Starting Scribe</h2>
<p>I&#8217;ve created the <tt>/usr/local/scribe/scribe.conf</tt> file, with this default content (it will configure scribe to listen port <tt>1463</tt> and write logs to <tt>/tmp/scribetest</tt></p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:500px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">port=1463<br />
max_msg_per_second=2000000<br />
check_interval=3<br />
<br />
# DEFAULT<br />
&lt;store&gt;<br />
category=default<br />
type=buffer<br />
<br />
target_write_size=20480<br />
max_write_interval=1<br />
buffer_send_rate=2<br />
retry_interval=30<br />
retry_interval_range=10<br />
<br />
&lt;primary&gt;<br />
type=file<br />
fs_type=std<br />
file_path=/tmp/scribetest<br />
base_filename=thisisoverwritten<br />
max_size=1000000<br />
add_newlines=1<br />
&lt;/primary&gt;<br />
<br />
&lt;secondary&gt;<br />
type=file<br />
fs_type=std<br />
file_path=/tmp<br />
base_filename=thisisoverwritten<br />
max_size=3000000<br />
&lt;/secondary&gt;<br />
&lt;/store&gt;</div></div>
<p>Now, start the server:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">sudo</span> scribed <span style="color: #660033;">-c</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>scribe<span style="color: #000000; font-weight: bold;">/</span>scribe.conf</div></div>
<h2>Generate PHP classes</h2>
<p>Goto your application path, then, create the thrift and scribe php classes:</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>thrift <span style="color: #660033;">-o</span> . <span style="color: #660033;">-I</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">--gen</span> php <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>fb303<span style="color: #000000; font-weight: bold;">/</span>if<span style="color: #000000; font-weight: bold;">/</span>fb303.thrift <br />
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>thrift <span style="color: #660033;">-o</span> . <span style="color: #660033;">-I</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">--gen</span> php <span style="color: #000000; font-weight: bold;">/</span>source<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>scribe<span style="color: #000000; font-weight: bold;">/</span>if<span style="color: #000000; font-weight: bold;">/</span>scribe.thrift<br />
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>source<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>thrift<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>php<span style="color: #000000; font-weight: bold;">/</span>src includes <span style="color: #660033;">-r</span><br />
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> includes<span style="color: #000000; font-weight: bold;">/</span>packages<span style="color: #000000; font-weight: bold;">/</span>fb303<br />
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> includes<span style="color: #000000; font-weight: bold;">/</span>packages<span style="color: #000000; font-weight: bold;">/</span>scribe<br />
<span style="color: #c20cb9; font-weight: bold;">mv</span> gen-php<span style="color: #000000; font-weight: bold;">/</span>FacebookService.php gen-php<span style="color: #000000; font-weight: bold;">/</span>fb303_types.php includes<span style="color: #000000; font-weight: bold;">/</span>packages<span style="color: #000000; font-weight: bold;">/</span>fb303<span style="color: #000000; font-weight: bold;">/</span><br />
<span style="color: #c20cb9; font-weight: bold;">mv</span> gen-php<span style="color: #000000; font-weight: bold;">/</span>scribe_types.php includes<span style="color: #000000; font-weight: bold;">/</span>packages<span style="color: #000000; font-weight: bold;">/</span>scribe<span style="color: #000000; font-weight: bold;">/</span><br />
<span style="color: #c20cb9; font-weight: bold;">mv</span> gen-php<span style="color: #000000; font-weight: bold;">/</span>scribe.php includes<span style="color: #000000; font-weight: bold;">/</span><br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> gen-php</div></div>
<h2>Use libraries</h2>
<div class="codecolorer-container php vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:500px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'THRIFT_ROOT'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'./includes'</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #b1b100;">include_once</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'THRIFT_ROOT'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/scribe.php'</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">include_once</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'THRIFT_ROOT'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/transport/TSocket.php'</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">include_once</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'THRIFT_ROOT'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/transport/TFramedTransport.php'</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">include_once</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'THRIFT_ROOT'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'/protocol/TBinaryProtocol.php'</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$msg1</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'category'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'keyword'</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$msg1</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'message'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;This is some message for the category<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$msg2</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'category'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'keyword'</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$msg2</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'message'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Some other message for the category<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$entry1</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> LogEntry<span style="color: #009900;">&#40;</span><span style="color: #000088;">$msg1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$entry2</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> LogEntry<span style="color: #009900;">&#40;</span><span style="color: #000088;">$msg2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$messages</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$entry1</span><span style="color: #339933;">,</span> <span style="color: #000088;">$entry2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$socket</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> TSocket<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'localhost'</span><span style="color: #339933;">,</span> 1463<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$transport</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> TFramedTransport<span style="color: #009900;">&#40;</span><span style="color: #000088;">$socket</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$protocol</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> TBinaryProtocol<span style="color: #009900;">&#40;</span><span style="color: #000088;">$transport</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$scribe_client</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> scribeClient<span style="color: #009900;">&#40;</span><span style="color: #000088;">$protocol</span><span style="color: #339933;">,</span> <span style="color: #000088;">$protocol</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$transport</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">open</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$scribe_client</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Log</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$messages</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$transport</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<h2>Sources</h2>
<ul>
<li><a href="http://www.ruturaj.net/scribe-php-logging">the php script</a></li>
<li><a href="http://kpumuk.info/development/installing-and-using-scribe-with-ruby-on-mac-os/">Same for mac + ruby</li>
</ul>
<p>Enjoy <img src='http://snippets.notmyidea.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://snippets.notmyidea.org/2009/07/30/using-scribe-log-server-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto install &#171;&#160;Scribe&#160;&#187; (The Facebook log system) on Debian</title>
		<link>http://snippets.notmyidea.org/2009/07/29/howto-install-scribe-the-facebook-log-system-on-debian/</link>
		<comments>http://snippets.notmyidea.org/2009/07/29/howto-install-scribe-the-facebook-log-system-on-debian/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 17:28:02 +0000</pubDate>
		<dc:creator>Alexis Métaireau</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://snippets.notmyidea.org/2009/07/29/howto-install-scribe-the-facebook-log-system-on-debian/</guid>
		<description><![CDATA[Here is a simple HOWTO for installing Scribe Server
The quick way
You can install Scribe with all its dependencies by simply copy/paste this line on your terminal.
sudo apt-get install libboost-dev=1.38.1 flex bison libtool automake autoconf pkg-config &#38;&#38; wget -O thrift.tgz &#34;http://gitweb.thrift-rpc.org/?p=thrift.git;a=snapshot;h=HEAD;sf=tgz&#34; &#38;&#38; tar -xzf thrift.tgz &#38;&#38; cd thrift &#38;&#38;./bootstrap.sh &#38;&#38; ./configure &#38;&#38; make &#38;&#38; sudo make [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a simple HOWTO for installing <a href='http://developers.facebook.com/scribe/'>Scribe Server</a></p>
<h2>The quick way</h2>
<p>You can install Scribe with all its dependencies by simply copy/paste this line on your terminal.</p>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libboost-dev=1.38.1 <span style="color: #c20cb9; font-weight: bold;">flex</span> <span style="color: #c20cb9; font-weight: bold;">bison</span> libtool <span style="color: #c20cb9; font-weight: bold;">automake</span> <span style="color: #c20cb9; font-weight: bold;">autoconf</span> pkg-config <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-O</span> thrift.tgz <span style="color: #ff0000;">&quot;http://gitweb.thrift-rpc.org/?p=thrift.git;a=snapshot;h=HEAD;sf=tgz&quot;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xzf</span> thrift.tgz <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">cd</span> thrift <span style="color: #000000; font-weight: bold;">&amp;&amp;</span>.<span style="color: #000000; font-weight: bold;">/</span>bootstrap.sh <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> .<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">cd</span> contrib<span style="color: #000000; font-weight: bold;">/</span>fb303<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> .<span style="color: #000000; font-weight: bold;">/</span>bootstrap.sh <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">cd</span> ..<span style="color: #000000; font-weight: bold;">/</span>..<span style="color: #000000; font-weight: bold;">/</span>..<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-O</span> scribe.tgz <span style="color: #ff0000;">&quot;http://downloads.sourceforge.net/project/scribeserver/Scribe/Scribe%20version%202.01/scribe-version-2.01.tar.gz?use_mirror=freefr&quot;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xvzf</span> scribe.tar.gz <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">cd</span> scribe <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> .<span style="color: #000000; font-weight: bold;">/</span>bootstrap.sh <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> .<span style="color: #000000; font-weight: bold;">/</span>scribe<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">cd</span> ..</div></div>
<h2>The Detailled way</h2>
<h3>Resolve dependencies (including Thrift + fb303)</h3>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libboost-dev=1.38.1 <span style="color: #c20cb9; font-weight: bold;">flex</span> <span style="color: #c20cb9; font-weight: bold;">bison</span> libtool <span style="color: #c20cb9; font-weight: bold;">automake</span> <span style="color: #c20cb9; font-weight: bold;">autoconf</span> pkg-config<br />
<span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-O</span> thrift.tgz <span style="color: #ff0000;">&quot;http://gitweb.thrift-rpc.org/?p=thrift.git;a=snapshot;h=HEAD;sf=tgz&quot;</span><br />
<span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xzf</span> thrift.tgz<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> thrift <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> .<span style="color: #000000; font-weight: bold;">/</span>bootstrap.sh <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> .<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span><br />
<span style="color: #7a0874; font-weight: bold;">cd</span> contrib<span style="color: #000000; font-weight: bold;">/</span>fb303<span style="color: #000000; font-weight: bold;">/</span><br />
.<span style="color: #000000; font-weight: bold;">/</span>bootstrap.sh <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<h3>Get Scribe code &#038; compile it</h3>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-O</span> scribe.tgz <span style="color: #ff0000;">&quot;http://downloads.sourceforge.net/project/scribeserver/Scribe/Scribe%20version%202.01/scribe-version-2.01.tar.gz?use_mirror=freefr&quot;</span></div></div>
<h2>Extract / Install</h2>
<div class="codecolorer-container bash vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xvzf</span> scribe.tar.gz<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> scribe<br />
.<span style="color: #000000; font-weight: bold;">/</span>bootstrap.sh<br />
.<span style="color: #000000; font-weight: bold;">/</span>scribe<span style="color: #000000; font-weight: bold;">/</span>configure <br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<p>Hope it helps !</p>
]]></content:encoded>
			<wfw:commentRss>http://snippets.notmyidea.org/2009/07/29/howto-install-scribe-the-facebook-log-system-on-debian/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Select All text in VIM</title>
		<link>http://snippets.notmyidea.org/2009/07/24/select-all-text-in-vim/</link>
		<comments>http://snippets.notmyidea.org/2009/07/24/select-all-text-in-vim/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 10:42:43 +0000</pubDate>
		<dc:creator>Alexis Métaireau</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://snippets.notmyidea.org/2009/07/24/select-all-text-in-vim/</guid>
		<description><![CDATA[To select All text in visual mode in VIM, try ggVG in normal mode
ggVG


from daily VIM
]]></description>
			<content:encoded><![CDATA[<p>To select All text in visual mode in VIM, try ggVG in normal mode</p>
<p><div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ggVG</div></div>
</p>
<p>
<a href="http://dailyvim.blogspot.com/2007/11/fast-select-all.html">from daily VIM</a></p>
]]></content:encoded>
			<wfw:commentRss>http://snippets.notmyidea.org/2009/07/24/select-all-text-in-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET related Feeds</title>
		<link>http://snippets.notmyidea.org/2009/07/21/net-related-feeds/</link>
		<comments>http://snippets.notmyidea.org/2009/07/21/net-related-feeds/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 13:07:33 +0000</pubDate>
		<dc:creator>Alexis Métaireau</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://snippets.notmyidea.org/2009/07/21/net-related-feeds/</guid>
		<description><![CDATA[Here is a list of interesting feeds about .Net (in OPML format):
It&#8217;ll be useful at least for Heaven  
&#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#62;
&#60;opml version=&#34;1.0&#34;&#62;
&#160; &#160; &#60;head&#62;
&#160; &#160; &#160; &#160; &#60;title&#62;About .NET&#60;/title&#62;
&#160; &#160; &#60;/head&#62;
&#160; &#160; &#60;body&#62;
&#160; &#160; &#160; &#160; &#60;outline title=&#34;.Net&#34; text=&#34;.Net&#34;&#62;
&#160; &#160; &#160; &#160; &#160; &#160; &#60;outline text=&#34;Blog de Julien Dollon&#34;
 &#160; &#160; &#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a list of interesting feeds about .Net (in OPML format):</p>
<p>It&#8217;ll be useful at least for <a href="http://twitter.com/Hield">Heaven</a> <img src='http://snippets.notmyidea.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="codecolorer-container xml vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:500px;"><div class="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;opml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;head<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>About .NET<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/head<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;body<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;.Net&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;.Net&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Blog de Julien Dollon&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Blog de Julien Dollon&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blogs.dotnet-france.com/juliend/syndication.axd?format=rss&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blogs.dotnet-france.com/juliend/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;CodeBetter.Com - Stuff you need to Code Better!&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;CodeBetter.Com - Stuff you need to Code Better!&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds2.feedburner.com/codebetter&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://codebetter.com/blogs/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;CodeUtopia&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;CodeUtopia&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://codeutopia.net/blog/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://codeutopia.net/blog&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;DotNetGuru.org&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;DotNetGuru.org&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dotnetguru.org/backend.php&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dotnetguru.org/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Elegant Code&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Elegant Code&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds2.feedburner.com/ElegantCode&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://elegantcode.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;InfoQ Personalized Feed for Unregistered User - Register to upgrade!&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;InfoQ Personalized Feed for Unregistered User - Register to upgrade!&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.infoq.com/rss/rss.action?token=Nd6yHNyrOmvDlyRNG3qlT51jtA2IDoTG&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.infoq.com&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Le blog de L'ami Sami&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Le blog de L'ami Sami&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dng-consulting.com/blogs/index.php?blog=1&amp;amp;tempskin=_rss2&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://www.dng-consulting.com/blogs/index.php?blog=1&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Radenko Zec Blog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Radenko Zec Blog&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds2.feedburner.com/RadenkoZecBlog&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.developers.ba/&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Sebastien.warin.fr&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Sebastien.warin.fr&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://feeds.feedburner.com/sebastienwarin&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://sebastien.warin.fr&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Thomas Lebrun&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Thomas Lebrun&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blogs.developpeur.org/tom/rss.aspx&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blogs.developpeur.org/tom/default.aspx&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;outline</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Valtech Blog&quot;</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Valtech Blog&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;rss&quot;</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">xmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.valtech.fr/wordpress/feed/&quot;</span> <span style="color: #000066;">htmlUrl</span>=<span style="color: #ff0000;">&quot;http://blog.valtech.fr/wordpress&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/outline<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/body<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/opml<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://snippets.notmyidea.org/2009/07/21/net-related-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

