<?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) &#187; Information Technology</title>
	<atom:link href="http://nexus.thenexus.it/wordpress/category/information-technology/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>Tue, 06 Mar 2012 17:43:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</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;
    fastcgi_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>[ALTERNATIVE]</p>
<p>The problem is due to the fact that the <code>fastcgi_params</code> file is not present. Even if it were, the <code>$https</code> variable is not defined anymore in recent versions of nginx.</p>
<p>The solution is to add the following lines to your <code>nginx.conf</code> file</p>
<pre class="brush: plain">
# Assigns $https depending on value of  $scheme
# $scheme is either "http" (default), or "https"
map $scheme $https {
	default off;
	https	on;
}
</pre>
<p>and then create the fastcgi_params file with the following content (will set a few parameters commonly used by Apache/PHP)</p>
<pre class="brush: plain">
fastcgi_param	QUERY_STRING            $query_string;
fastcgi_param	REQUEST_METHOD     $request_method;
fastcgi_param	CONTENT_TYPE           $content_type;
fastcgi_param	CONTENT_LENGTH     $content_length;

fastcgi_param	SCRIPT_FILENAME       $request_filename;
fastcgi_param	SCRIPT_NAME              $fastcgi_script_name;
fastcgi_param	REQUEST_URI               $request_uri;
fastcgi_param	DOCUMENT_URI          $document_uri;
fastcgi_param	DOCUMENT_ROOT      $document_root;
fastcgi_param	SERVER_PROTOCOL     $server_protocol;

fastcgi_param	GATEWAY_INTERFACE	CGI/1.1;
fastcgi_param	SERVER_SOFTWARE	nginx/$nginx_version;

fastcgi_param	REMOTE_ADDR             $remote_addr;
fastcgi_param	REMOTE_PORT             $remote_port;
fastcgi_param	SERVER_ADDR               $server_addr;
fastcgi_param	SERVER_PORT               $server_port;
fastcgi_param	SERVER_NAME              $server_name;

