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

<channel>
	<title>NeXuS VUS (Very Unuseful Stuff)</title>
	<atom:link href="http://nexus.thenexus.it/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://nexus.thenexus.it/wordpress</link>
	<description>About me, my thoughts, my life and much other unuseful stuff... :)</description>
	<lastBuildDate>Thu, 16 Feb 2012 18:11:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<copyright>Copyright &#xA9; NeXuS VUS (Very Unuseful Stuff) 2011 </copyright>
	<managingEditor>massimo.fierro@gmail.com (NeXuS VUS (Very Unuseful Stuff))</managingEditor>
	<webMaster>massimo.fierro@gmail.com (NeXuS VUS (Very Unuseful Stuff))</webMaster>
	<image>
		<url>http://nexus.thenexus.it/wordpress/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>NeXuS VUS (Very Unuseful Stuff)</title>
		<link>http://nexus.thenexus.it/wordpress</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>About me, my thoughts, my life and much other unuseful stuff... :)</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &#38; Culture" />
	<itunes:author>NeXuS VUS (Very Unuseful Stuff)</itunes:author>
	<itunes:owner>
		<itunes:name>NeXuS VUS (Very Unuseful Stuff)</itunes:name>
		<itunes:email>massimo.fierro@gmail.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://nexus.thenexus.it/wordpress/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>Nginx, PHP, HTTPS global var and &#8220;single configuration&#8221; HTTP/HTTPS virtual host</title>
		<link>http://nexus.thenexus.it/wordpress/en/2012/02/17/english-nginx-php-https-global-var-and-single-configuration-httphttps-virtual-host/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2012/02/17/english-nginx-php-https-global-var-and-single-configuration-httphttps-virtual-host/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 18:11:06 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/?p=720</guid>
		<description><![CDATA[I recently stumbled upon the problem of configuring a virtual host in Nginx so that it can serve HTTP and HTTPS writing just one configuration section. I know that this is not the recommended way of configuring HTTP+HTTPS, but having &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2012/02/17/english-nginx-php-https-global-var-and-single-configuration-httphttps-virtual-host/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently stumbled upon the problem of configuring a virtual host in Nginx so that it can serve HTTP and HTTPS writing just one configuration section.</p>
<p>I know that this is not the recommended way of configuring HTTP+HTTPS, but having two separate sections when the configuration is the same except for 3 lines (server certificates and listen 443) doesn&#8217;t make much sense.</p>
<p>I initially followed the <a title="Nginx, configuring HTTPS servers" href="http://nginx.org/en/docs/http/configuring_https_servers.html" target="_blank">official tutorial</a> (most likely outdated) and added a part relative to PHP files</p>
<pre class="brush: plain">
server {
    listen 80;
    listen 443 ssl;
    server_name domain.ext;
    ssl_certificate domain.crt;
    ssl_certificate_key domain.key;

    # ... rest of the configuration

    # PHP stuff
    location ~ \.php$ {
    include fastcgi_params;
    fastcgi_intercept_errors on;
    fastcgi_pass 127.0.0.1:9001;
    # Fixes random Bad gateway errors
    fastcgi_buffer_size 128k;
    fastcgi_buffers 4 256k;
    fastcgi_busy_buffers_size 256k;
    fastcgi_temp_file_write_size 256k;
    }
}
</pre>
<p>Everything worked smoothly on two computers running Ubuntu 10.04 + Nginx and PHP-fpm from the Nginx PPA. I then tried to do the same on Ubuntu 11.10 and PHP-fpm installed from the official repositories: all hell broke lose.</p>
<p>All of a sudden the <code>$_GLOBALS["HTTPS"]</code> variable was not defined anymore even on secure connections. Setting such variable is an Apache specific behaviour, in all truth, but like most of the rest of the PHP community I learned to rely on it for secure connection detection.</p>
<p>Most of the guides I found online referred to setting the HTTPS variable explicitly in the appropriate server section via the <code>fcgi_param</code> directive, but I didn&#8217;t want to have two completely separate configuration sections.</p>
<p>I then resorted to a hybrid, which makes use of dual server sections and one include file. </p>
<p>The configuration file looks like this:</p>
<pre class="brush: plain">
# Nginx config file

# HTTP server section
server {
    listen 80;
    include domain.inc;
}

# HTTPS server section
server {
    listen 443 ssl;
    server_name domain.ext;
    ssl_certificate domain.crt;
    ssl_certificate_key domain.key;
    include domain.inc;
    fcgi_param HTTPS on;
}
</pre>
<p>The include file looks like this:</p>
<pre class="brush: plain">
# Nginx include file: domain.inc

# ... rest of the configuration

# PHP stuff
location ~ \.php$ {
    include fastcgi_params;
    fastcgi_intercept_errors on;
    fastcgi_pass 127.0.0.1:9001;
    # Fixes random Bad gateway errors
    fastcgi_buffer_size 128k;
    fastcgi_buffers 4 256k;
    fastcgi_busy_buffers_size 256k;
    fastcgi_temp_file_write_size 256k;
}
</pre>
<p>&#8230; and the magic is done!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2012%2F02%2F17%2Fenglish-nginx-php-https-global-var-and-single-configuration-httphttps-virtual-host%2F&amp;title=Nginx%2C%20PHP%2C%20HTTPS%20global%20var%20and%20%26%238220%3Bsingle%20configuration%26%238221%3B%20HTTP%2FHTTPS%20virtual%20host" id="wpa2a_2"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2012/02/17/english-nginx-php-https-global-var-and-single-configuration-httphttps-virtual-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 installation and FDDs</title>
		<link>http://nexus.thenexus.it/wordpress/en/2011/09/22/english-windows-7-installation-and-fdds/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2011/09/22/english-windows-7-installation-and-fdds/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 02:04:33 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Windows Tips]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/?p=716</guid>
		<description><![CDATA[If: the Windows 7 installer shows the blue background after &#8220;Starting Windows&#8221; You are still able to move the mouse pointer You do not actually have and FDD (Floppy Disk Drive) Reset your computer, enter the BIOS, and check that &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2011/09/22/english-windows-7-installation-and-fdds/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If: </p>
<ul>
<li>the Windows 7 installer shows the blue background after &#8220;Starting Windows&#8221;</li>
<li>You are still able to move the mouse pointer</li>
<li>You do not actually have and FDD (Floppy Disk Drive)</li>
</ul>
<p>Reset your computer, enter the BIOS, and check that your settings regarding FDDs are set to &#8220;Disable&#8221; (or &#8220;None&#8221;, depending on the BIOS).</p>
<p>It&#8217;s as stupid as it sound and it cost me 30 minutes.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2011%2F09%2F22%2Fenglish-windows-7-installation-and-fdds%2F&amp;title=Windows%207%20installation%20and%20FDDs" id="wpa2a_4"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2011/09/22/english-windows-7-installation-and-fdds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: install mldonkey on FreeNAS 8.0</title>
		<link>http://nexus.thenexus.it/wordpress/en/2011/08/11/english-howto-install-mldonkey-on-freenas-8-0/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2011/08/11/english-howto-install-mldonkey-on-freenas-8-0/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 08:28:19 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[bittorrent]]></category>
		<category><![CDATA[emule]]></category>
		<category><![CDATA[Freenas 8]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[mldonkey]]></category>
		<category><![CDATA[torrent]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/?p=695</guid>
		<description><![CDATA[FreeNAS 8.0 has been released a while ago, but it&#8217;s still lacking many features that nowadays are fundamental to any NAS (most of which will be fixed in 8.1). In particular it lacks any form of torrent manager, so I &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2011/08/11/english-howto-install-mldonkey-on-freenas-8-0/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>FreeNAS 8.0 has been released a while ago, but it&#8217;s still lacking many features that nowadays are fundamental to any NAS (<a href="http://www.freenas.org/about/news/item/freenas-81-roadmap">most of which will be fixed in 8.1</a>). In particular it lacks any form of torrent manager, so I decided to install MLDonkey on my box and write a small HowTo about it.<br />
<span id="more-695"></span></p>
<h3>Requirements:</h3>
<ul>
<li>A computer running FreeNAS 8.0</li>
<li>SSH access to said computer and root privileges</li>
<li>A volume with a few megabytes free to download the packages</li>
<li>A working internet connection</li>
</ul>
<h3>How does this work?</h3>
<p>When installing FreeNAS 8.0 on a USB drive (at least when using dd to write the disk image), the UFS image used to mount the root partition has about 22 MiB free. Since MLDonkey (without GUI, made exception for the integrated web-server) and its dependencies require roughly 11 MiBs, there is more than enough space to install it.</p>
<h3>Howto:</h3>
<ol>
<li>Login in your FreeNAS box as root (the password is the same that you set for the admin user)</li>
<li>Change directory to the one that will contain the downloaded files
<pre class="brush: bash">cd /path/to/directory/</pre>
</li>
<li>Download <a href="http://nexus.thenexus.it/install_mldonkey_freenas8.sh">this script</a> (code shown below) by running
<pre class="brush: bash">fetch http://nexus.thenexus.it/install_mldonkey_freenas8.sh</pre>
<p>             Please note that the script has been written by a lazy-bum (myself) and <strong>there is no error checking</strong>! Any improvements to the script are welcome. </li>
<li>Execute the script you just downloaded by running 
<pre class="brush: bash">sh install_mldonkey_freenas8.sh</pre>
</li>
<li>MLDonkey is now installed, you can launch it by typing <code>mlnet</code>, further information and guides vailable at <a href="http://mldonkey.sourceforge.net/Main_Page" title="MLDonkey Homepage"></a></li>
</ol>
<h3>Note:</h3>
<p>At the time of writing the available packages were the following:</p>
<ul>
<li>net-p2p/mldonkey-core-3.0.6</li>
<li>graphics/jpeg-8_3</li>
<li>graphics/gd-2.0.35_7,1</li>
</ul>
<p>You might need to change the file names appearing in the howto according to new releases.</p>
<h3>The script&#8217;s code</h3>
<pre class="brush: bash">
#!/bin/bash

ARCH=`uname -m`
MACHINE=`uname  -r | cut -d- -f1-2 | awk '{print tolower($0)}'`
SERVER=ftp://ftp.freebsd.org
ROOTDIR=/pub/FreeBSD/ports

fetch ${SERVER}${ROOTDIR}/${ARCH}/packages-${MACHINE}/graphics/jpeg-8_3.tbz
fetch ${SERVER}${ROOTDIR}/${ARCH}/packages-${MACHINE}/graphics/gd-2.0.35_7,1.tbz
fetch ${SERVER}${ROOTDIR}/${ARCH}/packages-${MACHINE}/net-p2p/mldonkey-core-3.0.6.tbz

mount -o rw -t ufs /dev/ufs/FreeNASs1a /
pkg_add jpeg-8_3.tbz gd-2.0.35_7,1.tbz mldonkey-core-3.0.6.tbz
mount -o ro -t ufs /dev/ufs/FreeNASs1a /
</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2011%2F08%2F11%2Fenglish-howto-install-mldonkey-on-freenas-8-0%2F&amp;title=Howto%3A%20install%20mldonkey%20on%20FreeNAS%208.0" id="wpa2a_6"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2011/08/11/english-howto-install-mldonkey-on-freenas-8-0/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Addio, piccolo Nuvola</title>
		<link>http://nexus.thenexus.it/wordpress/en/2011/07/18/addio-piccolo-nuvola/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2011/07/18/addio-piccolo-nuvola/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 10:27:24 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Simply NeXuS]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/?p=668</guid>
		<description><![CDATA[Sorry, this entry is only available in Italiano.]]></description>
			<content:encoded><![CDATA[<p>Sorry, this entry is only available in <a href="http://nexus.thenexus.it/wordpress/feed/">Italiano</a>.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2011%2F07%2F18%2Faddio-piccolo-nuvola%2F&amp;title=Addio%2C%20piccolo%20Nuvola" id="wpa2a_8"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2011/07/18/addio-piccolo-nuvola/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Mumble the new panacea for podcasters?</title>
		<link>http://nexus.thenexus.it/wordpress/en/2011/06/20/mumble-e-la-nuova-panacea-del-podcasting/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2011/06/20/mumble-e-la-nuova-panacea-del-podcasting/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 09:29:33 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Podcast]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/?p=674</guid>
		<description><![CDATA[Recording conference calls for multiple host podcasts has always been pretty much a huge pain in the ass. In particular, in the early days, this could not be done without multi-channel audio cards (or multiple audio cards), a hardware mixer &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2011/06/20/mumble-e-la-nuova-panacea-del-podcasting/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recording conference calls for multiple host podcasts has always been pretty much a huge pain in the ass. In particular, in the early days, this could not be done without multi-channel audio cards (or multiple audio cards), a hardware mixer and a whole messy bunch of cables.</p>
<div id="attachment_685" class="wp-caption aligncenter" style="width: 310px"><a href="http://nexus.thenexus.it/wordpress/wp-content/uploads/2011/06/audio_mixer_and_cable_spaghetti.jpg"><img src="http://nexus.thenexus.it/wordpress/wp-content/uploads/2011/06/audio_mixer_and_cable_spaghetti-300x199.jpg" alt="Audio mixer and cable spaghetti" title="Audio mixer and cable spaghetti" width="300" height="199" class="size-medium wp-image-685" /></a><p class="wp-caption-text">A damn mess... (This picture is somebody else&#039;s, but I couldn&#039;t find the author. All credits to him/her)</p></div>
<p>Things have always been a little confusing on the software side: depending on the operating system there is the chance to have software mixers performing the same task as the hardware one, but they usually require applications to explicitly support their API/communication protocol (e.g. JACK on Linux).</p>
<p>Furthermore, even in the case that the audio protocol is standard for the whole system, the application may not support per-caller streaming, which makes editing and mastering the levels in post-production extremely hard (although there are some tools, such as Levelator, that help in the task).</p>
<p>Now we all have an open-source, multi-platform alternative (runs on Linux, MacOS, Windows), and its name is Mumble.</p>
<p><a href="http://nexus.thenexus.it/wordpress/wp-content/uploads/2011/06/Screenshot-Mumble-1.2.3-1ubuntu6.png"><img src="http://nexus.thenexus.it/wordpress/wp-content/uploads/2011/06/Screenshot-Mumble-1.2.3-1ubuntu6-300x205.png" alt="Screenshot of Mumble on Peppermint Linux" title="Screenshot of Mumble on Peppermint Linux" width="300" height="205" class="aligncenter size-medium wp-image-676" /></a></p>
<p>Mumble is born as an open-source, standards-based, low-latency, high-quality Voice-over-IP communication tool for gamers: as opposed to common alternatives such as Ventrilo, Skype and TeamSpeak that are instead closed-source (TeamSpeak had a particularly bad history of slow upgrades).<br />
While open-source is nice and everything, Mumble was not better suited than the rest of the pack when it came to podcasting, it actually was a little worse than some of the competition (there are multiple plugins for Skype that allow call recording).</p>
<p>But Mumble does now have a trump card to play: since version 1.2.3 it allows to record the conversations going on a channel in a server, either as a mixdown (one file for the whole conversation) or using one file per participant.</p>
<div id="attachment_677" class="wp-caption aligncenter" style="width: 310px"><a href="http://nexus.thenexus.it/wordpress/wp-content/uploads/2011/06/Screenshot-Recorder.png"><img src="http://nexus.thenexus.it/wordpress/wp-content/uploads/2011/06/Screenshot-Recorder-300x143.png" alt="Screenshot of Mumble Recorder" title="Screenshot of Mumble Recorder" width="300" height="143" class="size-medium wp-image-677" /></a><p class="wp-caption-text">Notice the &quot;Multichannel&quot; option, that is what we all waited for!</p></div>
<p>Not only that, but multiple recording formats are supported: PCM uncompressed (wave), AU uncompressed, FLAC lossless compression, and OGG lossy compression.</p>
<div id="attachment_682" class="wp-caption aligncenter" style="width: 310px"><a href="http://nexus.thenexus.it/wordpress/wp-content/uploads/2011/06/Screenshot-Recorder-1.png"><img src="http://nexus.thenexus.it/wordpress/wp-content/uploads/2011/06/Screenshot-Recorder-1-300x143.png" alt="Screenshot of Mumble Recorder&#039;s compression formats" title="Screenshot of Mumble Recorder&#039;s compression formats" width="300" height="143" class="size-medium wp-image-682" /></a><p class="wp-caption-text">There is even FLAC for all of us audiophiles.</p></div>
<p>The beauty of it all is that such freedom of choice also allows older, or low-power systems to be used as recording stations; while one would require a fairly powerful system to record a party of 10 in FLAC, I was able to record an OGG compressed multi-channel discussion between me and a friend on a 1.5 GHz Pentium-M with lots of headroom.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2011%2F06%2F20%2Fmumble-e-la-nuova-panacea-del-podcasting%2F&amp;title=Is%20Mumble%20the%20new%20panacea%20for%20podcasters%3F" id="wpa2a_10"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2011/06/20/mumble-e-la-nuova-panacea-del-podcasting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Italiano) Sono tornato diciottenne</title>
		<link>http://nexus.thenexus.it/wordpress/en/2011/03/10/sono-tornato-diciottenne/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2011/03/10/sono-tornato-diciottenne/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 10:24:03 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Holy cow!]]></category>
		<category><![CDATA[Simply NeXuS]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/?p=661</guid>
		<description><![CDATA[Sorry, this entry is only available in Italiano.]]></description>
			<content:encoded><![CDATA[<p>Sorry, this entry is only available in <a href="http://nexus.thenexus.it/wordpress/feed/">Italiano</a>.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2011%2F03%2F10%2Fsono-tornato-diciottenne%2F&amp;title=%28Italiano%29%20Sono%20tornato%20diciottenne" id="wpa2a_12"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2011/03/10/sono-tornato-diciottenne/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>L&#8217;ora della verità</title>
		<link>http://nexus.thenexus.it/wordpress/en/2011/01/19/lora-della-verita/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2011/01/19/lora-della-verita/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 04:54:02 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Italia sÃ¬ Italia no]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[What?]]></category>
		<category><![CDATA[World Revolution]]></category>
		<category><![CDATA[berlusconi]]></category>
		<category><![CDATA[inchiesta]]></category>
		<category><![CDATA[minetti]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[scandalo]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2011/01/19/lora-della-verita/</guid>
		<description><![CDATA[It&#8217;s been quite some time since I last wrote on these pages, mostly because I dedicated myself to podcasting. Now, thought, I have a goo reason to write. It is the time for truth. What truth? Simple, it is time &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2011/01/19/lora-della-verita/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quite some time since I last wrote on these pages, mostly because I dedicated myself to podcasting.</p>
<p>Now, thought, I have a goo reason to write. It is the time for <strong>truth</strong>.</p>
<p>What truth? Simple, it is time to know whether Italy is a <strong>democracy</strong>, and if <strong>law </strong>applies equally to everyone. It is also the time to discover how <strong>stupid</strong>, or <strong>hypocrites</strong>, Italians are.</p>
<p><a href="http://www.ilfattoquotidiano.it/2011/01/18/il-buttasu-collettivo-visto-da-una-ragazza-normale/">Il buttas&ugrave; collettivo</a></p>
<p><a href="http://www.danielemartinelli.it/2011/01/18/a-quando-le-dimissioni-di-nicole-minetti/">A quando le dimissioni di Nicole Minetti?</a></p>
<p><a href="http://feedproxy.google.com/~r/IntuizioniOvvie/~3/B9fkNE5Tj7A/Il-registro-delle-chiamate-Rubbi-Troia.aspx">Il regno delle chiamate: Rubbi Troia</a></p>
<p><a href="http://feedproxy.google.com/~r/IntuizioniOvvie/~3/dbnDeU7xxT8/Nicole-Minetti-e-adesso-dimettiti.aspx">Nicole Minetti, adesso dimettiti!</a></p>
<p><a href="http://nonleggerlo.blogspot.com/2011/01/ho-ridato-prestigio-ed-autorevolezza.html">&#8220;Ho ridato prestigio ed autorevolezza all&#8217;Italia in sede</a>&nbsp;<a href="http://nonleggerlo.blogspot.com/2011/01/ho-ridato-prestigio-ed-autorevolezza.html">internazionale&#8221;</a></p>
<p>News arrive even here in Korea&#8230;</p>
<p>&nbsp;<a href="http://www.koreaherald.com/national/Detail.jsp?newsMLId=20110116000221">Teenager: Berlusconi gave me 7000 Euros</a>&nbsp;&nbsp;</p>
<p><a href="http://www.koreaherald.com/national/Detail.jsp?newsMLId=20110118000122">Prosecutors; Berlusconi had many prostitutes</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2011%2F01%2F19%2Flora-della-verita%2F&amp;title=L%26%238217%3Bora%20della%20verit%C3%A0" id="wpa2a_14"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2011/01/19/lora-della-verita/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>P!=NP has been proved?</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/08/09/631/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/08/09/631/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 05:06:27 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Holy cow!]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[What?]]></category>
		<category><![CDATA[World Revolution]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=631</guid>
		<description><![CDATA[Via Slashdot &#8220;Researcher Vinay Deolalikar from HP Labs claims proof that P != NP. The 100-page paper has apparently not been peer-reviewed yet, so feel free to dig in and find some flaws. However, the attempt seems to be quite &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2010/08/09/631/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Via <a href="http://science.slashdot.org/story/10/08/08/226227/Claimed-Proof-That-P--NP">Slashdot</a></p>
<p style="padding-left: 30px;">&#8220;Researcher Vinay Deolalikar from HP Labs claims proof that P != NP. The <a href="http://www.scribd.com/doc/35539144/pnp12pt">100-page paper</a> has apparently not been peer-reviewed yet, so feel free to dig in and find some flaws. However, the attempt seems to be quite genuine, and Deolalikar has published papers in the same field in the past. So this may be the real thing. Given that $1M from the Millennium Prize is involved, it will certainly get enough scrutiny. Greg Baker broke the story on his blog, including the email Deolalikar sent around.&#8221;</p>
<p>If this is true, we have one of the most incredible and revolutionary discoveries of the last decennia.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F08%2F09%2F631%2F&amp;title=P%21%3DNP%20has%20been%20proved%3F" id="wpa2a_16"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/08/09/631/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nuovo indirizzo per il podcast &#8220;Into the NeXuS&#8221;</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/07/28/nuovo-indirizzo-per-il-podcast-into-the-nexus/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/07/28/nuovo-indirizzo-per-il-podcast-into-the-nexus/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 12:10:04 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Into the NeXuS]]></category>
		<category><![CDATA[Podcast]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/?p=635</guid>
		<description><![CDATA[Attenzione, da qualche giorno il sito del pocast è all&#8217;indirizzo indicato qui sotto. Il presente blog non verrà più usato a tale scopo. http://nexus.thenexus.it/wordpress/podcast Potete seguire il feed RSS all&#8217;indirizzo qui sotto. http://nexus.thenexus.it/wordpress/podcast/feed/ In alternativa potete fare riferimento al sito &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2010/07/28/nuovo-indirizzo-per-il-podcast-into-the-nexus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Attenzione, da qualche giorno il sito del pocast è all&#8217;indirizzo indicato qui sotto. Il presente blog non verrà più usato a tale scopo.<br />
<a href="http://nexus.thenexus.it/wordpress/podcast">http://nexus.thenexus.it/wordpress/podcast</a></p>
<p>Potete seguire il feed RSS all&#8217;indirizzo qui sotto.<br />
<a href="http://nexus.thenexus.it/wordpress/podcast/feed/">http://nexus.thenexus.it/wordpress/podcast/feed/</a></p>
<p><a href="http://nexus.thenexus.it/wordpress/podcast/feed/"></a>In alternativa potete fare riferimento al sito di blip.tv, al seguente indirizzo.<br />
<a href="http://intothenexus.blip.tv">http://intothenexus.blip.tv</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F07%2F28%2Fnuovo-indirizzo-per-il-podcast-into-the-nexus%2F&amp;title=Nuovo%20indirizzo%20per%20il%20podcast%20%26%238220%3BInto%20the%20NeXuS%26%238221%3B" id="wpa2a_18"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/07/28/nuovo-indirizzo-per-il-podcast-into-the-nexus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chinese script kids</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/07/21/chinese-script-kids/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/07/21/chinese-script-kids/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 12:11:54 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Simply NeXuS]]></category>
		<category><![CDATA[cina]]></category>
		<category><![CDATA[cracker]]></category>
		<category><![CDATA[script kid]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=621</guid>
		<description><![CDATA[That&#8217;s nice news, I just figured out that some Chinese script kiddies are trying to access my ssh accessible home server by brute-forcing username and password. Speechless.]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s nice news, I just figured out that some Chinese script kiddies are trying to access my ssh accessible home server by brute-forcing username and password.</p>
<p>Speechless.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F07%2F21%2Fchinese-script-kids%2F&amp;title=Chinese%20script%20kids" id="wpa2a_20"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/07/21/chinese-script-kids/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Into the NeXuS 02&#215;02 &#8211; Cellule sexy</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/07/17/into-the-nexus-02x02-cellule-sexy/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/07/17/into-the-nexus-02x02-cellule-sexy/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 20:11:53 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Into the NeXuS]]></category>
		<category><![CDATA[Podcast]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=609</guid>
		<description><![CDATA[Facendo una citazione forse inappropriata: â€œed ora, per qualcosa di completamente diverso&#8230;â€ Ecco a voi la prima intervista di â€œInto the NeXuSâ€. Ospite odierno mr. Valentino Berto, bassista eccezionale dei â€œSilenzio Ã¨ sexyâ€ e â€œLe cellule dormientiâ€, nonchÃ¨ amico di &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2010/07/17/into-the-nexus-02x02-cellule-sexy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><center><br />
<embed src="http://blip.tv/play/hf0gge7PQgA%2Em4v" type="application/x-shockwave-flash" width="320" height="240" allowscriptaccess="always" allowfullscreen="true"></embed><br />
</center></p>
<p>Facendo una citazione forse inappropriata: â€œed ora, per qualcosa di completamente diverso&#8230;â€</p>
<p>Ecco a voi la prima intervista di â€œInto the NeXuSâ€. Ospite odierno mr. Valentino Berto, bassista eccezionale dei â€œSilenzio Ã¨ sexyâ€ e â€œLe cellule dormientiâ€, nonchÃ¨ amico di lungo corso del sottoscritto.<br />
Insieme a Valentino scopriremo i â€œSilenzio Ã¨ Sexyâ€, ripercorreremo la sua carriera artistica e faremo quattro chiacchiere davanti ad una birra virtuale sulla distribuzione commerciale della musica al giorno dâ€™oggi. </p>
<p>Con questa puntata introduco anche una nuova forma di scaletta, spero piÃ¹ chiara della precedente: gli argomenti trattati sono marcati da punti, mentre i brani musicali sono numerati progressivamente.</p>
<ul>
<li>Intro</li>
</ul>
<ol start="1">
<li>Rein &#8211; Il deserto di Piero</li>
</ol>
<ul>
<li>Intervista &#8211; Parte Prima</li>
</ul>
<ol start="2">
<li>Silenzio Ã¨ sexy &#8211; Ci vuole pazienza</li>
</ol>
<ul>
<li>Intervista &#8211; Parte Seconda</li>
</ul>
<ol start="3">
<li>Silenzio Ã¨ sexy &#8211; Nostalgia goodbye</li>
</ol>
<p><center>Link per la puntata</center><br />
<a href="http://www.myspace.com/silenzioesexy">Silenzio eâ€™ sexy &#8211; Myspace</a><br />
<a href="http://www.myspace.com/lecelluledormienti">Le cellule dormienti &#8211; Myspace</a><br />
<a href="http://www.myspace.com/valentinoberto">Valentino Berto &#8211; Myspace</a></p>
<p><strong> Audio only:</strong> <a href="http://blip.tv/file/get/THeNeXuS-IntoTheNeXuS02x02CelluleSexy684.mp3">Download MP3</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F07%2F17%2Finto-the-nexus-02x02-cellule-sexy%2F&amp;title=Into%20the%20NeXuS%2002%26%23215%3B02%20%26%238211%3B%20Cellule%20sexy" id="wpa2a_22"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/07/17/into-the-nexus-02x02-cellule-sexy/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
			<enclosure url="http://blip.tv/file/get/THeNeXuS-IntoTheNeXuS02x02CelluleSexy684.mp3" length="0" type="audio/mpeg" />
	</item>
		<item>
		<title>Into The NeXuS &#8211; 02&#215;01 &#8211; Live!</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/07/15/into-the-nexus-stagione-02-episodio-01-live/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/07/15/into-the-nexus-stagione-02-episodio-01-live/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 11:50:13 +0000</pubDate>
		<dc:creator>Into the NeXuS</dc:creator>
				<category><![CDATA[Into the NeXuS]]></category>
		<category><![CDATA[Podcast]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2010/07/15/into-the-nexus-stagione-02-episodio-01-live/</guid>
		<description><![CDATA[Into The NeXuS &#8211; 02&#215;01 &#8211; Live! Scarica il file video in formato Flash. Scarica l&#8217;MP3 della trasmissione. NOTA: L&#8217;audio del video (lo so, che giro di parole) e&#8217; ancora quello orginale, molto basso. A presto un nuovo video con &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2010/07/15/into-the-nexus-stagione-02-episodio-01-live/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><embed src="http://blip.tv/play/AwKQ1yc" type="application/x-shockwave-flash" width="320" height="270" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>Into The NeXuS &#8211; 02&#215;01 &#8211; Live!<br />
																				<a rel="enclosure" href="http://blip.tv/file/get/THeNeXuS-IntoTheNeXuSStagione02Episodio01Live494.flv"></a></p>
<p><a rel="enclosure" href="http://blip.tv/file/get/THeNeXuS-IntoTheNeXuSStagione02Episodio01Live494.flv">Scarica</a> il file video in formato Flash.</p>
<p><a href="http://blip.tv/file/get/THeNeXuS-IntoTheNeXuSStagione02Episodio01Live509.mp3">Scarica</a> l&#8217;MP3 della trasmissione.</p>
<p>NOTA: L&#8217;audio del video (lo so, che giro di parole) e&#8217; ancora quello orginale, molto basso. A presto un nuovo video con audio rimsterizzato (come fa fico!).</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F07%2F15%2Finto-the-nexus-stagione-02-episodio-01-live%2F&amp;title=Into%20The%20NeXuS%20%26%238211%3B%2002%26%23215%3B01%20%26%238211%3B%20Live%21" id="wpa2a_24"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/07/15/into-the-nexus-stagione-02-episodio-01-live/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
			<enclosure url="http://blip.tv/file/get/THeNeXuS-IntoTheNeXuSStagione02Episodio01Live494.flv" length="0" type="video/x-flv" />
		<enclosure url="http://blip.tv/file/get/THeNeXuS-IntoTheNeXuSStagione02Episodio01Live509.mp3" length="0" type="audio/mpeg" />
	</item>
		<item>
		<title>One of the reasons I love Korea&#8230;</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/05/02/one-of-the-reasons-i-love-korea/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/05/02/one-of-the-reasons-i-love-korea/#comments</comments>
		<pubDate>Sun, 02 May 2010 14:32:45 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Simply NeXuS]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Korea!]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[speed]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=597</guid>
		<description><![CDATA[&#8230; and I&#8217;ll be sad about when I have to leave.]]></description>
			<content:encoded><![CDATA[<p>&#8230; and I&#8217;ll be sad about when I have to leave.</p>
<p><a href="http://nexus.thenexus.it/wordpress/wp-content/uploads/2010/05/Steam_5MB_sec1.png"><img src="http://nexus.thenexus.it/wordpress/wp-content/uploads/2010/05/Steam_5MB_sec1.png" alt="Steam 5 MB/sec download" title="Steam_5MB_sec" width="287" height="131" class="alignleft size-full wp-image-599" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F05%2F02%2Fone-of-the-reasons-i-love-korea%2F&amp;title=One%20of%20the%20reasons%20I%20love%20Korea%26%238230%3B" id="wpa2a_26"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/05/02/one-of-the-reasons-i-love-korea/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Io sto con Emergency</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/04/16/io-sto-con-emergency/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/04/16/io-sto-con-emergency/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 11:59:43 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Simply NeXuS]]></category>
		<category><![CDATA[Emergency]]></category>
		<category><![CDATA[Io sto con Emergency]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2010/04/16/io-sto-con-emergency/</guid>
		<description><![CDATA[Di tutte le organizzazioni non governative che conosco Emergency e&#8217; una delle poche (insieme, ad esempio, a Medici senza frontiere) a cui do il mio appoggio incondizionato. Io sto con Emergency.]]></description>
			<content:encoded><![CDATA[<p>Di tutte le organizzazioni non governative che conosco Emergency e&#8217; una delle poche (insieme, ad esempio, a Medici senza frontiere) a cui do il mio appoggio incondizionato.</p>
<p>Io sto con Emergency.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F04%2F16%2Fio-sto-con-emergency%2F&amp;title=Io%20sto%20con%20Emergency" id="wpa2a_28"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/04/16/io-sto-con-emergency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 anni ed una moglie</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/04/07/30-anni-ed-una-moglie/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/04/07/30-anni-ed-una-moglie/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 03:00:59 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Simply NeXuS]]></category>
		<category><![CDATA[corea]]></category>
		<category><![CDATA[fiori di ciliegio]]></category>
		<category><![CDATA[matrimonio]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=592</guid>
		<description><![CDATA[E&#8217; bello come io sia sempre in ritardo. Beh, non sempre, ma spesso. Ho incominciato a scrivere questo artiocolo (il titolo, per l&#8217;esattezza) il giorno del mio compleanno, il 7 Aprile. Oggi e&#8217; il 15 e sto scrivendo le prime &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2010/04/07/30-anni-ed-una-moglie/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>E&#8217; bello come io sia sempre in ritardo. Beh, non sempre, ma spesso.</p>
<p>Ho incominciato a scrivere questo artiocolo (il titolo, per l&#8217;esattezza) il giorno del mio compleanno, il 7 Aprile. Oggi e&#8217; il 15 e sto scrivendo le prime parole. Il post sara&#8217; comunque datato al 7, potenza della tecnologia.<span id="more-592"></span></p>
<p>Ebbene si&#8217;, e&#8217; l&#8217;anno 2010 e come tutti i nati nel 1980 (che anno!) oggi compio 30 anni. 30 anni e non sentirli, a volte, o sentirli troppo tal&#8217;altre. 30 anni che sono passati in fretta, troppo in fretta, tanto in fretta che faccio fatica a ricordare i momenti migliori. E&#8217; buffo come la mente umana si fossilizzi, tranne in rari fortunatissimi casi, sui ricordi piu&#8217; brutti, su quelle cose che lasciano i segni piu&#8217; profondi, solo per poi arrivare alla fine della via e domandarsi: &#8220;Ma chi me l&#8217;ha fatto fare di rovinarmi la vita da solo?&#8221;.</p>
<p>Dato che anche io faccio parte della schiera dei non-fortunati, e che per tradizione genetica-familiare son tendente alla depressione, mi costa uno sforzo infinito guardare avanti invece che indietro, concentrarmi su cio&#8217; che di bello ho, invece su ciÃ² che di (piÃ¹) bello vorrei avere.</p>
<p>Eppure questi trent&#8217;anni sono stati segnati da un evento felice: sono infatti uomo accasato da 20 Febbraio di quest&#8217;anno. E&#8217; stata una scelta ragionata, ma, come tutte le grandi scelte della vita, non senza qualche dubbio, che tutt&#8217;ora permane. Tutto stara&#8217; alla mia capacita&#8217; di pensare in positivo e guardare avanti.</p>
<p>Se poi proprio dovessi dirla tutta avevo pensato di iniziare questo post parlando dei fiori di ciliegio (l&#8217;albero, sakura in giapponese, qui si chiama ë²šë‚˜ë¬´ [beotnamu], il bocciolo/fiore ë²šê½ƒ [beotgot]) che ho avuto la fortuna di vedere per la terza volta. Non me ne rendo neanche conto, ma sono giÃ  passati tre anni da quando sono approdato in questa buffa terra, quasi per sbaglio, con la sensazione che il Giappone fosse cosÃ¬ vicino ed invece&#8230; </p>
<p>Ed i fiori di ciliegio, sbocciati da appena una settimana o poco piÃ¹, sono giÃ  caduchi, bellezze di breve vita come le farfalle. Ma sboccerano nuovamente l&#8217;anno prossimo e quello seguente ancora, ed io  forse avrÃ² modo di conoscere di persona tutte quelli che, come fiori di ciliegio, hanno visitato questo blog e mi hanno scritto per chiedermi qualcosa a proposito della Corea e della mia esperienza in questo paese (di cui noi italiani sappiamo cosÃ¬ poco) per poi sparire nel nulla.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F04%2F07%2F30-anni-ed-una-moglie%2F&amp;title=30%20anni%20ed%20una%20moglie" id="wpa2a_30"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/04/07/30-anni-ed-una-moglie/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>(Italiano) LHC funziona&#8230; ed il mondo non Ã¨ esploso!</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/03/31/lhc-funziona-ed-il-mondo-non-e-esploso/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/03/31/lhc-funziona-ed-il-mondo-non-e-esploso/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 03:36:05 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Happy happy NeXuS!]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[World Revolution]]></category>
		<category><![CDATA[it works]]></category>
		<category><![CDATA[LHC]]></category>
		<category><![CDATA[new physiscs]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2010/03/31/lhc-funziona-ed-il-mondo-non-e-esploso/</guid>
		<description><![CDATA[Sorry, this entry is only available in Italiano.]]></description>
			<content:encoded><![CDATA[<p>Sorry, this entry is only available in <a href="http://nexus.thenexus.it/wordpress/feed/">Italiano</a>.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F03%2F31%2Flhc-funziona-ed-il-mondo-non-e-esploso%2F&amp;title=%28Italiano%29%20LHC%20funziona%26%238230%3B%20ed%20il%20mondo%20non%20%C3%83%C2%A8%20esploso%21" id="wpa2a_32"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/03/31/lhc-funziona-ed-il-mondo-non-e-esploso/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forza&#8230; anzi, no. Povera Italia!</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/03/23/forza-anzi-no-povera-italia/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/03/23/forza-anzi-no-povera-italia/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 20:47:27 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Simply NeXuS]]></category>
		<category><![CDATA[berlusconi]]></category>
		<category><![CDATA[forza]]></category>
		<category><![CDATA[ignoranti]]></category>
		<category><![CDATA[Italia]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=587</guid>
		<description><![CDATA[Via ByoBlu]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="objectVideo"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="movie" value="http://video.unita.it/inc/UnitaVideo.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><param name="FlashVars" value="vURL=http://video.unita.it/asx/989.asx" /><embed width="500" height="344" src="http://video.unita.it/inc/UnitaVideo.swf" quality="high" bgcolor="#FFFFFF" allowscriptaccess="always" allowfullscreen="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="vURL=http://video.unita.it/asx/989.asx"></embed></object> </p>
<p>Via <a href="http://www.byoblu.com/post/2010/03/22/Meno-male-che-Silvio-ce.aspx?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed:+IntuizioniOvvie+(Il+VideoBlog+di+Claudio+Messora)">ByoBlu</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F03%2F23%2Fforza-anzi-no-povera-italia%2F&amp;title=Forza%26%238230%3B%20anzi%2C%20no.%20Povera%20Italia%21" id="wpa2a_34"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/03/23/forza-anzi-no-povera-italia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<enclosure url="http://video.unita.it/asx/989.asx" length="5054" type="video/x-ms-asf" />
	</item>
		<item>
		<title>(Italiano) Mini-server casalingo</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/01/21/mini-server-casalingo/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/01/21/mini-server-casalingo/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 19:29:36 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[New toys]]></category>
		<category><![CDATA[Celeron]]></category>
		<category><![CDATA[E1500]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[SS4200E]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=574</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><span id="more-574"></span></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F01%2F21%2Fmini-server-casalingo%2F&amp;title=%28Italiano%29%20Mini-server%20casalingo" id="wpa2a_36"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/01/21/mini-server-casalingo/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>(Italiano) &#8230; e ora ricordiamoci grazie a chi Berlusconi e&#8217; quello che e&#8217;&#8230;</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/01/11/e-ora-ricordiamoci-grazie-a-chi-berlusconi-e-quello-che-e/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/01/11/e-ora-ricordiamoci-grazie-a-chi-berlusconi-e-quello-che-e/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 16:51:05 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Italia sÃ¬ Italia no]]></category>
		<category><![CDATA[berlusconi]]></category>
		<category><![CDATA[bicamerale]]></category>
		<category><![CDATA[d'alema]]></category>
		<category><![CDATA[inciucio]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=572</guid>
		<description><![CDATA[Passaparola: &#8220;Piu&#8217; dell&#8217;inciucio pote&#8217; D&#8217;Alema&#8221; e &#8220;Il partito unico dell&#8217;amore&#8221;]]></description>
			<content:encoded><![CDATA[<p>Passaparola: &#8220;Piu&#8217; dell&#8217;inciucio pote&#8217; D&#8217;Alema&#8221; e &#8220;Il partito unico dell&#8217;amore&#8221;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="386" id="utv720734" name="utv_n_934005"><param name="flashvars" value="autoplay=false" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.ustream.tv/flash/video/3536594" /><embed flashvars="autoplay=false" width="480" height="386" allowfullscreen="true" allowscriptaccess="always" id="utv720734" name="utv_n_934005" src="http://www.ustream.tv/flash/video/3536594" type="application/x-shockwave-flash" /></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/g9xPbmf2l-Y&#038;rel=0&#038;color1=0xe1600f&#038;color2=0xfebd01&#038;hl=it_IT&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/g9xPbmf2l-Y&#038;rel=0&#038;color1=0xe1600f&#038;color2=0xfebd01&#038;hl=it_IT&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F01%2F11%2Fe-ora-ricordiamoci-grazie-a-chi-berlusconi-e-quello-che-e%2F&amp;title=%28Italiano%29%20%26%238230%3B%20e%20ora%20ricordiamoci%20grazie%20a%20chi%20Berlusconi%20e%26%238217%3B%20quello%20che%20e%26%238217%3B%26%238230%3B" id="wpa2a_38"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/01/11/e-ora-ricordiamoci-grazie-a-chi-berlusconi-e-quello-che-e/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Italiano) Brunetta e l&#8217;attacco all&#8217;articolo 1 della Costituzione italiana.</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/01/03/brunetta-e-lattacco-allarticolo-1-della-costituzione-italiana/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/01/03/brunetta-e-lattacco-allarticolo-1-della-costituzione-italiana/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 05:06:38 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Italia sÃ¬ Italia no]]></category>
		<category><![CDATA[What?]]></category>
		<category><![CDATA[art. 1]]></category>
		<category><![CDATA[brunetta]]></category>
		<category><![CDATA[Costituzione]]></category>
		<category><![CDATA[Repubblica]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=569</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><span id="more-569"></span></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F01%2F03%2Fbrunetta-e-lattacco-allarticolo-1-della-costituzione-italiana%2F&amp;title=%28Italiano%29%20Brunetta%20e%20l%26%238217%3Battacco%20all%26%238217%3Barticolo%201%20della%20Costituzione%20italiana." id="wpa2a_40"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/01/03/brunetta-e-lattacco-allarticolo-1-della-costituzione-italiana/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Episodio 11 &#8211; Bugie</title>
		<link>http://nexus.thenexus.it/wordpress/en/2010/01/01/episodio-11-bugie/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2010/01/01/episodio-11-bugie/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 02:57:30 +0000</pubDate>
		<dc:creator>Into the NeXuS</dc:creator>
				<category><![CDATA[Into the NeXuS]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Annozero]]></category>
		<category><![CDATA[baldassarri]]></category>
		<category><![CDATA[ballaro]]></category>
		<category><![CDATA[berlusconi]]></category>
		<category><![CDATA[bondi]]></category>
		<category><![CDATA[bugie]]></category>
		<category><![CDATA[Italia]]></category>
		<category><![CDATA[mafia]]></category>
		<category><![CDATA[open pandora]]></category>
		<category><![CDATA[tinti]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2010/01/01/episodio-11-bugie/</guid>
		<description><![CDATA[Click to Play Episodio di fine anno soffertissimo, costellato di problemi tecnici nella realizzazione, nonche&#39; primo esperimento video. Sono troppo stanco per scrivere altro che &#34;Buon 2010&#34;, che possiate avere un anno migliore di quello passato.]]></description>
			<content:encoded><![CDATA[<div>					<embed src="http://blip.tv/play/AYG6tW8A" type="application/x-shockwave-flash" width="320" height="300" allowscriptaccess="always" allowfullscreen="true"></embed>					<br />					<a rel="enclosure" href="http://blip.tv/file/get/THeNeXuS-Episodio11Bugie661.avi">Click to Play</a>					</div>
<div class="blip_description">
<p>Episodio di fine anno soffertissimo, costellato di problemi tecnici nella realizzazione, nonche&#39; primo esperimento video.</p>
<p>Sono troppo stanco per scrivere altro che &#34;Buon 2010&#34;, che possiate avere un anno migliore di quello passato.</p>
</div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2010%2F01%2F01%2Fepisodio-11-bugie%2F&amp;title=Episodio%2011%20%26%238211%3B%20Bugie" id="wpa2a_42"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2010/01/01/episodio-11-bugie/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
			<enclosure url="http://blip.tv/file/get/THeNeXuS-Episodio11Bugie661.avi" length="519277034" type="video/x-msvideo" />
	</item>
		<item>
		<title>Stackless Python vs. Go</title>
		<link>http://nexus.thenexus.it/wordpress/en/2009/11/19/stackless-python-vs-go/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2009/11/19/stackless-python-vs-go/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 10:17:18 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[go]]></category>
		<category><![CDATA[goroutine]]></category>
		<category><![CDATA[performance comparison]]></category>
		<category><![CDATA[stackless python]]></category>
		<category><![CDATA[tasklet]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2009/11/19/stackless-python-vs-go/</guid>
		<description><![CDATA[Note: I did a little more research and it turns out that the gc runtime creates one OS thread only, and then adds threads as a way to avoid I/O locks. On the other hand the gccgo runtime maps goroutines &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2009/11/19/stackless-python-vs-go/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Note</strong>: I did a little more research and it turns out that <strong>the gc runtime creates one OS thread only, and then adds threads as a way to avoid I/O locks.</strong> On the other hand <strong>the gccgo runtime maps goroutines and p_threads on a 1 to 1 basis</strong> (as of now).</p>
<p>I have been lazily following the Go language project for a while now, when it<br />
was suddenly discussed in this post of &#8220;Appunti Digitali&#8221; (in italian), that<br />
pointed at <a href="http://dalkescientific.com/writings/diary/archive/2009/11/15/<br />
100000_tasklets.html" title="100,000 tasklets: Stackless and Go">this post</a><br />
on Dalke Scientific. </p>
<p>It really got me that S.Python manages to beat Go so<br />
badly, so I decided to run my own tests on my trusty old IBM X-41 (Pentium-M 1.5<br />
GHz).</p>
<p><span id="more-547"></span></p>
<p>I compiled the Go toolchain and S.Python, then ran the<br />
test exactly as I found them on the Dalke page. The results are following<br />
hereby:</p>
<p><code>$ time ./8.out <br />100000</p>
<p>real 0m5.197s <br />user 0m1.508s <br />sys 0m1.352s</code></p>
<p><code>$ time<br />
/usr/local/bin/python2.6 test.py <br />100000 </p>
<p>real 0m3.315s <br />user 0m1.556s <br />sys 0m0.148s</code></p>
<p>What really struck me is that<br />
the time spent in userland is roughly the same for both programs. What really<br />
kills the Go execution time is that it spends almost as much time in kernel<br />
mode. I wondered why&#8230;</p>
<p>Then I remembered that, in the Google Tech Talk,<br />
Pike said something about the Go runtime managing threads for the user, and I<br />
automatically thought that it would associate user threads with OS threads in<br />
some way (as is the norm). In fact that is what gccgo does (uses NTPL).</p>
<p>On<br />
the other hand, reading Stackless Python documentation, I found this page<br />
regarding <a href="http://zope.stackless.com/wiki/Tasklets" title="Stackless<br />
Python: Tasklets">Tasklets</a>. The page clearly states: &#8220;Tasklets are<br />
characterized by being very lightweight and portable, and make great<br />
alternatives to system threads or processes.&#8221;</p>
<p>So I am prone to believe<br />
that S.Python Tasklets are managed by the Python VM itself, requiring no<br />
user-to-kernel mode transitions and no other kernel interaction&#8230; because they<br />
are not real threads (as opposed to Go goroutines).</p>
<p>This, with the fact<br />
that <em>Go is mainly intended to cut compile time</em> (not so much running<br />
time), makes me believe the comparison to be pretty unfair, and I think Go<br />
provides quite a performance!</p>
<p>Regarding certain unsafe situations, they<br />
are definitely a problem. Still, I believe that they will be taken care of<br />
quickly: Go is a brand new language and rough edges are to be expected here and<br />
there, but it has quite some room for growth.</p>
<p><strong>Update:</strong></p>
<p>I modified the test program so that each goroutine/Tasklet calls a second<br />
function that loops 1000 times and cumulates the result of &#8220;sum = sum+1&#8243;.</p>
<p>The results are as expected: the compiled code is one order of magnitude faster<br />
than Stackless Python interpreted code! I also replaced range with xrange, as <a href="http://www.appuntidigitali.it/4998/ce-posto-per-google-go-prime-<br />
impressioni-sul-nuovo-linguaggio-di-bigg/#comment-27071">suggested</a> by Cesare<br />
Di Mauro, but that did not change things much&#8230; nor did it when I tried psyco<br />
(a JIT compiler for Python).</p>
<p>
<code><br />
$time ./test2 &#038;&#038; time /usr/local/bin/python test2.py<br />
100000</p>
<p>real    0m4.037s<br />
user    0m1.040s<br />
sys     0m0.840s<br />
100000</p>
<p>real    0m19.567s<br />
user    0m15.697s<br />
sys     0m0.160s<br />
</code>
</p>
<p>The source code for Python is:<br />
<code lang="python'><br />
import stackless<br />
from optparse import OptionParser</p>
<p>parser = OptionParser()<br />
parser.add_option("-n", type="int", dest="num_tasklets", help="how many",<br />
default=100000)</p>
<p>def f(left, right):<br />
    loop()<br />
    left.send(right.receive()+1)</p>
<p>def loop():<br />
    sum = 0<br />
    for i in xrange (1,1000):<br />
        sum=sum+1</p>
<p>def main():<br />
    options, args = parser.parse_args()<br />
    leftmost = stackless.channel()<br />
    left, right = None, leftmost<br />
    for i in xrange(options.num_tasklets):<br />
        left, right = right, stackless.channel()<br />
        stackless.tasklet(f)(left, right)<br />
    right.send(0)<br />
    x = leftmost.receive()<br />
    print x</p>
<p>stackless.tasklet(main)()<br />
stackless.run()<br />
</code></p>
<p>And the test code for Go is:<br />
<code lang="c'><br />
package main</p>
<p>import (<br />
        "flag";<br />
        "fmt";<br />
)</p>
<p>var ngoroutine = flag.Int("n", 100000, "how many")</p>
<p>func f(left, right chan int) {<br />
        loop();<br />
        left < - 1+<-right;<br />
}</p>
<p>func loop() {<br />
        var sum int;<br />
        sum = 0;<br />
        for i := 0; i < 1000; i++ {<br />
                sum = sum + 1<br />
        }<br />
}</p>
<p>func main() {<br />
        flag.Parse();<br />
        leftmost := make(chan int);<br />
        var left, right chan int = nil, leftmost;<br />
        for i := 0; i < *ngoroutine; i++ {<br />
                left, right = right, make(chan int);<br />
                go f(left, right);<br />
        }<br />
        right <- 0;             // bang!<br />
        x := <-leftmost;        // wait for completion<br />
        fmt.Println(x);         // 100000<br />
}<br />
</code><br />
</code></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2009%2F11%2F19%2Fstackless-python-vs-go%2F&amp;title=Stackless%20Python%20vs.%20Go" id="wpa2a_44"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2009/11/19/stackless-python-vs-go/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Episodio 10 &#8211; Cento di questi podcast!</title>
		<link>http://nexus.thenexus.it/wordpress/en/2009/11/16/episodio-10-cento-di-questi-podcast/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2009/11/16/episodio-10-cento-di-questi-podcast/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 13:33:03 +0000</pubDate>
		<dc:creator>Into the NeXuS</dc:creator>
				<category><![CDATA[Into the NeXuS]]></category>
		<category><![CDATA[Podcast]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2009/11/16/episodio-10-cento-di-questi-podcast/</guid>
		<description><![CDATA[Click to Play Arrivo in doppia crifra al cardiopalma: e&#8217; pure il compleanno di &#8220;Into the NeXuS&#8221;! Rivista leggermente l&#8217;intro e premio ugola d&#8217;oro per lo speaker, tecnico del suono, news feed reader e fac-totum del podcast&#8230; ovvero me stesso. &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2009/11/16/episodio-10-cento-di-questi-podcast/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>
	<a rel="enclosure" href="http://blip.tv/file/get/THeNeXuS-Episodio10CentoDiQuestiPodcast643.mp3"><br />
	<img alt="Video thumbnail. Click to play" src="http://blip.tv/file/get/THeNeXuS-Episodio10CentoDiQuestiPodcast643.mp3.jpg" border="0" /><br />
	</a><br />
	<br />
	<a rel="enclosure" href="http://blip.tv/file/get/THeNeXuS-Episodio10CentoDiQuestiPodcast643.mp3">Click to Play</a>
</div>
<div class="blip_description">
	Arrivo in doppia crifra al cardiopalma: e&#8217; pure il compleanno di &#8220;Into the NeXuS&#8221;!<br />
	Rivista leggermente l&#8217;intro e premio ugola d&#8217;oro per lo speaker, tecnico del suono, news feed reader e fac-totum del podcast&#8230; ovvero me stesso.<br />
	Auguri &#8220;Into the NeXuS&#8221; e presto, si spera, arriveranno pure i regali di buon compleanno</p>
<p></p>
<p>	Errata corridge:</p>
<ul>
<li>
			Ovviamente non si puo&#8217; ripulire la fedina penale ad un incensurato, perdonate il lapsus.
		</li>
<li>
			Scudo fiscale: dato che la legge prevede il computo per soli 5 anni, se si tengono fondi all&#8217;estero per 10 anni sia paga solo sui primi 5.
		</li>
</ul>
<p></p>
<p>	Gli argomenti di oggi:</p>
<ul>
<li>
			La possibile legge sul &#8220;processo breve&#8221;.</p>
<ul>
<li>
					<a href=http://antefatto.ilcannocchiale.it/post/2377505.html id=mu67 title="Ci prendono per scemi? (Bruno Tinti - Il fatto quotidiano)">Ci prendono per scemi? (Bruno Tinti &#8211; Il fatto quotidiano)</a>
				</li>
<li>
					<a href=http://antefatto.ilcannocchiale.it/post/2379436.html id=wez5 title="Incostituzionale  e pericoloso il processo breve (Bruno Tinti - Il fatto quotidiano)">Incostituzionale e pericoloso il processo breve (Bruno Tinti &#8211; Il fatto quotidiano)</a>
				</li>
</ul>
</li>
<li>
			<a href=http://download.repubblica.it/pdf/2009/sentenza-fininvest-mondadori.pdf id=yzjz title="Sentenza dal calzino turchese">Sentenza dal calzino turchese</a> (Pagamento dei danni da parte di Fininvest nei confronti di CIR in sede civile)
		</li>
<li>
			I regali per il primo compleanno del podcast.</p>
<ul>
<li>M-Audio Audio Buddy, mic preamp</li>
<li>Blue Microphones Icicle, XLR-to-USB microphone amp and audio interface</li>
</ul>
<ul>
<li>
						<a href=http://devnotes.posterous.com/blue-icicle-review-audio-on-windows-woof-or-r id=nw9g title="Recensione su Girton's Devnotes">Recensione su Girton&#8217;s Devnotes</a>
					</li>
<li>
						<a href=http://www.geardiary.com/2009/04/14/reviewblue-icicle-xlr-usb-interface/ id=x58f title="Recensione su GearDiary">Recensione su GearDiary</a>
					</li>
<li>
						<a href=http://recordinghacks.com/2009/07/04/usb-interface-review-icicle-micportpro-micmate-x2u/ id=xmko title="Comparativa su RecordingHacks">Comparativa su RecordingHacks</a>
					</li>
</ul>
</li>
</ul>
<li>
			<a href=http://www.cittadinolex.kataweb.it/article_view.jsp?idArt=88841&amp;idCat=33 id=s0a: title="Scudo fiscale">Scudo fiscale</a></p>
<ul>
<li><a href=http://www.parlamento.it/parlam/leggi/09102l.htm id=nzom style=COLOR:#551a8b title="Testo di legge">Testo di legge</a></li>
<li>L&#8217;indecenza del governo</li>
<li>L&#8217;indecenza dell&#8217;opposizione</li>
<li>Aliquota realmente al 5%?</li>
</ul>
</li>
<li>
			Sono davvero i giudici fannulloni il problema della giustizia italiana?
		</li>
<p></p>
<p>	La musica di oggi:</p>
<ul>
<li>
			<a href=http://www.jamendo.com/en/album/29801 id=s5c4 title="VVS Design - Happy Birthday">VVS Design &#8211; Happy Birthday</a>&nbsp;(con voce, udite udite, di NeXuS!)
        </li>
<li>
			<a href=http://www.jamendo.com/en/album/48396 id=n4qp title="Sekshun 8 - Black Winged Butterfly (Black Winged Butterfly)">Sekshun 8 &#8211; Black Winged Butterfly (Black Winged Butterfly)</a>
        </li>
<li>
			<a href=http://www.jamendo.com/en/album/3973 id=nnf4 title="All:My:Faults - The Anger Manifest (The Anger Manifest)">All:My:Faults &#8211; Sand of Time (The Anger Manifest)</a>
        </li>
<li>
			<a href=http://www.jamendo.com/en/album/7505 id=r4el title="Pornophonique - Lemmings in love (8-bit lagerfeuer)">Pornophonique &#8211; Lemmings in love (8-bit lagerfeuer)</a>
        </li>
<li>
			<a href=http://magnatune.com/artists/albums/mandrake-anger/ id=ra60 title="Mandrake Root - Feed me anger (The Seventh Mirror)">Mandrake Root &#8211; Feed me anger (The Seventh Mirror)</a>
        </li>
<li>
			<a href=http://magnatune.com/artists/albums/jag-cypress/ id=s-8s title="JAG - (Cypress Grove Blues)">JAG &#8211; Guitar Rag (Cypress Grove Blues)</a>
        </li>
<li>
			<a href=http://www.jamendo.com/en/album/4267 id=b4mj title="Dark Dew - Dark Dew (Dark Dew Demo)">Dark Dew &#8211; Dark Dew (Dark Dew Demo)</a>
        </li>
</ul>
</div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2009%2F11%2F16%2Fepisodio-10-cento-di-questi-podcast%2F&amp;title=Episodio%2010%20%26%238211%3B%20Cento%20di%20questi%20podcast%21" id="wpa2a_46"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2009/11/16/episodio-10-cento-di-questi-podcast/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>New toys</title>
		<link>http://nexus.thenexus.it/wordpress/en/2009/11/09/new-toys/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2009/11/09/new-toys/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 14:45:15 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[New toys]]></category>
		<category><![CDATA[Podcast]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=527</guid>
		<description><![CDATA[Still translating, please be patient.]]></description>
			<content:encoded><![CDATA[<p>Still translating, please be patient.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2009%2F11%2F09%2Fnew-toys%2F&amp;title=New%20toys" id="wpa2a_48"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2009/11/09/new-toys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Episodio 09 &#8211; Senza titolo</title>
		<link>http://nexus.thenexus.it/wordpress/en/2009/11/01/episodio-09-senza-titolo/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2009/11/01/episodio-09-senza-titolo/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 12:16:45 +0000</pubDate>
		<dc:creator>Into the NeXuS</dc:creator>
				<category><![CDATA[Into the NeXuS]]></category>
		<category><![CDATA[Podcast]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2009/11/01/episodio-09-senza-titolo/</guid>
		<description><![CDATA[Click to Play Episodio 09 &#8211; Senza titolo Episodio partito in sostanziale leggerezza e terminato nella piu&#8217; sconfinata tristezza e mestizia. L&#8217;Italia muore. L&#8217;Italia e&#8217; mafiosa. Viva l&#8217;Italia. Unica notizia positiva della giornata e&#8217; che finalmente i case di OpenPandora &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2009/11/01/episodio-09-senza-titolo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>					<a rel="enclosure" href="http://blip.tv/file/get/THeNeXuS-Episodio09SenzaTitolo864.mp3"><img alt="Video thumbnail. Click to play" src="http://blip.tv/file/get/THeNeXuS-Episodio09SenzaTitolo864.mp3.jpg" border="0" /></a>					<br />					<a rel="enclosure" href="http://blip.tv/file/get/THeNeXuS-Episodio09SenzaTitolo864.mp3">Click to Play</a>					</div>
<div class="blip_description">Episodio 09 &#8211; Senza titolo</p>
<p>Episodio partito in sostanziale leggerezza e terminato nella piu&#8217; sconfinata tristezza e mestizia. L&#8217;Italia muore. L&#8217;Italia e&#8217; mafiosa. Viva l&#8217;Italia.</p>
<p>Unica notizia positiva della giornata e&#8217; che finalmente i case di OpenPandora sono in produzione e saranno presto spediti in Texas per l&#8217;assemblaggio.</p>
<div>Gli argomenti di oggi:</p>
<ul>
<li><a href="http://www.clarkschpiell.com/csp/gold/">GOLD &#8211; The series</a></li>
<li><a href="http://nerdocast.podomatic.com/">Nerdcast</a></li>
<li>Giuliani ed il video scomparso</li>
</ul>
<ul>
<li><a href="http://www.byoblu.com/post/2009/10/07/7-giorni-La-videocassetta-che-uccide.aspx?S=CITE">Byoblu &#8211; 7 Giorni. La videocassetta che uccide.</a></li>
</ul>
<li><a href="http://openpandora.org/">OpenPandora</a></li>
<ul>
<li><a href="http://pandorapress.net/">Unofficial Pandora Community Blog</a></li>
<li><a href="http://www.kultpower.de/pandoravideos/?">Pandora Video Vault</a></li>
</ul>
<li><a href="http://www.dyson.com/technology/airmultiplier.asp">Dyson Air Multiplier</a></li>
<ul>
<li>Engadget &#8211; <a href="http://www.engadget.com/2009/10/12/dysons-air-multiplier-is-the-overpriced-bladeless-fan-you-never/">Dyson&#39;s Air Multiplier is the overpriced bladeless fan you never asked for</a></li>
<li>Gizmodo &#8211; <a href="http://gizmodo.com/5379890/dyson-air-multiplier-review-making-a-300-fan-takes-cojones">Making a 300$ fan takes cojones</a></li>
<li><a href="http://www.youtube.com/watch?v=6nEY9P665nQ">Air Multiplier Reactions</a> (Youtube)</li>
</ul>
<p>La musica di oggi:
<ul>
<li>Amity In Fame &#8211; Mirror of Humans (Dinner for One)</li>
<li>TenPenny Joke &#8211; Never Enough (Ambush on All Sides)</li>
<li>Jaime Heras &#8211; Siderea (Siderea)</li>
<li>Carlo Gatta e le Gommeverdi &#8211; Dio che paura (Eterogenie)</li>
</ul>
</div>
</div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fnexus.thenexus.it%2Fwordpress%2Fen%2F2009%2F11%2F01%2Fepisodio-09-senza-titolo%2F&amp;title=Episodio%2009%20%26%238211%3B%20Senza%20titolo" id="wpa2a_50"><img src="http://nexus.thenexus.it/wordpress/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://nexus.thenexus.it/wordpress/en/2009/11/01/episodio-09-senza-titolo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

