<?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>LittleCamels.com&#187; Computing</title>
	<atom:link href="http://www.littlecamels.com/category/computing/feed" rel="self" type="application/rss+xml" />
	<link>http://www.littlecamels.com</link>
	<description>and yes, it&#039;s the end of the world!</description>
	<lastBuildDate>Fri, 03 Feb 2012 15:40:11 +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>2004-2008 </copyright>
	<managingEditor>raffaello@littlecamels.com (LittleCamels.com)</managingEditor>
	<webMaster>raffaello@littlecamels.com (LittleCamels.com)</webMaster>
	<ttl>1440</ttl>
	<image>
		<url>http://www.littlecamels.com/images/weird-eye-small.jpg</url>
		<title>LittleCamels.com</title>
		<link>http://www.littlecamels.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>and yes, its the end of the world!</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &#38; Culture" />
	<itunes:author>LittleCamels.com</itunes:author>
	<itunes:owner>
		<itunes:name>LittleCamels.com</itunes:name>
		<itunes:email>raffaello@littlecamels.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.littlecamels.com/images/weird-eye-small.jpg" />
		<item>
		<title>HTTP status code for 404 &#8211; page not found in Joomla!</title>
		<link>http://www.littlecamels.com/2008/08/11/http-status-code-for-page-not-found-in-joomla</link>
		<comments>http://www.littlecamels.com/2008/08/11/http-status-code-for-page-not-found-in-joomla#comments</comments>
		<pubDate>Mon, 11 Aug 2008 06:45:18 +0000</pubDate>
		<dc:creator>Raffa</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.littlecamels.com/?p=435</guid>
		<description><![CDATA[In case you are setting an error.php page in Joomla! to customise the &#8220;404 Page Not Found&#8221; error page, remember to add the following lines in your your template index.php page, before the DOCTYPE line: if($this-&#62;error-&#62;code = '404'){ header("HTTP/1.0 404 Not Found"); } ?&#62; The reason is that when a request is made for a [...]]]></description>
			<content:encoded><![CDATA[<p>In case you are setting an <a href="http://docs.joomla.org/Custom_error_pages"><em>error.php</em> page</a> in <a href="http://www.joomla.org/">Joomla!</a> to customise the <em>&#8220;<a href="http://en.wikipedia.org/wiki/404_error">404 Page Not Found</a></em>&#8221; error page, remember to add the following lines in your your template <em>index.php</em> page, before the DOCTYPE line:</p>
<pre><code>if($this-&gt;error-&gt;code = '404'){
	header("HTTP/1.0 404 Not Found");
<span class="br0">} ?&gt;
</span></code></pre>
<p>The reason is that when a request is made for a page on your site, Joomla! returns the HTTP status code &#8220;<a href="http://en.wikipedia.org/wiki/HTTP_200"><em>200 &#8211; the server successfully returned the page</em></a>&#8221; also for error pages. This is problematic for those working with <a href="http://www.google.com/webmasters/tools/">Google Webmaster Tools</a> and trying to get a sitemap resolved.</p>
<p>Information found (after weeks of search) <a href="http://docs.joomla.org/Custom_error_pages">here</a>. That is: &#8220;When all else fails, read the instructions&#8221;.</p>
<p><strong>UPDATE 12.8.2008: </strong>Forget what I have written above, at least in case you use SEF, it doesn&#8217;t work. That is, the <em>if</em> loop is inexplicably matched all the time, so it returns a <em>404 Page Not Found</em> also for existing pages <img src='http://www.littlecamels.com/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><strong>UPDATE 27.8.2008:</strong> Following <a href="http://forum.joomla.org/viewtopic.php?p=1395412#p1395412">this suggestion</a> on a <a href="http://forum.joomla.org/viewtopic.php?f=199&amp;t=251089">Joomla! Forum thread</a>, I managed to do the trick. The best way is to create the <a href="http://docs.joomla.org/Custom_error_pages"><em>error.php</em> page</a> not in the way it is suggested on the Joomla! web site, but in the following way:</p>
<pre class="source-php"><code>// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );

if (($this-&gt;error-&gt;code) == '404') {
  echo file_get_contents('http://www.yoursite.com/
                            error-404-page-not-found');
} </code></pre>
<p>where <em>error-404-page-not-found</em> is your customised &#8220;<a href="http://en.wikipedia.org/wiki/404_error">404 Page Not Found</a>&#8221; error page. This will return a 404 page for any error it occurs. To prevent to show the 404 page for other errors, paste the full code showed in <a href="http://forum.joomla.org/viewtopic.php?p=1395412#p1395412">the post</a>.<a href="http://forum.joomla.org/viewtopic.php?p=1395412#p1395412"><br />
 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlecamels.com/2008/08/11/http-status-code-for-page-not-found-in-joomla/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Beautiful is better than ugly</title>
		<link>http://www.littlecamels.com/2007/08/01/beautiful-is-better-than-ugly</link>
		<comments>http://www.littlecamels.com/2007/08/01/beautiful-is-better-than-ugly#comments</comments>
		<pubDate>Tue, 31 Jul 2007 21:08:50 +0000</pubDate>
		<dc:creator>Raffa</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Literature]]></category>

		<guid isPermaLink="false">http://www.littlecamels.com/2007/08/01/beautiful-is-better-than-ugly/</guid>
		<description><![CDATA[Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren&#8217;t special enough to break the rules. Although practicality beats purity. Errors should never pass silently. Unless explicitly silenced. In the [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Beautiful is better than ugly.<br />
Explicit is better than implicit.<br />
Simple is better than complex.<br />
Complex is better than complicated.<br />
Flat is better than nested.<br />
Sparse is better than dense.<br />
Readability counts.<br />
Special cases aren&#8217;t special enough to break the rules.<br />
Although practicality beats purity.<br />
Errors should never pass silently.<br />
Unless explicitly silenced.<br />
In the face of ambiguity, refuse the temptation to guess.<br />
There should be one &#8212; and preferably only one &#8212; obvious way to do it.<br />
Although that way may not be obvious at first unless you&#8217;re Dutch.<br />
Now is better than never.<br />
Although never is often better than *right* now.<br />
If the implementation is hard to explain, it&#8217;s a bad idea.<br />
If the implementation is easy to explain, it may be a good idea.<br />
Namespaces are one honking great idea &#8212; let&#8217;s do more of those!</p></blockquote>
<p>Tim Peters, &#8220;The Zen of Python&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlecamels.com/2007/08/01/beautiful-is-better-than-ugly/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New photogallery</title>
		<link>http://www.littlecamels.com/2007/06/30/new-photogallery</link>
		<comments>http://www.littlecamels.com/2007/06/30/new-photogallery#comments</comments>
		<pubDate>Sat, 30 Jun 2007 20:04:30 +0000</pubDate>
		<dc:creator>Raffa</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://www.littlecamels.com/2007/06/30/new-photogallery/</guid>
		<description><![CDATA[Ed ecco a voi la nuova galleria fotografica di Littlecamels.com! Mau si starà già mangiando le unghie dall&#8217;invidia appistoia. Informazioni per gli smanettoni: ho integrato Gallery2 in WordPress tramite il WPG2 plugin, impazzendo e impazzando non poco per farlo funzionare come volevo (Gallery è un applicazione veramente completa per la visualizzazione di gallerie fotografiche, e [...]]]></description>
			<content:encoded><![CDATA[<p>Ed ecco a voi la <a href="http://www.littlecamels.com/wordpress/wp-gallery2.php">nuova galleria fotografica</a> di Littlecamels.com! <a href="http://mau.aperion.it/wordpress/">Mau</a> si starà già mangiando le unghie dall&#8217;invidia appistoia.</p>
<p>Informazioni per gli smanettoni: ho integrato <a href="http://gallery.menalto.com/">Gallery2</a> in WordPress tramite il <a href="http://wpg2.galleryembedded.com/index.php?title=Main_Page">WPG2 plugin</a>, impazzendo e impazzando non poco per farlo funzionare come volevo (Gallery è un applicazione veramente completa per la visualizzazione di gallerie fotografiche, e pertanto estremamente complicata da configurare).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlecamels.com/2007/06/30/new-photogallery/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free software again!</title>
		<link>http://www.littlecamels.com/2007/05/28/free-software-again</link>
		<comments>http://www.littlecamels.com/2007/05/28/free-software-again#comments</comments>
		<pubDate>Mon, 28 May 2007 19:20:41 +0000</pubDate>
		<dc:creator>Raffa</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.littlecamels.com/2007/05/28/free-software-again/</guid>
		<description><![CDATA[Almost a year ago I was talking about free software, that is, how to be legal with your computer application licences and still not to pay anything. So I decided to write a separate page about the free software I use in my laptop, because I know I&#8217;ll need that list to reinstall all of [...]]]></description>
			<content:encoded><![CDATA[<p>Almost <a href="http://www.littlecamels.com/2006/08/24/useful-programs/">a year ago</a> I was talking about free software, that is, how to be legal with your computer application licences and still not to pay anything.</p>
<p>So I decided <a href="http://www.littlecamels.com/free-computer/">to write a separate page</a> about the free software I use in my laptop, because I know I&#8217;ll need that list to reinstall all of them the next time <a href="http://www.littlecamels.com/2007/03/21/broken-discs/">I break my hard disk</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlecamels.com/2007/05/28/free-software-again/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Broken discs</title>
		<link>http://www.littlecamels.com/2007/03/21/broken-discs</link>
		<comments>http://www.littlecamels.com/2007/03/21/broken-discs#comments</comments>
		<pubDate>Wed, 21 Mar 2007 21:51:21 +0000</pubDate>
		<dc:creator>Raffa</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.littlecamels.com/2007/03/21/broken-discs/</guid>
		<description><![CDATA[Sunday evening I was listening to a radio programme in Podcast with my laptop. At a certain point it froze. Nothing working. Hard shut down and straight to bed. The next day the horrible truth: starting the computer, black screen and just few lines: Windows cannot be started: missing file in C:\windows\system32 I got it [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.littlecamels.com/wordpress/../images/Seagate_Hard_Disk.jpg" border="0" alt="hard disc" title="hard disc" hspace="1" vspace="1" width="140" align="right" />Sunday evening I was listening to a radio programme in Podcast with my laptop. At a certain point it froze. Nothing working. Hard shut down and straight to bed. The next day the horrible truth: starting the computer, black screen and just few lines:</p>
<pre>Windows cannot be started: missing file
in C:\windows\system32</pre>
<p>I got it straight away: the hard disc was gone. </p>
<p><span id="more-280"></span></p>
<p>No problem for my work stuff, safely backed up. But my pictures, the SMartaBoys videos, the recent work files: bloody hell! The funny thing is that the last week I convinced my boss to buy a USB external hard disc for big back ups. The hard disc is coming, but a few days too late. I just felt that something would go wrong.</p>
<p>However, thanks to <a href="http://mau.aperion.it/wordpress/">Mau</a>&#39;s suggestions, I tried to run Linux from the CD-ROM: first I downloaded <a href="http://www.ubuntu.com/getubuntu/download">Ubuntu</a>, but it was too unstable, then <a href="http://www.mepis.org/node/1462">MEPIS</a> solved most of my problems: I was able to mount the hard disc and recover most of my stuff. The only problem: when I tried to access a file placed on a broken part of the hard disc, everything froze and I had to restart. I think I&#39;ve rebooted dozens of times.</p>
<p> One old geek&#8217;s suggestion: <strong>do back up regularly</strong>!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlecamels.com/2007/03/21/broken-discs/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Running a Linksys WRT54GL in client mode</title>
		<link>http://www.littlecamels.com/2006/11/30/running-a-linksys-wrt54gl-in-client-mode</link>
		<comments>http://www.littlecamels.com/2006/11/30/running-a-linksys-wrt54gl-in-client-mode#comments</comments>
		<pubDate>Wed, 29 Nov 2006 22:31:45 +0000</pubDate>
		<dc:creator>Raffa</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Films]]></category>

		<guid isPermaLink="false">http://www.littlecamels.com/2006/11/30/running-a-linksys-wrt54gl-in-client-mode/</guid>
		<description><![CDATA[Update (9.4.2009): Whiterussian has been superseded by Kamikaze, therefore the information given in this post are to be considered out-of-date, and most of the links are dead anyway. Please refer to openwrt.org for up-to-date information. Need to run a WRT54GL wireless router in client mode? I&#8217;m so happy I made it myself work, that I [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update (9.4.2009)</strong>:<em> Whiterussian has been superseded by Kamikaze, therefore the information given in this post are to be considered out-of-date, and most of the links are dead anyway.</em></p>
<p><em>Please refer to <a href="http://openwrt.org/">openwrt.org</a> for up-to-date information.</em></p>
<p><a href="http://www.littlecamels.com/wordpress/../images/800px-Wrt54g.jpg"><img title="WRT54GL " src="http://www.littlecamels.com/wordpress/../images/thumb-800px-Wrt54g.jpg" border="0" alt="WRT54GL " width="180" height="101" align="right" /></a>Need to run a <a title="WRT54GL" href="http://en.wikipedia.org/wiki/WRT54GL">WRT54GL wireless router</a> in client mode? I&#8217;m so happy I made it myself work, that I decided to write down the steps, since it isn&#8217;t that easy after all.</p>
<p><strong>Note: </strong>Here below you will find the exact steps I have done to make the WRT54GL work in client mode, that is, making it capable to connect a wireless network and give access to internet to the computers cabled to it.</p>
<p>This means that you will make the router working in a reverse way; that is, you will be able to connect to an internet provider wirelessly through the antennas (instead of the the internet slot on the back of the router, that will become inactive), and you will connect your computer to it through one of the four connection on the back of the router.</p>
<p>For a more detailed description of the process (in case the procedure below doesn&#8217;t work for you), please refer to the <a href="http://wiki.openwrt.org/OpenWrtDocs">OpenWRT manual</a> (especially <a href="http://wiki.openwrt.org/InstallingWrt54gl">installing OpenWRT on WRT54GL</a> and <a href="http://wiki.openwrt.org/OpenWrtDocs/WhiteRussian/ClientMode">how to run in client mode</a>) and to the <a href="http://forum.openwrt.org/index.php">OpenWRT forum</a>.</p>
<p>The firmware version I&#8217;m using is White Russian (RC6), Kernel Version 	Linux version 2.4.30. It should, however, work also with newer versions.</p>
<p><span id="more-249"></span></p>
<p>To run a Linksys WRT54GL in client mode you can try the following procedure:</p>
<ol>
<li>Power on your WRT54GL and connect it to your computer by a network cable connected in one of the four slots on the back of the wireless router (NOT into the <em>internet</em> slot!)</li>
<li>First of all you have to install the <a href="http://openwrt.org/">OpenWrt</a> (White Russian) firmware on your WRT54GL. This means that you will overwrite the firmware that comes with the device. <strong>Do this at your own risk</strong>, you can of course reinstall later the original Linksys firmware by <a href="http://www.linksys.com/servlet/Satellite?childpagename=US%2FLayout&amp;packedargs=page%3D2%26cid%3D1115416835852%26c%3DL_Content_C1&amp;pagename=Linksys%2FCommon%2FVisitorWrapper&amp;SubmittedElement=Linksys%2FFormSubmit%2FProductDownloadSearch&amp;sp_prodsku=1133202177241">downloading it</a> from its website, but if you make some mistakes during the process and lose access to the firmware of your device, you have to solve the problem on your own, since <strong>this process will void your guarantee.<br />
 </strong>To install OpenWrt, read and follow carefully <a href="http://wiki.openwrt.org/InstallingWrt54gl">these steps</a>. Since you have to do some choices during the process, let me remark the following:</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<ul>
<li>Choose the OpenWrt firmware called <em>openwrt-wrt54g-squashfs.bin</em> found in the <a href="http://downloads.openwrt.org/whiterussian/newest/default/">default directory</a></li>
<li>Save it on your hard disk (for example on the desktop)</li>
<li>Access the router web interface page at 192.168.1.1</li>
<li>Update the firmware going to system &#8211; &gt; administration &#8211; &gt; firmware upgrade</li>
<li>Wait (don&#8217;t do anything) until you get the message that the firmware has been updated</li>
<li>Reload on your web browser the address 192.168.1.1 and you will enter the OpenWRT web interface.</li>
<li>By clicking, for example, on Info, you will be asked to choose a password. Do it. Your username will be automatically <em>root</em></li>
<li>Go now to the <em>System</em> page and switch <em>boot_state </em>to <em>enabled</em></li>
</ul>
</li>
<li>Log into WRT54GL using telnet, ssh or similar. For example I used the ssh client <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty</a>, configuring it to access to the address 192.168.1.1. Logging in, you will be asked for the username. Put <em>root</em>, and as the password, the one you have chosen in the previous step.</li>
<li>Ok, now you have to enter the commands that will make your WRT54GL work as a client (as described in <a href="http://wiki.openwrt.org/OpenWrtDocs/WhiteRussian/ClientMode">this page</a>). I made my router work in routed client mode by running the following commands:
<pre>nvram set wl0_mode=sta

nvram set lan_ifname=br0

nvram set lan_ifnames=vlan0

nvram set wan_ifname=eth1

nvram set lan_ipaddr=192.168.2.1

nvram set lan_proto=static

nvram set wan_proto=dhcp</pre>
</li>
<li>Now you have to commit the changes and reboot the device. To do this run the following:
<pre>nvram commit

reboot</pre>
<p>After doing the reboot, Putty will tell you that you&#8217;ve lost the connection to 192.168.1.1. Don&#8217;t worry! That&#8217;s ok.</p>
</li>
<li>Wait a minute and then disconnet the network cable that connects your computer with the router and connect it again. Now your device is not accessible anymore at the ip address 192.168.1.1, but it&#8217;ll be at 192.168.2.1. You can check it by accessing the OpenWRT web interface. Do it, you might be asked to set your password again.<br />
 <strong>N.B.: </strong>if you can&#8217;t connect to the router anymore, don&#8217;t panic! You can reset the configuration entering in <a href="http://wiki.openwrt.org/OpenWrtDocs/Troubleshooting">Failsafe mode</a> (more information below)</li>
<li>Open again a connection to the router via ssh using Putty (remember to change the address to 192.168.2.1)</li>
<li>Check out the available wireless networks running the command
<pre>iwlist eth1 scanning</pre>
<p>If nothing shows up, run it again. I&#8217;ve noticed that it needs to be run several times, before it shows all the available wireless networks in range.<br />
 The networks are listed as <em>Cell 01</em>, <em>Cell 02</em>, and so on. For each of them you will find its name (<em>ESSID</em>) and its channel (<em>CHANNEL_NUMBER</em>). To connect to a no-encrypted network, run the following commands from the ssh shell (replace <em>ESSID</em> and<em> CHANNEL_NUMBER </em>with real name and channel number of the chosen network, respectively):</p>
<pre>ifdown wan

nvram set wl0_ssid=<em>ESSID</em>

nvram set wl0_channel=<em>CHANNEL_NUMBER</em>

ifup wan; /sbin/wifi</pre>
<p>For an encrypted network, run the following (replace<em> WEP key in hex format</em> with the real WEP key)</p>
<pre>ifdown wan

vram set wl0_ssid=<em>ESSID</em>

nvram set wl0_channel=<em>CHANNEL_NUMBER</em>

nvram set wl0_wep=enabled

nvram set wl0_key=1

nvram set wl0_key1=<em>WEP key in hex format</em>

ifup wan; /sbin/wifi</pre>
<p>Don&#8217;t forget to commit if you want your settings to survive a reboot:</p>
<pre>nvram commit</pre>
</li>
<li>You&#8217;re done! Now you should be able to access the internet. If so, you can close the ssh connection. The settings are already saved and they will be kept even if you turn off the device.</li>
</ol>
<p><strong>Troubleshooting: </strong><em>I can&#8217;t access the router anymore!!!</em></p>
<p>If at a certain step you can&#8217;t connect to the router anymore, you can reset its configuration entering in <a href="http://wiki.openwrt.org/OpenWrtDocs/Troubleshooting">Failsafe mode</a> (read carefully the linked page). Here are the steps if you use Windows:</p>
<ol>
<li>Download the <a href="http://downloads.openwrt.org/people/florian/recvudp/recvudp-win32.zip">recvudp utility</a> and save it somewhere (e.g. on your desktop).</li>
<li>Open a DOS shell (a command prompt) and run the <em>recvudp.exe</em> that you have just saved</li>
<li>Running it nothing will happen, the cursor will just blink on the following line. That&#8217;s ok.</li>
<li>Go to the properties of the network from your control panel and set a fixed IP in the TCP/IP preferences (192.168.1.10 will do the job)</li>
<li>Switch off the WRT54GL and switch it on again. You will notice that the DMZ light (on the front of the device) is off. As soon as it gets on, press the reset button on the back. You will notice that now the DMZ light will quickly flash 3 times every second.</li>
<li>In the DOS window you have open in step 2, you will notice that the following messages have appeared:
<pre>Msg from 192.168.1.1: Press reset now, to enter Failsafe!

Msg from 192.168.1.1: Entering Failsafe!</pre>
</li>
<li>Good. Now open a new ssh session with Putty on the address 192.168.1.10.</li>
<li>To reset the router, run the following command:
<pre>firstboot
</pre>
</li>
<li>You can now exit Putty and, going back on the network configuration, reset in the TCP/IP properties to obtain an IP address automatically.</li>
<li>You are now back at the step 3 of the procedure explained above, that is at the point when you just installed the OpenWRT. You should be now able to access the OpenWRT configuration at the web address 192.168.1.1. You can try again to set the router in client mode in case you are not sure that you have carefully followed the steps depicted above.</li>
</ol>
<p><br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlecamels.com/2006/11/30/running-a-linksys-wrt54gl-in-client-mode/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Spam, spam, spam!</title>
		<link>http://www.littlecamels.com/2006/11/26/spam-spam-spam</link>
		<comments>http://www.littlecamels.com/2006/11/26/spam-spam-spam#comments</comments>
		<pubDate>Sun, 26 Nov 2006 10:06:17 +0000</pubDate>
		<dc:creator>Raffa</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.littlecamels.com/2006/11/26/spam-spam-spam/</guid>
		<description><![CDATA[Computing post, engineer&#39;s style Question: I use an e-mail program to read my e-mail and I&#39;m pissed off of getting every half an hour the announcement &#34;you&#39;ve got mail!&#34; just to see that it is a spam message. Is there a way not to see these spam messages at all? Answer: Yes, there is. At [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.littlecamels.com/wordpress/../images/thumb-SpamInACan.jpg" border="1" alt="spam!" title="spam!" hspace="10" width="120" height="108" align="right" />Computing post, engineer&#39;s style <img src='http://www.littlecamels.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><em>Question</em>: I use an e-mail program to read my e-mail and I&#39;m pissed off of getting every half an hour the announcement &quot;you&#39;ve got mail!&quot; just to see that it is a spam message. Is there a way not to see these spam messages at all?</p>
<p><em>Answer</em>: Yes, there is. At least for two e-mail readers, <a href="http://www.mozilla.org/projects/seamonkey/" title="Download Seamonkey">SeaMonkey</a> and <a href="http://www.mozilla.com/en-US/thunderbird/" title="Download Thunderbird">Thinderbird</a>.</p>
<p><span id="more-246"></span>
<p><strong>Solution for SeaMonkey</strong></p>
<p>In SeaMonkey Mail, go to <em>Edit</em> &#8211;&gt; <em>Mail &amp; Newsgroups Account Settings</em>, and select <em>Junk Settings</em>, you will see this window (click on it for a bigger-size version): </p>
<p><a href="http://www.littlecamels.com/wordpress/../images/SeaMonkey-Junk.jpg"><img src="http://www.littlecamels.com/wordpress/../images/thumb-SeaMonkey-Junk.jpg" border="0" width="450" height="422" /></a></p>
<p>In the picture you can see the suggested settings. Ok, now go to <em>Edit &#8211;&gt; Preferences &#8211;&gt; Junk Mail</em>, you&#39;ll see this window  (click on it for a bigger-size version):</p>
<p><a href="http://www.littlecamels.com/wordpress/../images/SeaMonkey-Junk1.jpg"><img src="http://www.littlecamels.com/wordpress/../images/thumb-SeaMonkey-Junk1.jpg" border="0" width="450" height="369" /></a></p>
<p>Select the preferences as above. Most important thing: choose &quot;<em>Mark messages to be determined to be junk as read</em>&quot;. In this way, every time you get a junk mail, not only it&#39;ll be automatically moved to the Junk folder, but you won&#39;t receive any announcement that you&#39;ve received spam!</p>
<p>One thing I recommend you to do is to check every now and then the Junk folder to see if some non-spam message has been put erroneously there, but I can assure it happens really seldom.</p>
<p>Another suggestion: when you activate the junk filter for the first time, select say 50 messages in your inbox and with right-click choose &quot;<em>Mark as&#8230; not junk</em>&quot;. In this way you will &quot;educate&quot; the junk analyser to recognise the good messages and not to mark them as junk.</p>
<p><strong>Solution for Thunderbird</strong>&nbsp;</p>
<p>For Thunderbird go to <em>Tools &#8211;&gt; Junk Mail Controls</em> and you&#39;ll get this window  (click on it for a bigger-size version):</p>
<p><a href="http://www.littlecamels.com/wordpress/../images/Thunderbird-Junk.jpg"><img src="http://www.littlecamels.com/wordpress/../images/thumb-Thunderbird-Junk.jpg" border="0" width="450" height="448" /></a></p>
<p>And here you go. It seems that at present Thunderbird doesn&#39;t have the possibility to mark all the junk mail as read, but it&#39;ll be possible in version 2.0. Also here the same suggestion as for SeaMonkey: when you activate the junk filter for the first time, select say 50 messages from your inbox and with right-click choose &quot;<em>Mark as&#8230; not junk</em>&quot;. In this way you will &quot;educate&quot; the junk analyser to recognise the good messages and not to mark them as junk.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlecamels.com/2006/11/26/spam-spam-spam/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Useful programs</title>
		<link>http://www.littlecamels.com/2006/08/24/useful-programs</link>
		<comments>http://www.littlecamels.com/2006/08/24/useful-programs#comments</comments>
		<pubDate>Thu, 24 Aug 2006 08:17:04 +0000</pubDate>
		<dc:creator>Raffa</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.littlecamels.com/2006/08/24/useful-programs/</guid>
		<description><![CDATA[Long time since the last nerdy post. Here below follows a list of useful programs that I have installed and actively use on my computer. Most of them are open source, so this could be useful for those who don&#39;t want to buy software, you&#39;ll realise that nowadays it is possible to do almost everything [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.littlecamels.com/images/computer.png" border="0" alt="Computer" align="right" />Long time since the last nerdy post.</p>
<p>Here below follows a list of useful programs that I have installed and actively use on my computer. Most of them are open source, so this could be useful for those who don&#39;t want to buy software, you&#39;ll realise that nowadays it is possible to do almost everything with open source or freeware programs.</p>
<p>All these programs are available for MS Windows. About the availability for other operating systems, please check their own websites.</p>
<p><span id="more-214"></span></p>
<p><strong>OpenOffice</strong> (<a href="http://www.openoffice.org/">www.openoffice.org</a>)&nbsp;</p>
<p>It&#39;s almost a year that OpenOffice has replaced Microsoft Office on my computer. It does everything I need, that is it replaces Word, PowerPoint and Excel without any problem of compatibility, since it can save in its own format or in MS Office formats (.doc, .xls, etc.). Open source.</p>
<p><strong>TextPad</strong> (<a href="http://www.textpad.com/">www.textpad.com</a>)</p>
<p>Text editor. If you are also a nerd, you will find out that this is one of the best text file editor, having a lot of useful features. Shareware. </p>
<p><strong>Winamp</strong> (<a href="http://www.winamp.com/">www.winamp.com</a>)</p>
<p>The good old Winamp music player. I think it&#39;s the oldest program I have in my computer. Born as an mp3 player, nowadays it can play almost any type of music/video file. No need of Windows Media Player. It can also play Real Audio and Video (.rm, .ram) files, as well as Quick Time (.mov). For these formats you need to install the following plugins: for Real Audio install <a href="http://www.free-codecs.com/download/Real_Alternative.htm">Real Alternative</a>  (you don&#39;t need to install Real One) and then <a href="http://www.musiclivesonline.com/software/watara.html">Tara&#39;s Real Audio Input Plugin</a>, for Quick Time install first <a href="http://www.free-codecs.com/download/QuickTime_Alternative.htm">Quick Time Alternative</a> (you don&#39;t need to install Quick Time at all) and then add ;MOV to Winamp&#39;s DirectShow Decoder extension list @ prefs &gt; plugins &gt; input &gt; in_dshow &gt; config. For more information see the Winamp forum page about the <a href="http://forums.winamp.com/showthread.php?s=&amp;threadid=155680">most requested features/plugins</a>. Freeware.</p>
<p><strong>Skype</strong> (<a href="http://www.skype.com/">www.skype.com</a>)</p>
<p>Well, the internet phone. Everybody knows it. Although I use it mostly for chatting with friends. It replaced the old ICQ. Freeware.</p>
<p><strong>SeaMonkey</strong> (<a href="http://www.mozilla.org/projects/seamonkey/">www.mozilla.org/projects/seamonkey</a>)</p>
<p>This is my browser. Remeber the old Netscape? Remember the less old Mozilla? Well, this is the same but up-to-date software. It has just a new name. Why don&#39;t I use <a href="http://www.mozilla.com/firefox/">Firefox</a>? Because I&#39;ve always been used to all-in-one internet suites (that is, browser, e-mail reader and HTML editor in the same program). And, believe me, if you need to clean up messy pages of HTML code, you&#39;ll realise that SeaMonkey (same than Mozilla and Netscape) is faraway the best HTML cleaner.</p>
<p><strong>The Gimp</strong> (<a href="http://www.gimp.org/">www.gimp.org</a>)</p>
<p>Image editor. The open-source answer to PhotoShop and similar. I don&#39;t do too much image manipulation, so I can&#39;t say what kind of features it is missing, but if you just use these kinds of programs for resizing images, change brightness/contrast, creating basic drawings with different layers and so on, this is best for you (most of all, it is free).&nbsp;</p>
<p><strong>Irfanview</strong> (<a href="http://www.irfanview.com/">www.irfanview.com</a>)</p>
<p>This small piece of software is useful for image manipulation if for example you need to resize a lot of pictures, having a good batch processing feature. Perfect if you are used to take a huge amount of pictures with your web camera and then you realise they are too big to put them on the internet. Freeware.</p>
<p><strong>Audacity</strong> (<a href="http://audacity.sourceforge.net/">audacity.sourceforge.net</a>)</p>
<p>Digital audio editor. If you need to record your voice, music, radio, whatever you want. Open source.</p>
<p><strong>7zip</strong> (<a href="http://www.7-zip.org/">www.7-zip.org</a>)</p>
<p>The free alternative to WinZip. And also open source.</p>
<p><strong>AntiVir </strong>(<a href="http://www.free-av.com/">http://www.free-av.com</a>)</p>
<p>A good antivirus. Free for personal use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlecamels.com/2006/08/24/useful-programs/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Impazzendo per Wikipedia</title>
		<link>http://www.littlecamels.com/2006/05/16/wikipedia-2</link>
		<comments>http://www.littlecamels.com/2006/05/16/wikipedia-2#comments</comments>
		<pubDate>Tue, 16 May 2006 07:44:48 +0000</pubDate>
		<dc:creator>Raffa</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.littlecamels.com/2006/05/16/wikipedia-2/</guid>
		<description><![CDATA[Ultimamente sto diventando un po&#39; Wikipedia-dipendente. Cerco di controllarmi, ma &#232; troppo affascinante. Wikipedia &#232; un&#39;enciclopedia libera. Ci&#242; significa due cose: non costa niente (&#232; su internet e pi&#249; essere liberamente letta) chiunque pu&#242; modificarne il contenuto, o aggiungere nuove voci. Se il primo punto pu&#242; risultare abbastanza chiaro, forse il secondo lo &#232; un [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/"><img src="http://www.littlecamels.com/wordpress/wp-content/uploads/2006/05/Squash_Wikipedia_Design_3.thumbnail.png" alt="Squash_Wikipedia_Design_3.png" width="96" height="96" align="right" /></a></p>
<p>Ultimamente sto diventando un po&#39; Wikipedia-dipendente. Cerco di controllarmi, ma &egrave; troppo affascinante.</p>
<p><a href="http://it.wikipedia.org/">Wikipedia</a>  &egrave; un&#39;enciclopedia libera. Ci&ograve; significa due cose:</p>
<ul>
<li>non costa niente (&egrave; su internet e pi&ugrave; essere liberamente letta)</li>
<li>chiunque pu&ograve; modificarne il contenuto, o aggiungere nuove voci. </li>
</ul>
<p>Se il primo punto pu&ograve; risultare abbastanza chiaro, forse il secondo lo &egrave; un po&#39; meno. S&igrave;, ognuno pu&ograve; modificare ogni singola virgola di ogni voce dell&#39;enciclopedia. Come? In cima a ogni pagina (anche sulla pagina iniziale) c&#39;&egrave; una linguetta con sopra scritto &quot;<strong>modifica</strong>&quot;. Basta cliccarci sopra e modificare/aggiungere ci&ograve; che si vuole. </p>
<p> Ma. Ma allora cosa succede se cancellassi una parte del testo, o anche tutta una pagina? E se aggiungo delle stronzate?<br /> 
<p>Ebbene, tutto ci&ograve; &egrave; possibile. Bisogna tenere di conto per&ograve; che non siamo soli su Wikipedia. Ci sono un sacco di altre persone che aggiungono, modificano, controllano continuamente. E ogni cambiamento &egrave; memorizzato. Non ci vorr&agrave; molto prima che un&#39;altra persona (chiamata in gergo <em>wikipediano</em>) noter&agrave; dei cambiamenti che hai fatto, e li processer&agrave;. Ci sono anche dei programmi automatici, chiamati <em>bot</em>, che analizzano continuamente il testo, e nel caso siano stati introdotti cambiamenti non consentiti, riporteranno la pagina alla versione precedente alle tue modifiche.</p>
<p>In ogni caso, essendo Wikipedia un&#39;enciclopedia, magari non sei interessato a introdurre modifiche, ma solo a leggerla. Bene, allora buon divertimento! Ma non diventarne troppo dipendente come me <img src='http://www.littlecamels.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Io lavoro principalmente sulla <a href="http://it.wikipedia.org">Wikipedia italiana</a> traducendo pagine sulla <a href="http://it.wikipedia.org/wiki/Finlandia">Finlandia</a>. Se ti interessa, puoi partire a leggere dal <a href="http://it.wikipedia.org/wiki/Portale:Finlandia">Portale finlandese</a>, che ovviamente esiste anche in <a href="http://en.wikipedia.org/wiki/Portal:Finland">lingua inglese</a>. S&igrave;, perch&eacute; Wikipedia &egrave; disponibile in quasi tutte le lingue!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlecamels.com/2006/05/16/wikipedia-2/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Firefox, Thunderbird and the Mozilla mess</title>
		<link>http://www.littlecamels.com/2004/12/07/firefox-thunderbird-and-the-mozilla-mess</link>
		<comments>http://www.littlecamels.com/2004/12/07/firefox-thunderbird-and-the-mozilla-mess#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>Raffa</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://1767149182</guid>
		<description><![CDATA[I gave up. Few weeks after my complaint about the Firefox affaire, I decided to switch from the Mozilla suite to Firefox (browser) and Thunderbird (mail, news and feed reader, version 1.0 just released). It seems the Mozilla suite will be released in 1.8 alpha versions for still a long time, before they will eventually [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><a title="Firefox: Rediscover the Web" href="http://www.mozilla.org/products/firefox/"><img width="60" height="60" border="0" align="left" class="floatpicleft" style="border: 0pt none " alt="product-firefox.png" src="http://www.littlecamels.com/archives/product-firefox.png" /></a><a title="Thunderbird: Reclaim Your Inbox" href="http://www.mozilla.org/products/thunderbird/"><img width="60" height="60" border="0" align="right" style="border: 0pt none " class="floatpicright" alt="product-thunderbird.png" src="http://www.littlecamels.com/archives/product-thunderbird.png" /></a>I gave up. Few weeks after my complaint about the <a href="http://www.littlecamels.com/archives/computing/the_firefox_affaire_or_how_to_dump_the_mozilla_suite.html">Firefox affaire</a>, I decided to switch from the <a href="http://www.mozilla.org/products/mozilla1.x/">Mozilla suite</a> to <a href="http://www.mozilla.org/products/firefox/">Firefox</a> (browser) and <a href="http://www.mozilla.org/products/thunderbird/">Thunderbird</a> (mail, news and feed reader, version 1.0 just released). It seems the Mozilla suite will be released in <a href="http://www.mozilla.org/releases/">1.8 alpha versions</a> for still a long time, before they will eventually decide to switch the whole <a href="http://www.mozilla.org/projects/seamonkey/">SeaMonkey project</a> to be Firefox and Thunderbird based and <a href="http://weblogs.mozillazine.org/roadmap/archives/005716.html">release Mozilla 2.0</a>.<br />
And what about the <a href="http://www.mozilla.org/roadmap.html#milestone-schedule"> Mozilla Suite roadmap</a>? No information about the future releases.<br />
However, I still think that this is a temporary solution for me. On one side I have to recognise that Firefox and Thunderbird are definitely better (more developed) than Mozilla, but still, they are two different programs and I&#8217;m not used to it. Maybe my problems sound silly, but since the browser and the mail reader are the programs I use the most, it&#8217;s a big (and annoying) change. Just the shortcuts as an example:</p>
<div align="left">
<ul>
<li>They removed the ctrl-q shortcut (why???) in Firefox to close all the windows (only in Thunderbird it is still present, and of course, it closes only Thunderbird)</li>
<li>By pressing ctrl-n in Thunderbird you get a new compose-message window (in Mozilla you get a new browser window)</li>
<li>(related to the previous) I&#8217;m used to close all the browser windows when I don&#8217;t need them anymore and keep only the mail window open. Try to guess what I have to do now when I do that <img src='http://www.littlecamels.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>In Thunderbird, by right-clicking to a link in an e-mail, it&#8217;s not possible to choose &#8220;open in a new window&#8221; of the browser</li>
<li>Still in Thunderbird, there is no &#8220;Next-unread-message&#8221; button, neither &#8220;Mark-all button&#8221; (useful for the newsgroups)</li>
<li>In Firefox: why in the heck they have removed the shift-left click to perform the &#8220;save as&#8221; command?</li>
</ul>
</div>
<p align="left"><strong>Update:</strong> Just found a presentation directly from the <a href="http://www.mozilla.org/events/dev-day-2004/">Mozilla Developer Day 2004</a> called <a href="http://www.mozilla.org/events/dev-day-2004/roadmap/">Mozilla 2.0: Roadmap and Directions</a>. Well, the presentation doesn&#8217;t work&#8230; and it&#8217;s also with frames&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littlecamels.com/2004/12/07/firefox-thunderbird-and-the-mozilla-mess/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