fastcgi_param	HTTPS			        $https;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param	REDIRECT_STATUS	200;
</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%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%E2%80%9Csingle%20configuration%E2%80%9D%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>8</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_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/06/20/mumble-e-la-nuova-panacea-del-podcasting/feed/</wfw:commentRss>
		<slash:comments>0</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_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/2010/08/09/631/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</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_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/2010/01/21/mini-server-casalingo/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Stopping Qt compilation</title>
		<link>http://nexus.thenexus.it/wordpress/en/2009/08/31/506/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2009/08/31/506/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 09:43:00 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[What?]]></category>
		<category><![CDATA[compilation]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=506</guid>
		<description><![CDATA[Today I tried stopping Qt complation on my Windows maching (using MS compiler). Here are the last few lines of output. moc_formextractor.cpp moc_mainwindow.cpp Generating Code... cl -c -nologo -Zm200 -Zc:wchar_t- -O2 -MD -GR -EHsc -W3 -w34100 -w34189 -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2009/08/31/506/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I tried stopping Qt complation on my Windows maching (using MS compiler).</p>
<p>Here are the last few lines of output.<span id="more-506"></span></p>
<p><code><br />
moc_formextractor.cpp<br />
moc_mainwindow.cpp<br />
Generating Code...<br />
        cl -c -nologo -Zm200 -Zc:wchar_t- -O2 -MD -GR -EHsc -W3 -w34100 -w34189<br />
-DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_NO_DEBUG -DQT_WEBKIT_LIB -DQT_GUI_<br />
LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -I"..\..\..\include\QtCore" -I"..\..\..\in<br />
clude\QtGui" -I"..\..\..\include\QtWebKit" -I"..\..\..\include" -I"..\..\..\incl<br />
ude\ActiveQt" -I"tmp\moc\release_static" -I"." -I"." -I"..\..\..\mkspecs\win32-m<br />
svc2008" -Fotmp\obj\release_static\ @C:\DOCUME~1\MASSIM~1.CIL\LOCALS~1\Temp\nmA2<br />
E.tmp<br />
qrc_formextractor.cpp<br />
        link /LIBPATH:"c:\Qt\2009.03\qt\lib" /LIBPATH:"c:\Qt\2009.03\qt\lib" /NO<br />
LOGO /INCREMENTAL:NO /MANIFEST /MANIFESTFILE:"tmp\obj\release_static\formExtract<br />
or.intermediate.manifest" /SUBSYSTEM:WINDOWS "/MANIFESTDEPENDENCY:type='win32' n<br />
ame='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b6<br />
4144ccf1df' language='*' processorArchitecture='*'" /OUT:release\formExtractor.e<br />
xe @C:\DOCUME~1\MASSIM~1.CIL\LOCALS~1\Temp\nmA2F.tmp<br />
NNNMMMNAAAMKKKAEEEK   E:::    :fff aaaftttaaaatllla   leee rrrerrrrooorrrro   rU<br />
UU 111U000155508885:::8   : NMAKE : fatal error U1058: ttttteeeeerrrrrmmmmmiiiii<br />
nnnnnaaaaattttteeeeeddddd     bbbbbyyyyy     uuuuussssseeeeerrrrr</p>
<p>SSSSStttttoooooppppp.....<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%2F08%2F31%2F506%2F&amp;title=Stopping%20Qt%20compilation" 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/2009/08/31/506/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pandora!!!</title>
		<link>http://nexus.thenexus.it/wordpress/en/2008/10/09/pandora/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2008/10/09/pandora/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 03:21:04 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[PC and Console Games]]></category>
		<category><![CDATA[What?]]></category>
		<category><![CDATA[World Revolution]]></category>
		<category><![CDATA[Console]]></category>
		<category><![CDATA[Handheld Computer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenPandora]]></category>
		<category><![CDATA[Pandora]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=345</guid>
		<description><![CDATA[Holy crap! I did not know about the project Pandora. It is millions of times better than the crappy GP-32! WTF, they already sold out the firs production batch (3000 units)! I will have to wait Christmas&#8230; Here are the &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2008/10/09/pandora/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><lang_en><br />
Holy crap! </p>
<p>I did not know about the project <a href="http://www.openpandora.org">Pandora</a>. It is millions of times better than the crappy GP-32!</p>
<p>WTF, they already sold out the firs production batch (3000 units)! I will have to wait Christmas&#8230;</p>
<p>Here are the specs of the system:<br />
    * ARMÂ® Cortexâ„¢-A8 600Mhz+ CPU running Linux<br />
    * 430-MHz TMS320C64x+â„¢ DSP Core<br />
    * PowerVR SGX OpenGL 2.0 ES compliant 3D hardware<br />
    * 800&#215;480 4.3&#8243; 16.7 million colours touchscreen LCD<br />
    * Wifi 802.11b/g, Bluetooth &#038; High Speed USB 2.0 Host<br />
    * Dual SDHC card slots &#038; SVideo TV output<br />
    * Dual Analogue and Digital gaming controls<br />
    * 43 button QWERTY and numeric keypad<br />
    * Around 10+ Hours battery life</p>
<p>Down below a render and videos. Enjoy the goodies of collaboration and open source!<br />
</lang_en></p>
<p><lang_it><br />
Porca pupazza! </p>
<p>Non conoscevo il progetto <a href="http://www.openpandora.org">Pandora</a>. E&#8217; milioni di volte meglio dello schifosissimo GP-32!</p>
<p>Porc, hanno gia&#8217; venduto il primo batch di produzione (3000 unita&#8217;)! Mi tocchera&#8217; aspettare Natale&#8230;</p>
<p>Ecco le specifiche del sistema:<br />
    * ARMÂ® Cortexâ„¢-A8 600Mhz+ CPU running Linux<br />
    * 430-MHz TMS320C64x+â„¢ DSP Core<br />
    * PowerVR SGX OpenGL 2.0 ES compliant 3D hardware<br />
    * 800&#215;480 4.3&#8243; 16.7 million colours touchscreen LCD<br />
    * Wifi 802.11b/g, Bluetooth &#038; High Speed USB 2.0 Host<br />
    * Dual SDHC card slots &#038; SVideo TV output<br />
    * Dual Analogue and Digital gaming controls<br />
    * 43 button QWERTY and numeric keypad<br />
    * Around 10+ Hours battery life</p>
<p>Qui sotto un render e video. Godetevi le gioie della collaborazione e dell&#8217;open source!<br />
</lang_it></p>
<p><span id="more-345"></span><img width="250px" src="http://openpandora.org/bigone.jpg" alt="Pandora high resolution render" /></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/KBP5CZeCqJA&#038;hl=it&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/KBP5CZeCqJA&#038;hl=it&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/bbTT77NOPSs&#038;hl=it&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/bbTT77NOPSs&#038;hl=it&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" 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%2F2008%2F10%2F09%2Fpandora%2F&amp;title=Pandora%21%21%21" 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/2008/10/09/pandora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Study online</title>
		<link>http://nexus.thenexus.it/wordpress/en/2008/09/22/studiare-online/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2008/09/22/studiare-online/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 00:48:43 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[World Revolution]]></category>
		<category><![CDATA[Berkley]]></category>
		<category><![CDATA[MIT]]></category>
		<category><![CDATA[OpenCourseWare]]></category>
		<category><![CDATA[Stanford]]></category>
		<category><![CDATA[Stanford Engineering Everywhere]]></category>
		<category><![CDATA[Webcast]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=332</guid>
		<description><![CDATA[MIT releases publicly it&#8217;s classes since a long time, under the initiative OpenCourseWare. To MIT have nowadays followed both the campuses of Berkley and Stanford with the initiatives Webcast and Stanford Engineering Everywhere. These are websites to absolutely keep in &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2008/09/22/studiare-online/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>MIT releases publicly it&#8217;s classes since a long time, under the initiative <a href="http://ocw.mit.edu/OcwWeb/web/home/home/index.htm">OpenCourseWare</a>.</p>
<p>To MIT have nowadays followed both the campuses of Berkley and Stanford with the initiatives <a href="http://webcast.berkeley.edu/">Webcast</a> and <a href="http://see.stanford.edu/">Stanford Engineering Everywhere</a>.</p>
<p>These are websites to absolutely keep in your bookmarks and check quite often.</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%2F2008%2F09%2F22%2Fstudiare-online%2F&amp;title=Study%20online" 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/2008/09/22/studiare-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matlab 7 (R14), Ubuntu 8.04 and GCC 4.x</title>
		<link>http://nexus.thenexus.it/wordpress/en/2008/08/22/matlab-7-r14-ubuntu-804-and-gcc-4x/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2008/08/22/matlab-7-r14-ubuntu-804-and-gcc-4x/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 11:19:57 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[gcc 4]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[matlab]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=292</guid>
		<description><![CDATA[I recently had the necessity to install Matlab on a Linux machine running Ubuntu 8.04 and I have encountered a few quirks here and there. First it is a good idea to run unset LANG before running Matlab, otherwise certain &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2008/08/22/matlab-7-r14-ubuntu-804-and-gcc-4x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently had the necessity to install Matlab on a Linux machine running Ubuntu 8.04 and I have encountered a few quirks here and there.</p>
<p>First it is a good idea to run <code>unset LANG</code> before running Matlab, otherwise certain GUI components, such as the directory selection modal dialog, will not run properly.</p>
<p>Second, it is necessary to modify the options related to mex, the C (or Fortran) to Matlab interface. The reason is that with GCC 4.x it is no more necessary to link against libstd and trying to do so will cause quite a bit of hassle (you can solve it on Fedora by installing gcc-compat, which is not available on Ubuntu, as far as I know). The solution is then to modify the file <code>~/.matlab/R14/mexopts.sh</code> and simply remove the <code>-lstdc++</code> option from the gcc section.</p>
<p>Finally I would suggest to run Matlab from console: KDE does not get along well with it.</p>
<p>Hope this helps.</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%2F2008%2F08%2F22%2Fmatlab-7-r14-ubuntu-804-and-gcc-4x%2F&amp;title=Matlab%207%20%28R14%29%2C%20Ubuntu%208.04%20and%20GCC%204.x" 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/2008/08/22/matlab-7-r14-ubuntu-804-and-gcc-4x/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Presentation Zen</title>
		<link>http://nexus.thenexus.it/wordpress/en/2008/07/16/presentation-zen/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2008/07/16/presentation-zen/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 00:30:15 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[World Revolution]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=269</guid>
		<description><![CDATA[Via orangegeek Presentation Zen website]]></description>
			<content:encoded><![CDATA[<p>Via <a href="http://www.orangeek.org/archive/2008/07/01/Garr_Reynolds_Presentation_Zen/my_weblog#track">orangegeek</a></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/DZ2vtQCESpk&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/DZ2vtQCESpk&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="344"></embed></object></p>
<p><a href="http://www.presentationzen.com/">Presentation Zen</a> website</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%2F2008%2F07%2F16%2Fpresentation-zen%2F&amp;title=Presentation%20Zen" 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/2008/07/16/presentation-zen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(Italiano) Reiser confessa</title>
		<link>http://nexus.thenexus.it/wordpress/en/2008/07/13/reiser-confessa/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2008/07/13/reiser-confessa/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 06:16:56 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[What?]]></category>
		<category><![CDATA[reiser]]></category>
		<category><![CDATA[uxoricidio]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=266</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/category/information-technology/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%2F2008%2F07%2F13%2Freiser-confessa%2F&amp;title=%28Italiano%29%20Reiser%20confessa" 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/2008/07/13/reiser-confessa/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>I washed my pendrive</title>
		<link>http://nexus.thenexus.it/wordpress/en/2008/06/11/ho-lavato-il-mio-pendrive/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2008/06/11/ho-lavato-il-mio-pendrive/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 03:55:16 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[lavatrice]]></category>
		<category><![CDATA[luxl]]></category>
		<category><![CDATA[pen-drive]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/?p=250</guid>
		<description><![CDATA[My relatively new 4GB pen-drive, a LUXL one, has been subject to a full cold water washing cycle, with detergent and softener. Luckily, thanks to the plastic case junctions, it still works perfectly. Happy that I bought it&#8230;]]></description>
			<content:encoded><![CDATA[<p>My relatively new 4GB pen-drive, a LUXL one, has been subject to a full cold water washing cycle, with detergent and softener.</p>
<p>Luckily, thanks to the plastic case junctions, it still works perfectly.</p>
<p>Happy that I bought it&#8230;</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%2F2008%2F06%2F11%2Fho-lavato-il-mio-pendrive%2F&amp;title=I%20washed%20my%20pendrive" 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/2008/06/11/ho-lavato-il-mio-pendrive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>(Italiano) KDE4 on Windows</title>
		<link>http://nexus.thenexus.it/wordpress/en/2008/03/11/kde4-on-windows/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2008/03/11/kde4-on-windows/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 11:00:18 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Windows Tips]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2008/03/11/kde4-on-windows/</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/category/information-technology/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%2F2008%2F03%2F11%2Fkde4-on-windows%2F&amp;title=%28Italiano%29%20KDE4%20on%20Windows" 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/2008/03/11/kde4-on-windows/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>To eee or not to eee?</title>
		<link>http://nexus.thenexus.it/wordpress/en/2008/02/22/to-eee-or-not-to-eee/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2008/02/22/to-eee-or-not-to-eee/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 13:18:32 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Hamletic doubts]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Simply NeXuS]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2008/02/22/to-eee-or-not-to-eee/</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/category/information-technology/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%2F2008%2F02%2F22%2Fto-eee-or-not-to-eee%2F&amp;title=To%20eee%20or%20not%20to%20eee%3F" 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/2008/02/22/to-eee-or-not-to-eee/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>(Italiano) Guai con WordPress</title>
		<link>http://nexus.thenexus.it/wordpress/en/2008/02/18/guai-con-wordpress/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2008/02/18/guai-con-wordpress/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 15:56:09 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2008/02/18/guai-con-wordpress/</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/category/information-technology/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%2F2008%2F02%2F18%2Fguai-con-wordpress%2F&amp;title=%28Italiano%29%20Guai%20con%20WordPress" 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/2008/02/18/guai-con-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>About ComboBox and Data binding (.NET, C#)</title>
		<link>http://nexus.thenexus.it/wordpress/en/2006/04/03/about-combobox-and-data-binding-net-c/</link>
		<comments>http://nexus.thenexus.it/wordpress/en/2006/04/03/about-combobox-and-data-binding-net-c/#comments</comments>
		<pubDate>Mon, 03 Apr 2006 12:36:52 +0000</pubDate>
		<dc:creator>NeXuS</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://nexus.thenexus.it/wordpress/2006/04/03/about-combobox-and-data-binding-net-c/</guid>
		<description><![CDATA[So, it seems like I am not able to post about anything else than IT! Anyway, I had this strange problem with the ComboBox control of the .NET 2.0 framework (but I guess the problem would have been manifest with &#8230; <a href="http://nexus.thenexus.it/wordpress/en/2006/04/03/about-combobox-and-data-binding-net-c/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, it seems like I am not able to post about anything else than IT! <img src='http://nexus.thenexus.it/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway, I had this strange problem with the ComboBox control of the .NET 2.0 framework (but I guess the problem would have been manifest with version 1.0/1.1 too):<br />
I had some ComboBoxes that I had been binding to some DataTables generated as the result of some Stored Procedure calls on a DB server. Everything seemed to be working until I tried to set the ComboBox.SelectedValue property manually: disaster happened and nothing worked as it should have.</p>
<p>The reason for this strange behaviour was that I did not add the ComboBoxes to the form Control list BEFORE binding the source!<br />
The worst thing of it all is that I have not been able to find any clue about the order in which these two operations whould be done on the MSDN, nor on various developer forums!</p>
<p>So rememeber:</p>
<ul>
<li>First add the controls to your form</li>
<li>And only then you can correctly set the DataSource</li>
</ul>
<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%2F2006%2F04%2F03%2Fabout-combobox-and-data-binding-net-c%2F&amp;title=About%20ComboBox%20and%20Data%20binding%20%28.NET%2C%20C%23%29" 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/2006/04/03/about-combobox-and-data-binding-net-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

