<?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>Il posto di Eraclitux</title>
	<atom:link href="http://www.eraclitux.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.eraclitux.com</link>
	<description>Pensieri ed idee sull&#039;elettronica, l&#039;informatica ed il bricolage</description>
	<lastBuildDate>Thu, 29 Nov 2012 21:56:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Installing MySQL-python with custom mysql installation</title>
		<link>http://www.eraclitux.com/en/2012/08/23/installing-mysql-python-with-custom-mysql-installation/</link>
		<comments>http://www.eraclitux.com/en/2012/08/23/installing-mysql-python-with-custom-mysql-installation/#comments</comments>
		<pubDate>Thu, 23 Aug 2012 11:35:10 +0000</pubDate>
		<dc:creator>Eraclitux</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.eraclitux.com/?p=471</guid>
		<description><![CDATA[If you are tryng to $ pip install MySQL-python in a system where MySQL is installed manually (not with a packet manager) you will get this error: Downloading/unpacking MySQL-python Downloading MySQL-python-1.2.3.tar.gz &#40;70Kb&#41;: 70Kb downloaded Running setup.py egg_info for package MySQL-python &#8230; <a href="http://www.eraclitux.com/en/2012/08/23/installing-mysql-python-with-custom-mysql-installation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If you are tryng to</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="bash"><pre class="de1"><span class="co4">$ </span>pip <span class="kw2">install</span> MySQL-python</pre></div></div></div></div></div></div></div>


<p>in a system where MySQL is installed manually (not with a packet manager) you will get this error:<span id="more-471"></span></p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="bash"><pre class="de1">Downloading<span class="sy0">/</span>unpacking MySQL-python
Downloading MySQL-python-1.2.3.tar.gz <span class="br0">&#40;</span>70Kb<span class="br0">&#41;</span>: 70Kb downloaded
Running setup.py egg_info <span class="kw1">for</span> package MySQL-python
sh: mysql_config: not found
Traceback <span class="br0">&#40;</span>most recent call <span class="kw2">last</span><span class="br0">&#41;</span>:
File <span class="st0">&quot;&quot;</span>, line <span class="nu0">14</span>, <span class="kw1">in</span>
File <span class="st0">&quot;/xxx/build/MySQL-python/setup.py&quot;</span>, line <span class="nu0">15</span>, <span class="kw1">in</span>
metadata, options = get_config<span class="br0">&#40;</span><span class="br0">&#41;</span>
File <span class="st0">&quot;setup_posix.py&quot;</span>, line <span class="nu0">43</span>, <span class="kw1">in</span> get_config
libs = mysql_config<span class="br0">&#40;</span><span class="st0">&quot;libs_r&quot;</span><span class="br0">&#41;</span>
File <span class="st0">&quot;setup_posix.py&quot;</span>, line <span class="nu0">24</span>, <span class="kw1">in</span> mysql_config
raise EnvironmentError<span class="br0">&#40;</span><span class="st0">&quot;%s not found&quot;</span> <span class="sy0">%</span> <span class="br0">&#40;</span>mysql_config.path,<span class="br0">&#41;</span><span class="br0">&#41;</span>
EnvironmentError: mysql_config not found
Complete output from <span class="kw3">command</span> python setup.py egg_info:
sh: mysql_config: not found
&nbsp;
Traceback <span class="br0">&#40;</span>most recent call <span class="kw2">last</span><span class="br0">&#41;</span>:
&nbsp;
File <span class="st0">&quot;&quot;</span>, line <span class="nu0">14</span>, <span class="kw1">in</span>
&nbsp;
File <span class="st0">&quot;/xxx/build/MySQL-python/setup.py&quot;</span>, line <span class="nu0">15</span>, <span class="kw1">in</span>
&nbsp;
metadata, options = get_config<span class="br0">&#40;</span><span class="br0">&#41;</span>
&nbsp;
File <span class="st0">&quot;setup_posix.py&quot;</span>, line <span class="nu0">43</span>, <span class="kw1">in</span> get_config
&nbsp;
libs = mysql_config<span class="br0">&#40;</span><span class="st0">&quot;libs_r&quot;</span><span class="br0">&#41;</span>
&nbsp;
File <span class="st0">&quot;setup_posix.py&quot;</span>, line <span class="nu0">24</span>, <span class="kw1">in</span> mysql_config
&nbsp;
raise EnvironmentError<span class="br0">&#40;</span><span class="st0">&quot;%s not found&quot;</span> <span class="sy0">%</span> <span class="br0">&#40;</span>mysql_config.path,<span class="br0">&#41;</span><span class="br0">&#41;</span>
&nbsp;
EnvironmentError: mysql_config not found</pre></div></div></div></div></div></div></div>


<p>because mysql_config is not found into $PATH. We have to rebuild <a href="http://sourceforge.net/projects/mysql-python/">MySQL-python </a> modifing <strong>site.cfg </strong>like these</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="bash"><pre class="de1"><span class="re2">static</span>=True
<span class="re2">mysql_config</span>=<span class="sy0">/</span>path<span class="sy0">/</span>to<span class="sy0">/</span>custom<span class="sy0">/</span>mysql<span class="sy0">/</span>bin<span class="sy0">/</span>mysql_config</pre></div></div></div></div></div></div></div>


<p>than update LD_LIBRARY_PATH with the path to your mysql&#8217; lib dir</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="bash"><pre class="de1"><span class="kw3">export</span> <span class="re2">LD_LIBRARY_PATH</span>=<span class="sy0">/</span>your<span class="sy0">/</span>mysql<span class="sy0">/</span>lib:<span class="re1">$LD_LIBRARY_PATH</span></pre></div></div></div></div></div></div></div>


<p>cross your fingers and launch</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="python"><pre class="de1">python setup.<span class="me1">py</span> install</pre></div></div></div></div></div></div></div>


]]></content:encoded>
			<wfw:commentRss>http://www.eraclitux.com/en/2012/08/23/installing-mysql-python-with-custom-mysql-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install nbd on CentOS</title>
		<link>http://www.eraclitux.com/en/2012/08/21/how-to-install-nbd-on-centos/</link>
		<comments>http://www.eraclitux.com/en/2012/08/21/how-to-install-nbd-on-centos/#comments</comments>
		<pubDate>Tue, 21 Aug 2012 11:45:33 +0000</pubDate>
		<dc:creator>Eraclitux</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.eraclitux.com/?p=452</guid>
		<description><![CDATA[There is no packages (client or server) for CentOS yet but you can use an rpm for Fedora you can get here. Grab one not too new. I used the one for Fedora 15 for a CentOS 6.2. After that to use nbd-client &#8230; <a href="http://www.eraclitux.com/en/2012/08/21/how-to-install-nbd-on-centos/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>There is no packages (client or server) for CentOS yet but you can use an rpm for Fedora you can get <a href="http://rpmfind.net/linux/rpm2html/search.php?query=nbd&amp;submit=Search+...&amp;system=&amp;arch=">here</a>. Grab one not too new. I used the one for Fedora 15 for a CentOS 6.2. After that to use nbd-client you need the <strong>nbd</strong> kernel module. Unfortunatly there is no kernel module in this rpm. If you are lucky try</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="bash"><pre class="de1"><span class="co4"># </span>modprobe nbd</pre></div></div></div></div></div></div></div>


<p>but if you are not you need to find <strong>nbd.ko</strong> somewhere else (for example inside a kernel&#8217; rpm) or decide to compile it by youself and then</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="bash"><pre class="de1"><span class="co4"># </span>insmod nbd.ko</pre></div></div></div></div></div></div></div>


<p>Now you can use nbd-server and nbd-client.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eraclitux.com/en/2012/08/21/how-to-install-nbd-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing an enc28J60 based Arduino Mega ethertnet shield</title>
		<link>http://www.eraclitux.com/en/2012/06/05/fixing-an-enc28j60-based-arduino-ethertnet-shield/</link>
		<comments>http://www.eraclitux.com/en/2012/06/05/fixing-an-enc28j60-based-arduino-ethertnet-shield/#comments</comments>
		<pubDate>Tue, 05 Jun 2012 18:15:28 +0000</pubDate>
		<dc:creator>Eraclitux</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[domotics]]></category>
		<category><![CDATA[hardware]]></category>

		<guid isPermaLink="false">http://www.eraclitux.com/?p=412</guid>
		<description><![CDATA[Prototyping my home automation system i ran into troubles. I can&#8217;t make work two SPI devices on Arduino Mega. One is an ethernet shield based on enc28J60 made by ekitszone, other is a small module based on Nordic&#8217;s nRF24L01+ transceiver. &#8230; <a href="http://www.eraclitux.com/en/2012/06/05/fixing-an-enc28j60-based-arduino-ethertnet-shield/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.eraclitux.com/2012/06/05/fixing-an-enc28j60-based-arduino-ethertnet-shield/enc/" rel="attachment wp-att-413"><img class="alignleft size-full wp-image-413" title="ENC28J60 Ethernet Shield" src="http://www.eraclitux.com/wp-content/uploads/2012/06/enc.jpg" alt="" width="300" height="219" /></a>Prototyping my home automation system i ran into troubles. I can&#8217;t make work two SPI devices on Arduino Mega. One is an ethernet shield based on enc28J60 made by <a href="http://www.ekitszone.com/p/8/enc28j60-ethernet-shield-for-arduino-mega-mega2560" target="_blank">ekitszone</a>, other is a small module based on Nordic&#8217;s nRF24L01+ transceiver. Spot the problem without an oscilloscope was really frustrating, oscilloscopes are not hacker&#8217;s best friends for nothing. <span id="more-412"></span>After checking and rechecking solder joints, my code, astral conjunctions, finally i <a href="http://www.eraclitux.com/2012/06/05/fixing-an-enc28j60-based-arduino-ethertnet-shield/enc-2/" rel="attachment wp-att-432"><img class="alignright size-medium wp-image-432" title="ENC28J60 Ethernet Shield " src="http://www.eraclitux.com/wp-content/uploads/2012/06/enc1-300x225.jpg" alt="" width="300" height="225" /></a>found the real problem. Trivially MOSI and MISO signals of SPI bus on ethernet shiled are reversed. Detaching the shield from Arduino and using a breadboard to invert MOSI (pin 51) and MISO (pin 50) make everything work (to be true, my code doesn&#8217;t use ethernet yet but the transreceiver works like a charm now). I don&#8217;t know which batches are affected but if you are in trouble with these shield using enc28J60 datasheet and a tester try to figure out if this is your situation. Happy hacking.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eraclitux.com/en/2012/06/05/fixing-an-enc28j60-based-arduino-ethertnet-shield/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Comunikino, an Arduino based communication system</title>
		<link>http://www.eraclitux.com/en/2011/11/25/comunikino-an-arduino-based-communication-system/</link>
		<comments>http://www.eraclitux.com/en/2011/11/25/comunikino-an-arduino-based-communication-system/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 23:43:48 +0000</pubDate>
		<dc:creator>Eraclitux</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[sketch]]></category>

		<guid isPermaLink="false">http://www.eraclitux.com/?p=246</guid>
		<description><![CDATA[&#8220;Social things&#8221; have replaced traditional ways of communication like sms and mails. One day i needed a new, fast, mobile and snappy way of communication. So i made Comunikino. http://www.youtube.com/watch?v=Y9fqseT9PI0 It consists of two main parts, a script in python that &#8230; <a href="http://www.eraclitux.com/en/2011/11/25/comunikino-an-arduino-based-communication-system/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/comunikino_schem-2/" rel="attachment wp-att-307"><br />
</a>&#8220;Social things&#8221; have replaced traditional ways of communication like sms and mails. One day i needed a <strong>new, fast, mobile and snappy</strong> way of communication. So i made <strong><em><span style="color: #000000;">Comunikino</span>.</em></strong></p>
<p>http://www.youtube.com/watch?v=Y9fqseT9PI0</p>
<p>It consists of two main parts, a script in python that runs on the PC and a box that goes on desktop connected through an USB cable used for data and power (no external power needed if you use a 500mA capable usb port!). You need to create a mailbox  for Comunikino with pop access, i raccomend to use <strong>gmail</strong> as many providers don&#8217;t offer pop access for free mailboxes.</p>
<p><img class="alignright size-medium wp-image-388" style="line-height: 24px; font-size: 16px; text-align: justify;" title="project_LD" src="http://www.eraclitux.com/wp-content/uploads/2011/11/project_LD-300x232.jpg" alt="" width="300" height="232" /></p>
<p style="text-align: justify;">Using Comunikino is simple, just send a mail to its mailbox and the subject will be printed to its LCD (max 16 chars). Who reads the message can use one of three Comunikino&#8217;s buttons to send a mail back to the address setted in python script to say yes, no or readed (this button can also to be used to say: &#8220;hey! I&#8217;m thinking of you&#8221;). Simple, isn&#8217;t it?<br />
<span id="more-246"></span></p>
<p><span class="Apple-style-span" style="color: #000000; font-size: 22px; line-height: 32px;">Schematics</span></p>
<p><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/comunikino_schem-3/" rel="attachment wp-att-312"><img class="aligncenter size-full wp-image-312" title="Comunikino_schem" src="http://www.eraclitux.com/wp-content/uploads/2011/11/Comunikino_schem2.jpg" alt="" width="1024" height="648" /></a></p>
<h2><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/comunikino_bb/" rel="attachment wp-att-317"><img class="aligncenter size-full wp-image-317" title="Comunikino_bb" src="http://www.eraclitux.com/wp-content/uploads/2011/11/Comunikino_bb.jpg" alt="" width="1056" height="712" /></a></h2>
<h2>Built instructions</h2>
<p>You will need:</p>
<table>
<thead>
<tr>
<th>Amount</th>
<th>Part Type</th>
<th>Properties</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Arduino</td>
<td>I&#8217;ve used a 2009</td>
</tr>
<tr>
<td>1</td>
<td>Basic Servo</td>
<td></td>
</tr>
<tr>
<td>1</td>
<td>LCD screen</td>
<td>I&#8217;ve used a 16&#215;2 LCD based on SPLC780D chip which is totally compatible with Arduino LCD library that is made for HD44780 chip. Its voltage must be 5V!</td>
</tr>
<tr>
<td>3</td>
<td>Push-button</td>
<td>Momentary normally open push button</td>
</tr>
<tr>
<td>1</td>
<td>Rotary Potentiometer</td>
<td>Rotary Shaft Potentiometer; see datasheet for maximum resistance</td>
</tr>
<tr>
<td>1</td>
<td>Metal or plastic box</td>
<td>I used a 13,5&#215;7,5&#215;5,5 cm metal box but you can use anything similar.</td>
</tr>
</tbody>
</table>
<p>First of all the box. You should cut it as images below.</p>
<p style="text-align: center;"><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/img_20110909_185223/" rel="attachment wp-att-284"><img class="size-medium wp-image-284 aligncenter" title="IMG_20110909_185223" src="http://www.eraclitux.com/wp-content/uploads/2011/11/IMG_20110909_185223-300x225.jpg" alt="" width="300" /></a></p>
<p style="text-align: center;"><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/img_20110911_190313/" rel="attachment wp-att-285"><img class="size-medium wp-image-285 aligncenter" title="IMG_20110911_190313" src="http://www.eraclitux.com/wp-content/uploads/2011/11/IMG_20110911_190313-300x225.jpg" alt="Arduino based communication system" width="300" /></a></p>
<p>LCD mounting:</p>
<p><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/img_20110912_183802/" rel="attachment wp-att-324"><img class="aligncenter size-medium wp-image-324" title="IMG_20110912_183802" src="http://www.eraclitux.com/wp-content/uploads/2011/11/IMG_20110912_183802-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Now fix arduino and buttons like this:</p>
<p><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/img_20110912_180220/" rel="attachment wp-att-296"><img class="aligncenter size-medium wp-image-296" title="IMG_20110912_180220" src="http://www.eraclitux.com/wp-content/uploads/2011/11/IMG_20110912_180220-300x225.jpg" alt="Arduino project" width="300" height="225" /></a>Mounting servo:</p>
<p><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/img_20110910_174431/" rel="attachment wp-att-297"><img class="aligncenter size-medium wp-image-297" title="IMG_20110910_174431" src="http://www.eraclitux.com/wp-content/uploads/2011/11/IMG_20110910_174431-300x225.jpg" alt="Arduino project" width="300" height="225" /></a><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/img_20110910_174416/" rel="attachment wp-att-322"><img class="aligncenter size-medium wp-image-322" title="IMG_20110910_174416" src="http://www.eraclitux.com/wp-content/uploads/2011/11/IMG_20110910_174416-300x225.jpg" alt="" width="300" height="225" /></a>Putting things together (you can note a recycled hard disk flat cable used to connect LCD, ricycling is good!):</p>
<p><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/img_20110911_192551/" rel="attachment wp-att-323"><img class="aligncenter size-medium wp-image-323" title="IMG_20110911_192551" src="http://www.eraclitux.com/wp-content/uploads/2011/11/IMG_20110911_192551-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The flag can be made by wood, mdf, or cardboard:</p>
<p><span class="Apple-style-span" style="color: #000000; font-size: 22px; line-height: 32px;"><a href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/img_20111125_213505/" rel="attachment wp-att-400"><img class="aligncenter size-medium wp-image-400" title="IMG_20111125_213505" src="http://www.eraclitux.com/wp-content/uploads/2011/11/IMG_20111125_213505-300x225.jpg" alt="" width="300" height="225" /></a></span></p>
<p><span class="Apple-style-span" style="color: #000000; font-size: 22px; line-height: 32px;">Setting up software</span></p>
<p>Now download <a class="downloadlink" href="http://www.eraclitux.com/downloads/Comunikino%27s+software" title="Versione0.1 scaricato 325 volte" >Comunikino's software (325)</a> (Linux and windows version inside) and configure python script with the data of the mailbox you have created for Comunikino (gmail is highly recommended). You can do this just editing the script with a text editor. At the beginning you will find variables that you have to change, read comments for explanation! You need also to download and burn into Arduino the sketch into the zip (no modification needed here).  Remember, before launching python script you have to connect Comunikino to PC or it will quit with an error. I advice you to leave Comunikino linked to the computer and make the script run on start up. Comunikino will inform you that it is ready to communicate with a mail every time computer is turned on.</p>
<p>Comunikino is ready!</p>
<p>I want to upgrade this device with advanced features. I want to create a better software with GUI and a nice looking box. Help me!<br />
<iframe width="630" height="350" src="http://tools.flattr.net/widgets/thing.html?thing=1037561"></iframe></p>
<p><a style="color: #ff4b33;" href="http://www.eraclitux.com/2011/11/25/comunikino-an-arduino-based-communication-system/img_20110929_190437-2/" rel="attachment wp-att-325"><img class="aligncenter size-medium wp-image-325" style="border-style: initial; border-color: initial;" title="IMG_20110929_190437" src="http://www.eraclitux.com/wp-content/uploads/2011/11/IMG_20110929_1904371-300x225.jpg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eraclitux.com/en/2011/11/25/comunikino-an-arduino-based-communication-system/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Prevent Google Analytics to log you</title>
		<link>http://www.eraclitux.com/en/2011/07/23/evitare-di-essere-tracciati-da-google-analytics/</link>
		<comments>http://www.eraclitux.com/en/2011/07/23/evitare-di-essere-tracciati-da-google-analytics/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 12:53:46 +0000</pubDate>
		<dc:creator>Eraclitux</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.eraclitux.com/?p=224</guid>
		<description><![CDATA[Have you heard that? Google made up a Chrome (and Chromium) extension  to let you bypass Analytics&#8217;s tracking java code. So if you work on a website and don&#8217;t want to perturb site stats or if you are jealous about your privacy this is for &#8230; <a href="http://www.eraclitux.com/en/2011/07/23/evitare-di-essere-tracciati-da-google-analytics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Have you heard that? Google made up a Chrome (and Chromium) extension  to let you<a href="http://www.eraclitux.com/wp-content/uploads/2011/07/analytics-ext-e1311426075187.png"><img class="alignright size-full wp-image-227" title="analytics-ext" src="http://www.eraclitux.com/wp-content/uploads/2011/07/analytics-ext-e1311426075187.png" alt="" width="300" height="154" /></a> bypass Analytics&#8217;s tracking java code. So if you work on a website and don&#8217;t want to perturb site stats or if you are jealous about your privacy this is for you! You can download it on <a href="https://chrome.google.com/webstore/detail/fllaojicojecljbmefodhfapmkghcbnh">Crome web store</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eraclitux.com/en/2011/07/23/evitare-di-essere-tracciati-da-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EIA 485 over unused pairs of ethernet cable [Test]</title>
		<link>http://www.eraclitux.com/en/2011/05/02/eia-485-su-twisted-pairs-inutilizzate-di-un-cavo-ethernet/</link>
		<comments>http://www.eraclitux.com/en/2011/05/02/eia-485-su-twisted-pairs-inutilizzate-di-un-cavo-ethernet/#comments</comments>
		<pubDate>Mon, 02 May 2011 13:03:10 +0000</pubDate>
		<dc:creator>Eraclitux</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[domotics]]></category>
		<category><![CDATA[electronic]]></category>

		<guid isPermaLink="false">http://www.eraclitux.com/?p=165</guid>
		<description><![CDATA[To carry out my plan of a home automation system (domotics) made by me I am experimenting the use of the EIA 485 communications protocol. Having wired the house with lots of cat5 cables and knowing that two of the four &#8230; <a href="http://www.eraclitux.com/en/2011/05/02/eia-485-su-twisted-pairs-inutilizzate-di-un-cavo-ethernet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>To carry out my plan of a home automation system (domotics) made by me I am experimenting the use of the <strong>EIA 485</strong> communications protocol. Having wired the house with lots of cat5 cables and knowing that two of the four pairs of which it is composed are not used to the speed of 100 Mb, I tried to pass the signal on these wires to see if the two streams (<strong>TCP/IP</strong> and the EIA 485) could coexist without major problems. Here&#8217;s how the test was performed:<br />
<span id="more-165"></span></p>
<p>I defined my own communication protocol as the EIA 485 only defines the physical parameters, as Master-Slave, half duplex with 14-byte frame consisting of address, the slave&#8217;s actions, 5 bytes for data and one byte for checksum and other embroidery. For each frame received correctly, the slave sends an acknowledge to the master after performing the required action. The baud rate was set to 9600 bits/s serial communication 8-n-1 (8-bit data, no parity, 1 stop bit). To test these, the master cyclically sends once per second, request to slaves to put high one of their pins to turn on and off a LED. One of the pins of the PIC was connected to another LED programmed to turn on in case of the frame error, the bit FERR in the RCSTA register is set to 1 if the stop bit is erroneously detected as zero.</p>
<p>I&#8217;ve programmed a simple <strong>Arduino</strong> as a master, another Arduino and a <strong>pic</strong></p>
<p><a href="http://www.eraclitux.com/wp-content/uploads/2011/04/485.jpg"><img class="alignright size-medium wp-image-166" title="485" src="http://www.eraclitux.com/wp-content/uploads/2011/04/485-300x225.jpg" alt="" width="300" height="225" /></a> <strong>16f88</strong> as a slave. In the photo appear beside the master and slave, the <strong>PIC16F88</strong> is placed at the other end of the network cable about 10 meters long. For the test I did not use terminating resistors nor bias resistors since with these distances it&#8217; not required. A pair of wires is connected to pins A and B integrated the <strong>MAX485</strong>, the other was used for the reference (connected to ground, to avoid groundloops &#8230;) it according to a daisy chain connection scheme. Throughout the test I have maintained a steady stream of  TCP/IP traffic node continuously pinging the node at the other end of cable. <strong>Result</strong> is that in over an hour of practice there was never a frame error (FERR bit was never set) and all the frames have been received correctly (no checksum errors). The TCP / IP traffic has not suffered any errors or delays (0% packet loss and response times in the standard). Now we have to run the test with a much longer cable!</p>
<p style="text-align: center;"><a href="http://www.eraclitux.com/wp-content/uploads/2011/05/arduino-485.png"><img class="aligncenter size-large wp-image-243" title="arduino-485" src="http://www.eraclitux.com/wp-content/uploads/2011/05/arduino-485-1024x496.png" alt="Arduino - eia 485 connection scheme" width="640" height="310" /></a></p>
<p>In spare time i started to work on an <strong>Arduino shield</strong> (with relative library) for simple eia-485 communication. If you want to help me doing this consider a small donation.<br />
<iframe src="http://tools.flattr.net/widgets/thing.html?thing=1037890" width="640" height="290"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eraclitux.com/en/2011/05/02/eia-485-su-twisted-pairs-inutilizzate-di-un-cavo-ethernet/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Communicate with Arduino using python</title>
		<link>http://www.eraclitux.com/en/2011/02/20/comunicare-con-arduino-usando-python/</link>
		<comments>http://www.eraclitux.com/en/2011/02/20/comunicare-con-arduino-usando-python/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 11:13:00 +0000</pubDate>
		<dc:creator>Eraclitux</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[sketch]]></category>

		<guid isPermaLink="false">http://www.eraclitux.com/?p=139</guid>
		<description><![CDATA[Os: linux, windows (not tested), mac osx (not tested) Difficulty: medium Knowledge you need: a little bit of python programming (ver 2.x) and Arduino Let&#8217;s see how easy it is to communicate with an Arduino 2009 board and the  pySerial python&#8217;s module. What we will do is to use python to send characters serially to an Arduino 2009 which will &#8230; <a href="http://www.eraclitux.com/en/2011/02/20/comunicare-con-arduino-usando-python/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div class="guide-summary"><strong>Os: </strong>linux, windows (not tested), mac osx (not tested)<br />
<strong>Difficulty:</strong> medium<br />
<strong>Knowledge you need:</strong> a little bit of python programming (ver 2.x) and Arduino</div>
<p>Let&#8217;s see how easy it is to communicate with an Arduino 2009 board and the  <a href="http://pyserial.sourceforge.net/index.html">pySerial</a> python&#8217;s module. What we will do is to use python to send characters serially to an Arduino 2009 which will send them back.<span id="more-139"></span> Obviously, everything has a demonstration purposes only, since the code proposed here has no specific function but you can easily modify it to get something usable for your projects. What you describe has been tested on Ubuntu 10.04 but should work on other distributions as on various Windows and Mac OSX. If you have problems let me know!</p>
<p><span style="color: #000000; font-size: 18px; line-height: 27px;">1 Install pySerial</span></p>
<p>[<strong>Linux</strong>] Use your favorite packet manager to install python-serial or from command line type the famous command (on Ubuntu &amp;co.):</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="bash"><pre class="de1"><span class="kw2">sudo</span> <span class="kw2">apt-get install</span> python-serial</pre></div></div></div></div></div></div></div>


<p>Type administration password and you are done!<br />
[<strong>Windows</strong>] <a href="http://pypi.python.org/pypi/pyserial">Download</a> ed install pySerial (the file should be pyserial-2.5.win32.exe)</p>
<h3>2 Download  test software</h3>
<p>Program Arduino with this sketch <a class="downloadlink" href="http://www.eraclitux.com/downloads/Serial+echo+test+program" title="Versione0.1 scaricato 295 volte" >Serial echo test program (295)</a> and download the  python code <a class="downloadlink" href="http://www.eraclitux.com/downloads/Python+to+Arduino+test+program" title="Versione0.1 scaricato 286 volte" >Python to Arduino test program (286)</a>. Open it with a text editor and see if at line 23 in place of &#8217;/ dev/ttyUSB0&#8242; what you find the editor of the Arduino sketch below themenu Tools -&gt; Serial Port -&gt; xxxxxxx. Remeber, do not forget the single quotes!</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="python"><pre class="de1">conn <span class="sy0">=</span> serial.<span class="me1">Serial</span><span class="br0">&#40;</span><span class="st0">'/dev/ttyUSB0'</span><span class="sy0">,</span> timeout<span class="sy0">=</span><span class="nu0">1</span><span class="br0">&#41;</span></pre></div></div></div></div></div></div></div>


<h3>3 Let&#8217;s try</h3>
<p>With Arduino programmed with the sketch above and connected to the computer launch communication.py, if it works the board will send back all the ASCII characters that you type on the keyboard. You can verify that the communication is actually taking place looking at the flashing LED TX and RX on the board. Now you can to modify these examples to suit your needs.</p>
<p>Ah! The python&#8217;s way&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eraclitux.com/en/2011/02/20/comunicare-con-arduino-usando-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creare ombre con i CSS</title>
		<link>http://www.eraclitux.com/en/2011/02/08/creare-ombre-con-i-css/</link>
		<comments>http://www.eraclitux.com/en/2011/02/08/creare-ombre-con-i-css/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 01:51:00 +0000</pubDate>
		<dc:creator>Eraclitux</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.eraclitux.com/?p=47</guid>
		<description><![CDATA[Difficoltà: Facile Conoscenze richieste: un po&#8217; di css e html Lo sapevate? Esistono tag css che permettono di creare ombre per oggetti e testo &#8220;al volo&#8221; senza cioè usare programmi di foto ritocco. Le ombre saranno create direttamente dal browser del visitatore. &#8230; <a href="http://www.eraclitux.com/en/2011/02/08/creare-ombre-con-i-css/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div class="guide-summary"><strong>Difficoltà:</strong> Facile<br />
<strong>Conoscenze richieste:</strong> un po&#8217; di css e html</div>
<p>Lo sapevate? Esistono tag css che permettono di creare ombre per <strong>oggetti</strong> e <strong>testo</strong> &#8220;al volo&#8221; senza cioè usare programmi di foto ritocco. Le <strong>ombre</strong> saranno create direttamente dal browser del visitatore. Le cose che dirò dovrebbero essere valide per i seguenti browser:<span id="more-47"></span></p>
<ul>
<li>Firefox 3.5+ (testato la 3.6)</li>
<li>Safari 3+</li>
<li>Google Chrome (testato Chromium 8.0.552.237)</li>
<li>Opera 10.50</li>
<li>Internet Explorer 9</li>
</ul>
<p>E le versioni precedenti di Internet Explorer? Esistono dei filtri che si possono applicare affinché le ombre vengano visualizzate più o meno correttamente nei browser microsoft ma non li tratterò. Trovo inconcepibile che il maggiore produttore di software mondiale non rispetti gli standard come fanno tutti gli altri.</p>
<p>Supponiamo di voler ombreggiare un elemento div, useremo i seguenti tag css:</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="css"><pre class="de1">box-shadow<span class="sy0">:</span><span class="re3">5px</span> <span class="re3">5px</span> <span class="re3">3px</span> <span class="re0">#000000</span><span class="sy0">;</span>
-webkit-box-shadow<span class="sy0">:</span><span class="re3">5px</span> <span class="re3">5px</span> <span class="re3">3px</span> <span class="re0">#000000</span><span class="sy0">;</span>
-moz-box-shadow<span class="sy0">:</span> <span class="re3">5px</span> <span class="re3">5px</span> <span class="re3">3px</span> <span class="re0">#000000</span><span class="sy0">;</span></pre></div></div></div></div></div></div></div>


<p>Capiamone il significato. Noterete che la cosa che differenzia le tre direttive sono i prefissi, la prima serve per Opera 10.5 e IE9, -webkit- e -moz- servono a visualizzare le ombre in  Safari e in Firefox. I tre numeri che seguono i due punti (5px 5px 3px) sono rispettivamente lo spostamento lungo l&#8217;asse x, lo spostamento lungo l&#8217;asse y e il raggio di sfocatura dell&#8217;ombra. Nell&#8217;esempio sopra vogliamo che l&#8217;ombra sia spostata di 5 pixel lungo x (valori positivi spostano l&#8217;ombra verso destra, quelli negativi verso sinistra), 5 pixel lungo y valori positivi spostano l&#8217;ombra verso il basso, quelli negativi verso l&#8217;alto) e che il raggio di sfocatura sia di 3 pixel.  Le sei cifre dopo il cancelletto (#) sono il codice, in esadecimale, del colore dell&#8217;ombra, nel nostro caso nero (vai su <a href="http://html-color-codes.info/">http://html-color-codes.info/</a> per trovare il codice del colore che preferisci).</p>
<p>Il risultato lo potete vedere qui sotto:</p>
<div style="background: #FF0080; color: #fff; box-shadow: 5px 5px 3px #000;">Un blocco da ombreggiare</div>
<p>Considerazioni interessanti:</p>
<ul>
<li>l&#8217;ombra che viene a proiettarsi non fa parte delle dimensioni dell&#8217;elemento cui appartiene</li>
<li>le ombre posso essere applicate ad un elemento cui abbiamo applicato le direttiva <em>border-radius</em> (gli angoli arrotondati per capirci)</li>
</ul>
<p>Per ombreggiare del testo:</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="css"><pre class="de1"><span class="kw1">text-shadow</span><span class="sy0">:</span> <span class="re3">1px</span> <span class="re3">1px</span> <span class="re3">3px</span> <span class="re0">#848484</span><span class="sy0">;</span></pre></div></div></div></div></div></div></div>


<p>La direttiva funziona esattamente come quelle spiegato sopra. Ecco il risultato:</p>
<div style="text-shadow: 1px 1px 3px #848484;">Testo da ombreggiare</div>
<p>Non imparerete ad usare i css solo leggendo guide, perciò sperimentate sperimentate sperimentate&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eraclitux.com/en/2011/02/08/creare-ombre-con-i-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guardare i video flash con vlc o totem su Ubuntu</title>
		<link>http://www.eraclitux.com/en/2011/02/07/guardare-i-video-flash-con-vlc-o-totem-su-ubuntu/</link>
		<comments>http://www.eraclitux.com/en/2011/02/07/guardare-i-video-flash-con-vlc-o-totem-su-ubuntu/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 01:22:51 +0000</pubDate>
		<dc:creator>Eraclitux</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.eraclitux.com/?p=84</guid>
		<description><![CDATA[Difficoltà: Facile Conoscenze richieste: utilizzo di base di linux Sistema Operativo: Ubuntu 10.04 (ma dovrebbe funzionare in molte altre distro e versioni, fatemi sapere) Sapevate che potete vedere i video che usano il flash player (i video di youtube, i video &#8230; <a href="http://www.eraclitux.com/en/2011/02/07/guardare-i-video-flash-con-vlc-o-totem-su-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div class="guide-summary"><strong>Difficoltà:</strong> Facile<br />
<strong>Conoscenze richieste:</strong> utilizzo di base di linux<br />
<strong>Sistema Operativo:</strong> Ubuntu 10.04 (ma dovrebbe funzionare in molte altre distro e versioni, fatemi sapere)</div>
<p>Sapevate che potete vedere i video che usano il flash player (i video di youtube, i video su megavideo etc etc) direttamente su vlc o totem (il player di default di ubuntu)? Ecco come fare:<span id="more-84"></span></p>
<p>Andate all&#8217;indirizzo dove si trova il video.</p>
<p>Avviatelo e mettete in pausa il player.</p>
<p>Con il vostro file manager preferito andate nella posizione <code>/tmp </code> (Per quelli tra voi che non sanno neanche cosa sia un file manager, cliccate su Risorse (nella barra superiore del desktop)-&gt;Cartella Home-&gt;File system-&gt;tmp).</p>
<p>Qui dovreste trovare un file che si chiama in modo simile a FlashXXqualcosa.</p>
<p>Cliccateci su due volte per avviarlo con totem o tasto destro e apri con vlc.</p>
<p>Buona visione!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eraclitux.com/en/2011/02/07/guardare-i-video-flash-con-vlc-o-totem-su-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Riattivazione!</title>
		<link>http://www.eraclitux.com/en/2011/02/02/riattivazione/</link>
		<comments>http://www.eraclitux.com/en/2011/02/02/riattivazione/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 23:51:19 +0000</pubDate>
		<dc:creator>Eraclitux</dc:creator>
				<category><![CDATA[Point of view]]></category>
		<category><![CDATA[socialnetwork]]></category>

		<guid isPermaLink="false">http://www.eraclitux.com/?p=4</guid>
		<description><![CDATA[Il primo post del mio ennesimo blog. Quante volte ci ho provato in questi anni? Si contano sulle dita di una mano i tentativi di mantenere un mio blog personale, mi chiedo allora cosa succederà questa volta, cosa c&#8217;è di &#8230; <a href="http://www.eraclitux.com/en/2011/02/02/riattivazione/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Il primo post del mio ennesimo blog. Quante volte ci ho provato in questi anni? Si contano sulle dita di una mano i tentativi di mantenere un mio blog personale, mi chiedo allora cosa succederà questa volta, cosa c&#8217;è di diverso che permetterà a questa avventura di durare più delle altre. Cambiamenti in questi anni internet ne ha subiti parecchi come del resto è nella sua natura, una parola tra tutte riecheggia ovunque <em>social</em>.<span id="more-4"></span> Social-qualunque cosa è la moda del momento, il blog è divenuto uno strumento <em>antico</em> per i tempi della rete. Ricordo l&#8217;editoriale di un cosiddetto giornalista televisivo che anticipava la fine dell&#8217;informazione perché con l&#8217;aumento dei naviganti internet sarebbe diventata (secondo lui) una giungla dove ognuno aveva il suo blog e non leggeva quelli degli altri ed orientarsi tra questi miliardi di siti di informazione sarebbe stato impossibile. <!--more--><br />
Ora, è vero che questi ultimi anni il numero dei <em>net citizen</em> è aumentato esponenzialmente come è vero che tale numero è destinato a crescere ancora, ma non è assolutamente vero che la percentuale dei blogger è aumentata, anzi! Alla data in cui pubblico questo articolo www.wordpress.com dichiara di servire circa 392.000 blog, un numero piccolo per internet.Tutto questo flusso si è indirizzato maggiormente nei social-cosi (Twitter, Facebook etc etc) dimostrando che pur essendo aumentato il volume delle informazioni generate, la loro qualità non può certo essere paragonata a quella dei &#8220;vecchi&#8221; classici post. Potete pensarla diversamente ma per me scrivere in modo convulsivo messaggi di 160 caratteri descrivendo cosa si sta mangiando o se si è in bagno o postare a rotta di collo link, che magari non si è nemmeno letti,   non può essere paragonato allo scrivere un bell&#8217;articolo di centinaia di battute magari corredato di foto e schemi che ha richiesto ore per essere realizato.</p>
<p>Cosa sarà di questo blog non lo so, sarebbe come rispondere a domande del tipo: c&#8217;è vita nell&#8217;universo? è nato prima l&#8217;uovo o la gallina? e che fine ha fatto la signora Healy<em>? </em>Spero che gli articoli e le guide che pubblicherò su questo blog possano essere utili a qualcuno anche solo una parte di come centinaia di articoli scritti da blogger di tutto il mondo sono stati per me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eraclitux.com/en/2011/02/02/riattivazione/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.eraclitux.com/en/feed/ ) in 1.20763 seconds, on May 25th, 2013 at 7:32 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 25th, 2013 at 8:32 pm UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  www.eraclitux.com/en/feed/ ) in 0.00885 seconds, on May 25th, 2013 at 8:23 pm UTC. -->