<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.3" -->
<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/"
	>

<channel>
	<title>Spiders on the Web</title>
	<link>http://www.danilodellaquila.com</link>
	<description>Danilo Dellaquila Blog</description>
	<pubDate>Wed, 01 Oct 2008 15:31:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>
	<language>en</language>
			<item>
		<title>HowTo Share Calendars with Thunderbird, Lightning and PHP iCalendar</title>
		<link>http://www.danilodellaquila.com/linux/howto-share-calendars-with-thunderbird-lightning-and-php-icalendar.html</link>
		<comments>http://www.danilodellaquila.com/linux/howto-share-calendars-with-thunderbird-lightning-and-php-icalendar.html#comments</comments>
		<pubDate>Tue, 09 Sep 2008 23:26:00 +0000</pubDate>
		<dc:creator>Danilo Dellaquila</dc:creator>
		
		<category><![CDATA[Thunderbird]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.danilodellaquila.com/linux/howto-share-calendars-with-thunderbird-lightning-and-php-icalendar.html</guid>
		<description><![CDATA[This article explains how to share calendars using Thunderbird with Lightning extension and  PHP iCalendar, also it supposes that you are running Ubuntu.
Installation

Download phpicalendar from http://phpicalendar.net
PHP iCalendar require a webserver running PHP 4.1.2 or later, so install Apache2 with PHP module
$ sudo apt-get install apache2 libapache2-mod-php5
Enable WebDAV module in Apache
 $  sudo a2enmod
Module [...]]]></description>
			<content:encoded><![CDATA[<p>This article explains how to share calendars using Thunderbird with Lightning extension and  PHP iCalendar, also it supposes that you are running Ubuntu.</p>
<h3>Installation</h3>
<ol>
<li>Download phpicalendar from <a href="http://phpicalendar.net">http://phpicalendar.net</a></li>
<li>PHP iCalendar require a webserver running PHP 4.1.2 or later, so install Apache2 with PHP module</li>
<p><code>$ sudo apt-get install apache2 libapache2-mod-php5</code></p>
<li>Enable WebDAV module in Apache</li>
<p><code> $  sudo a2enmod<br />
Module name? dav<br />
</code><br />
Last command should enable <code>dav_fs</code> module as well, check it out with:<br />
<code><br />
$ ls -la /etc/apache2/mods-enabled/dav*<br />
</code></ol>
<h3>PHP iCalendar Configuration</h3>
<ol>
<li>Untar phpicalendar tarball under <code>/var/www</code> directory</li>
<li>Copy and edit the included configuration sample file</li>
<p><code> $ sudo cp config.inc-dist.php config.inc.php<br />
$ sudo chown www-data: config.inc.php<br />
$ sudo vi config.inc.php<br />
</code></p>
<li>Test application with browser at <a href="http://localhost/phpicalendar/index.php">http://localhost/phpicalendar/index.php</a></li>
</ol>
<h3>WebDAV Configuration</h3>
<ol>
<li>Create a user and password that will access to the calendars</li>
<p><code>$ sudo htpasswd -c /var/www/phpicalendar/.webdav_login username<br />
$ sudo chmod 640 .webdav_login<br />
$ sudo chown www-data .webdav_login<br />
</code></p>
<li>Setup the <code>calendars</code> directory as a WebDAV folder edit <code>/etc/apache2/mods-available/dav_fs.conf</code></li>
</ol>
<blockquote>
<pre class="wiki">DAVLockDB /var/lock/apache2/DAVLock
#DAVMinTimeout 600

&lt;Location /phpicalendar/calendars/&gt;
        Dav On
        AuthType Basic
        AuthName username
        AuthUserFile /var/www/phpicalendar/.webdav_login
        &lt;LimitExcept OPTIONS&gt;
                Require user username
        &lt;/LimitExcept&gt;
&lt;/Location&gt;</pre>
</blockquote>
<h3 id="ThunderbirdandLightning">Thunderbird and Lightning<a href="http://callisto:8000/K-GigasSystems/wiki/K-GigasCalendars#ThunderbirdandLightning" title="Link to this section" class="anchor"> </a></h3>
<p>Install the following packages using Synaptic from menu <em>System-&gt;Administration-&gt;Synaptic Package Manager</em></p>
<ul>
<li>thunderbird</li>
<li>lightning-extension</li>
</ul>
<h3>Create and Publish a Calendar</h3>
<ol>
<li>Open Thunderbird and click on <em>Calendar</em></li>
<li>Right click in the calendars list and create a <em>New Calendar</em></li>
<li>Choose <em>On the Network</em></li>
<li>Click on <em>Next</em></li>
<li>Select format: <em>iCalencard (ICS)</em></li>
<li>Insert location: <em><a href="http://localhost/phpicalendar/calendars/TestCalendar.ics">http://localhost/phpicalendar/calendars/TestCalendar.ics</a></em></li>
<li>Click on <em>Next</em></li>
<li>Provide a Calendar name: <em>TestCalendar</em></li>
<li>Click on <em>Next</em> and <em>Finish</em></li>
<li>Right click on the calendar that we have just created and click on <em>Publish Calendar&#8230;</em></li>
<li>Insert URL: <em><a href="http://localhost/phpicalendar/calendars/TestCalendar.ics">http://localhost/phpicalendar/calendars/TestCalendar.ics</a></em> then <em>Close</em></li>
</ol>
<p>Thunderbird doesn&#8217;t provide any feedback, so check on the server that the calendar has been created properly<br />
<code><br />
$ ls -l /var/www/phpicalendar/calendars/<br />
</code><br />
You should see a `TestCalendar.ics` file.</p>
<h3>Using Calendars from others PCs</h3>
<p>To connect others client PCs to the same calendar, create a new calendar in Thunderbird in the same way as before, but there is no need to publish the calendar this time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danilodellaquila.com/linux/howto-share-calendars-with-thunderbird-lightning-and-php-icalendar.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ada has arrived</title>
		<link>http://www.danilodellaquila.com/generic/ada-has-arrived.html</link>
		<comments>http://www.danilodellaquila.com/generic/ada-has-arrived.html#comments</comments>
		<pubDate>Tue, 22 Jan 2008 14:42:18 +0000</pubDate>
		<dc:creator>Danilo Dellaquila</dc:creator>
		
		<category><![CDATA[Generic]]></category>

		<guid isPermaLink="false">http://www.danilodellaquila.com/generic/ada-has-arrived.html</guid>
		<description><![CDATA[Hi all,
a month is gone since  my last post and finally I can write again. The month of December has been very busy, we had a lot of work and then Ada has arrived.

I have some news and articles to write, I just need to find some time between  bottles and nappies.
Spider on [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all,</p>
<p>a month is gone since  my last post and finally I can write again. The month of December has been very busy, we had a lot of work and then Ada has arrived.</p>
<p><a href="http://www.danilodellaquila.com/files/2008/01/ada01.jpg" title="Ada"><img src="http://www.danilodellaquila.com/files/2008/01/ada01.jpg" title="Ada" alt="Ada" border="0" /></a></p>
<p>I have some news and articles to write, I just need to find some time between  bottles and nappies.</p>
<p>Spider on the Web,<br />
Danilo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danilodellaquila.com/generic/ada-has-arrived.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How To Split an Audio .flac file using Ubuntu Linux</title>
		<link>http://www.danilodellaquila.com/linux/how-to-split-an-audio-flac-file-using-ubuntu-linux.html</link>
		<comments>http://www.danilodellaquila.com/linux/how-to-split-an-audio-flac-file-using-ubuntu-linux.html#comments</comments>
		<pubDate>Thu, 15 Nov 2007 21:53:18 +0000</pubDate>
		<dc:creator>Danilo Dellaquila</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.danilodellaquila.com/linux/how-to-split-an-audio-flac-file-using-ubuntu-linux.html</guid>
		<description><![CDATA[If you have big .flac audio file which include several CD tracks, sure you are interested to know how to split them and of course we are going to do it in Ubuntu Linux.
This method it use .cue files, which usually comes with the .flac ones.
First of all we need to install the following packages [...]]]></description>
			<content:encoded><![CDATA[<p>If you have big .flac audio file which include several CD tracks, sure you are interested to know how to split them and of course we are going to do it in Ubuntu Linux.</p>
<p>This method it use .cue files, which usually comes with the .flac ones.</p>
<p>First of all we need to install the following packages <strong><em>cuetools</em></strong> <strong><em>shntool</em></strong> <strong><em>flac.</em></strong> You can use Synaptic or this command in a terminal:</p>
<blockquote><p><code>    $ sudo apt-get install cuetools shntool flac</code></p></blockquote>
<p>Now  you can split the .flac audio file as follows:</p>
<blockquote><p><code>    $ cuebreakpoints file.cue | shnsplit -o flac file.flac</code></p></blockquote>
<p>That&#8217;s all.</p>
<p>Now a little bit of theory,<br />
&#8230;  <em>shnsplit</em> is the program used to split tracks, while  <em>cuebreakpoints</em> it reads the break-points from file.cue and pipe them to shnsplit.</p>
<p>Spiders on the Web,<br />
Danilo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danilodellaquila.com/linux/how-to-split-an-audio-flac-file-using-ubuntu-linux.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How To Install Eclipse with PHP Development Tool on Ubuntu 7.10 Gutsy</title>
		<link>http://www.danilodellaquila.com/linux/how-to-install-eclipse-with-php-development-tool-on-ubuntu-710-gutsy.html</link>
		<comments>http://www.danilodellaquila.com/linux/how-to-install-eclipse-with-php-development-tool-on-ubuntu-710-gutsy.html#comments</comments>
		<pubDate>Mon, 12 Nov 2007 14:52:07 +0000</pubDate>
		<dc:creator>Danilo Dellaquila</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.danilodellaquila.com/linux/how-to-install-eclipse-with-php-development-tool-on-ubuntu-710-gutsy.html</guid>
		<description><![CDATA[Lee este articulo en castellano
Eclipse is a well known IDE interface which help programmers to develop their Java applications, but Eclipse is not only for Java programmers, as it can help PHP programmers as well by using the PHP Development  		Tools (PDT).
While searching on Internet I found several way to install Eclipse and PDT, [...]]]></description>
			<content:encoded><![CDATA[<p align="right"><a href="http://www.danilodellaquila.com/linux/como-instalar-eclipse-con-php-development-tools-en-ubuntu-710-gutsy.html">Lee este articulo en castellano</a></p>
<p>Eclipse is a well known IDE interface which help programmers to develop their Java applications, but Eclipse is not only for Java programmers, as it can help PHP programmers as well by using the <a href="http://www.eclipse.org/pdt/" title="PHP Development Tools" target="_blank">PHP Development  		Tools (PDT)</a>.</p>
<p>While searching on Internet I found several way to install Eclipse and PDT, so here I am going to tell you how I did it on my Ubuntu 7.10 Gutsy with PHP support. As I am a newbie on Eclipse I cannot tell you if it is the best way or that is error free. I only know that it worked for me, or at least Eclipse it started without any error message.</p>
<p>First you have to install the Sun Java Development Kit 5.0 (JDK) and Eclipse from Ubuntu repositories:<code><br />
</code></p>
<blockquote><p><code> $ sudo apt-get update</code><br />
<code> $ sudo apt-get install sun-java5-jdk</code><br />
<code> $ sudo apt-get install eclipse</code></p></blockquote>
<p>Now we have Eclipse installed and working, but there are a couple of problems, most important PDT is not installed as there&#8217;s no debian package yet. Second this is an older version, Eclipse 3.2.2 instead of the 3.3.0. I used this approach to assure that everything Eclipse needs is installed.</p>
<p>To add PDT you can use an <a href="http://www.thierryb.net/pdtwiki/index.php?title=Using_PDT_:_Installation_:_Installing_PDT" title="PDT Installation" target="_blank">automated installation of PDT</a> available via the <span class="new">Eclipse Update Manager</span>, but as  we want to use the latest version and also keep things simple, you can download the <em><a href="http://download.eclipse.org/tools/pdt/downloads/index.php" class="external text" title="http://download.eclipse.org/tools/pdt/downloads/index.php" rel="nofollow">PDT All-in-One package</a></em>.</p>
<p>Personally I downloaded the Stable Build  					S20070910-RC1 under the ~/tmp directory, you can choose the release that you prefer. There is no really installation program so these are the commands that I used to install it under my home directory and to start Eclipse.</p>
<blockquote><p><code>$ mkdir ~/opt<br />
$ cd ~/opt<br />
$ mv ~/tmp/pdt-all-in-one-incubation-S20070910_RC1-linux-gtk.tar.gz .<br />
$ tar xzvf pdt-all-in-one-incubation-S20070910_RC1-linux-gtk.tar.gz<br />
$ cd eclipse<br />
$./eclipse<br />
</code></p></blockquote>
<p>Optionally you can change the Gnome Menu link using, <em>System-&gt;Preferences-&gt;Main Menu</em> application.</p>
<p>Now you can start working  with Eclipse and PDT just create a new PHP file or project, and code away.</p>
<p>Spiders on the Web,<br />
Danilo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danilodellaquila.com/linux/how-to-install-eclipse-with-php-development-tool-on-ubuntu-710-gutsy.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>3D Effects with Compiz in Ubuntu</title>
		<link>http://www.danilodellaquila.com/linux/3d-effects-with-compiz-in-ubuntu.html</link>
		<comments>http://www.danilodellaquila.com/linux/3d-effects-with-compiz-in-ubuntu.html#comments</comments>
		<pubDate>Sat, 27 Oct 2007 11:59:13 +0000</pubDate>
		<dc:creator>Danilo Dellaquila</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.danilodellaquila.com/linux/3d-effects-with-compiz-in-ubuntu.html</guid>
		<description><![CDATA[Few months ago everybody was staring at some windows and saying &#8220;WoW !&#8221;.
So&#8230; What we should say now with these 3D effects in Ubuntu ?





Spiders on the Web,
Danilo
]]></description>
			<content:encoded><![CDATA[<p>Few months ago everybody was staring at some windows and saying &#8220;WoW !&#8221;.</p>
<p>So&#8230; What we should say now with these 3D effects in Ubuntu ?</p>
<div class="wpv_video">
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/_ImW0-MgR8I"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/_ImW0-MgR8I" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
</div>
<p>Spiders on the Web,<br />
Danilo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danilodellaquila.com/linux/3d-effects-with-compiz-in-ubuntu.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>New Ubuntu version 7.10</title>
		<link>http://www.danilodellaquila.com/linux/new-ubuntu-version-710.html</link>
		<comments>http://www.danilodellaquila.com/linux/new-ubuntu-version-710.html#comments</comments>
		<pubDate>Tue, 23 Oct 2007 23:05:10 +0000</pubDate>
		<dc:creator>Danilo Dellaquila</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.danilodellaquila.com/linux/new-ubuntu-version-710.html</guid>
		<description><![CDATA[Last week the new Ubuntu  Ubuntu, Gutsy Gibbon 7.10 went out.
There are some new interesting features:

Gnome 2.20
3D Desktop, Compiz Fusion is enabled by default but I think it needs a good graphic card
Desktop Search, a deskbar applet is now included in the default configuration. It allows quick access to your common actions, including opening [...]]]></description>
			<content:encoded><![CDATA[<p>Last week the new Ubuntu  <a href="http://www.ubuntu.com/getubuntu/releasenotes/710tour" target="_blank" title="Ubuntu Gutsy Gibbon 7.10"><strong>Ubuntu, Gutsy Gibbon 7.10</strong></a> went out.</p>
<p>There are some new interesting features:</p>
<ul>
<li>Gnome 2.20</li>
<li>3D Desktop, Compiz Fusion is enabled by default but I think it needs a good graphic card</li>
<li>Desktop Search, a deskbar applet is now included in the default configuration. It allows quick access to your common actions, including opening web bookmarks and searches, sending messages to your contacts, and more</li>
<li>A wizard to install Firefox&#8217;s plugins</li>
<li>… and a lot more</li>
</ul>
<p>Today  somebody told me that Linux it&#8217;s difficult and is good only for programmers. I replied that this is not true anymore, I saw a demo of what you can do with the 3D desktop that definitely we can say that Linux is good for anyone.</p>
<p>So I suggest you <a href="http://www.ubuntu.com/getubuntu/download" title="Download Ubuntu">download the CD</a> so you&#8217;ll check it out yourself.</p>
<p>Spiders on the Web,<br />
Danilo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danilodellaquila.com/linux/new-ubuntu-version-710.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Happy Birthday OpenOffice.org</title>
		<link>http://www.danilodellaquila.com/opensource/happy-birthday-openofficeorg.html</link>
		<comments>http://www.danilodellaquila.com/opensource/happy-birthday-openofficeorg.html#comments</comments>
		<pubDate>Sat, 13 Oct 2007 13:59:54 +0000</pubDate>
		<dc:creator>Danilo Dellaquila</dc:creator>
		
		<category><![CDATA[OpenOffice.org]]></category>

		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.danilodellaquila.com/opensource/happy-birthday-openofficeorg.html</guid>
		<description><![CDATA[
Today, OpenOffice.org celebrates its 7th birthday. It was on 13th of October 2000 when Sun Microsystem founded what it is widely considered the most important open source productivity suite and one of the largest open source projects.
I worked daily with OpenOffice.org since year 2001 and with Linux since 5 years before at least. Honestly I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.danilodellaquila.com/files/2007/10/ooo_bcake_7th1.png" title="OpenOffice.org BirthCake 7th"><img src="http://www.danilodellaquila.com/files/2007/10/ooo_bcake_7th1.png" title="OpenOffice.org BirthCake 7th" alt="OpenOffice.org BirthCake 7th" align="left" border="0" hspace="5" vspace="5" /></a></p>
<p>Today, <a href="http://www.openoffice.org/" title="OpenOffice.org" target="_blank">OpenOffice.org</a> celebrates its 7th birthday. It was on 13th of October 2000 when Sun Microsystem founded what it is widely considered the most important open source productivity suite and one of the largest open source projects.</p>
<p>I worked daily with OpenOffice.org since year 2001 and with Linux since 5 years before at least. Honestly I didn&#8217;t realize that all this time was gone, but I saw the evolution of this particular open source software and I knew what it could get. To be an office suite that it doesn&#8217;t have nothing less than others most famous ones&#8230;indeed we can say the opposite.</p>
<p>Happy Birthday OpenOffice.org  and thanks to everyone whose was working on the project.</p>
<p>Spiders on the Web,<br />
Danilo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danilodellaquila.com/opensource/happy-birthday-openofficeorg.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Open Source Software for Everybody</title>
		<link>http://www.danilodellaquila.com/opensource/open-source-software-for-everybody.html</link>
		<comments>http://www.danilodellaquila.com/opensource/open-source-software-for-everybody.html#comments</comments>
		<pubDate>Wed, 10 Oct 2007 17:05:38 +0000</pubDate>
		<dc:creator>Danilo Dellaquila</dc:creator>
		
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.danilodellaquila.com/opensource/open-source-software-for-everybody.html</guid>
		<description><![CDATA[This weekend I&#8217;d like to make a small list of some Open Source application which I suggest to use, sure it is not  a complete list but should be enough to get you started with Open Source so you don&#8217;t need to get proprietary software anymore.
I wrote in the title that is software for [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend I&#8217;d like to make a small list of some Open Source application which I suggest to use, sure it is not  a complete list but should be enough to get you started with Open Source so you don&#8217;t need to get proprietary software anymore.</p>
<p>I wrote in the title that is software for &#8220;<strong>Everybody</strong>&#8221; because thos programs can run on any operating system, so not just Linux but Windows and Mac OS X as well.</p>
<ul>
<li>Office automation: <strong><a href="http://www.openoffice.org/" title="OpenOffice.org" target="_blank">OpenOffice.org, </a></strong> o <strong><a href="http://www.neooffice.org/" title="NeoOffice" target="_blank">NeoOffice</a></strong> its Mac OS X version</li>
<li>Internet Browsing: <strong><a href="http://www.mozilla.com/en-US/" title="Firefox" target="_blank">Firefox</a></strong></li>
<li>Email: <strong><a href="http://www.mozilla.com/en-US/thunderbird/" title="Thunderbird" target="_blank">Thunderbird</a></strong></li>
<li>RSS Reader and Newsgroup:  <strong><a href="http://www.mozilla.com/en-US/thunderbird/" title="Thunderbird" target="_blank">Thunderbird</a></strong></li>
<li>Calendar, Todos, etc&#8230;: <strong><a href="http://www.mozilla.org/projects/calendar/" title="Sunbird" target="_blank"> Sunbird</a></strong>,  Thunderbird with <strong><a href="http://www.mozilla.org/projects/calendar/" target="_blank" title="Lightning">Ligtning</a> plugin</strong></li>
<li>Graphics Design and Photography: <strong><a href="http://www.gimp.org/" target="_blank" title="GIMP">GIMP</a></strong></li>
</ul>
<p>Spiders on the Web,<br />
Danilo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danilodellaquila.com/opensource/open-source-software-for-everybody.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Adopt a Penguin</title>
		<link>http://www.danilodellaquila.com/opensource/adopt-a-penguin.html</link>
		<comments>http://www.danilodellaquila.com/opensource/adopt-a-penguin.html#comments</comments>
		<pubDate>Sun, 30 Sep 2007 10:28:57 +0000</pubDate>
		<dc:creator>Danilo Dellaquila</dc:creator>
		
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.danilodellaquila.com/opensource/adopt-a-penguin.html</guid>
		<description><![CDATA[Lee este articulo en Castellano
Leggi questo articolo in Italiano
During last weeks there was a lot of talk in Italy about Beppe Grillo, Italy’s most famous comedian, and italian politics, probably more talk will come in the future. But I wanted to point out to one of his article about Open Source titled Adopt a Penguin [...]]]></description>
			<content:encoded><![CDATA[<p align="right"><a href="http://www.danilodellaquila.com/softwarelibre/adopta-un-pinguino.html">Lee este articulo en Castellano</a><br />
<a href="http://www.danilodellaquila.com/opensource/adotta-un-pinguino.html">Leggi questo articolo in Italiano</a></p>
<p><a href="http://www.danilodellaquila.com/files/2007/10/tux.png" title="Tux"><img src="http://www.danilodellaquila.com/files/2007/10/tux.thumbnail.png" title="Tux" alt="Tux" align="left" border="0" hspace="5" vspace="5" /></a>During last weeks there was a lot of talk in Italy about <a href="http://http://www.beppegrillo.it/english.php" title="Beppe Grillo's Blog" target="_blank">Beppe Grillo</a>, Italy’s most famous comedian, and italian politics, probably more talk will come in the future. But I wanted to point out to one of his article about Open Source titled <a href="http://www.beppegrillo.it/eng/2006/10/adopt_a_penguin.html">Adopt a Penguin</a> and written on the 26 September 2006. Yes, I known almost a year ago but I am living in Spain and I always get to know about Italian things in late. Beppe Grillo in his article highlights about the fact that Italian Government don&#8217;t look forward to the adoption of Open Source Software in the Public Administration even thought with all advantages that it will bring.</p>
<p>I have to say that here in Spain the situation is better, as an example the local government in the region of Extramadura has gone entirely open source, deciding to move its entire administration to Linux and Open Source Software and making a requirement to all its officials to use the ODF and PDF formats for all documents. Also it promotes the use in the schools of <a href="http://www.gnulinex.org/" title="gnuLinex">gnuLinex</a>,  a Spanish Linux distribution. Unfortunately the things do not go equally well in other regions, like here in Cantabria where the local politicians continue instead signing agreements with Microsoft without realizing of how much money they could save in software licences.</p>
<p>However I try to do my best with Open Source evangelization nearby, but unfortunately in Cantabria companies prefer to use proprietary software and, in the event of the small business, piracy gets very high percentages. In any case I think that the main problem here is the lack of knowledge rather than a clear will to get illegal software, therefore I take every opportunity to make people aware that there is one perfectly legal way of saving money in software.</p>
<p>At last I want to say that Linux is a good alternative also for home computing. I always heard that Linux is too difficult, that is good only for IT people, that it doesn&#8217;t have a nice Look and Feel, that there isn&#8217;t a good music player, that we cannot watch TV, etc&#8230;  etc&#8230; well,  all these arguments could be true until few years ago, but now there are no more excuses. The programs are there, the graphical interface is equally Nice and Easy to use as it is in Windows and if you want there is also the 3D version (created much time before Vista). The important thing is to choose the right Linux distribution, which in this case is <a href="http://www.ubuntu.com/products/WhatIsUbuntu/desktopedition" title="Ubuntu Desktop Edition" target="_blank">Ubuntu Desktop Edition</a>.</p>
<p>About Ubuntu Desktop I am actually preparing a series of articles, which I will publish weekly very soon, where I&#8217;ll get into the main topics and I will help you to make a complete migration from Windows to Linux. Stay tuned.</p>
<p>Danilo,<br />
Spiders on the Web</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danilodellaquila.com/opensource/adopt-a-penguin.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>New Domain and Other Changes</title>
		<link>http://www.danilodellaquila.com/generic/new-domain-and-other-changes.html</link>
		<comments>http://www.danilodellaquila.com/generic/new-domain-and-other-changes.html#comments</comments>
		<pubDate>Thu, 20 Sep 2007 21:30:58 +0000</pubDate>
		<dc:creator>Danilo Dellaquila</dc:creator>
		
		<category><![CDATA[Generic]]></category>

		<guid isPermaLink="false">http://www.danilodellaquila.com/generic/new-domain-and-other-changes.html</guid>
		<description><![CDATA[Well,
as you can see I did some changes, the most important one is the new domain name, anyway don&#8217;t worry for the old links because I wrote some URL rewriting rules so they get converted automatically.
I have also installed a MultiLingual plugin for WordPress that let me manage the blog in three different languages: English, [...]]]></description>
			<content:encoded><![CDATA[<p>Well,</p>
<p>as you can see I did some changes, the most important one is the new domain name, anyway don&#8217;t worry for the old links because I wrote some URL rewriting rules so they get converted automatically.</p>
<p>I have also installed a MultiLingual plugin for WordPress that let me manage the blog in three different languages: English, Italian and Spanish. You can use the flags to change language.</p>
<p>Last thing is about comments, they are open now and you don&#8217;t need a registration to send one, but if I will get lot of spam probably get back as it was before.</p>
<p>Danilo,<br />
Spiders on the Web</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danilodellaquila.com/generic/new-domain-and-other-changes.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
