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

<channel>
	<title>tech-effe.net :: fabio.mm blog</title>
	<atom:link href="http://www.tech-effe.net/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.tech-effe.net/wordpress</link>
	<description>Diario e appunti di un sysadmin qualunque</description>
	<lastBuildDate>Sat, 05 Jun 2010 12:58:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Protetto: Anti Social Plus: your Facebook clean from [Social+] tags.</title>
		<link>http://www.tech-effe.net/wordpress/?p=121</link>
		<comments>http://www.tech-effe.net/wordpress/?p=121#comments</comments>
		<pubDate>Sat, 05 Jun 2010 12:40:02 +0000</pubDate>
		<dc:creator>Fabio</dc:creator>
				<category><![CDATA[Frammenti di pensieri]]></category>

		<guid isPermaLink="false">http://www.tech-effe.net/wordpress/?p=121</guid>
		<description><![CDATA[Non vi è alcun riassunto in quanto si tratta di un articolo protetto.]]></description>
		<wfw:commentRss>http://www.tech-effe.net/wordpress/?feed=rss2&amp;p=121</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get&#8230; Ubuntu 10.04 LTS Lucid Lynx</title>
		<link>http://www.tech-effe.net/wordpress/?p=110</link>
		<comments>http://www.tech-effe.net/wordpress/?p=110#comments</comments>
		<pubDate>Tue, 27 Apr 2010 07:08:04 +0000</pubDate>
		<dc:creator>Fabio</dc:creator>
				<category><![CDATA[Linux admin notes]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lts]]></category>
		<category><![CDATA[lucid]]></category>
		<category><![CDATA[mirror]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.tech-effe.net/wordpress/?p=110</guid>
		<description><![CDATA[Do il mio piccolo contributo alla comunità come utente; ecco i link ad una mia macchina dove scaricare le ISO di 10.04 LTS man mano che saranno pubblicate.
Sono poco più di 100mbit ma tutto aiuta  .
Download: http://cdt.techeffe.net/index.php?dir=%2Fubuntu/10.04
Vi ricordo di fare MD5 dopo il download, per sicurezza.
Scaricate il file MD5SUMS, poi dal terminale verificate che [...]]]></description>
		<wfw:commentRss>http://www.tech-effe.net/wordpress/?feed=rss2&amp;p=110</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery: dynamic  download icons</title>
		<link>http://www.tech-effe.net/wordpress/?p=105</link>
		<comments>http://www.tech-effe.net/wordpress/?p=105#comments</comments>
		<pubDate>Sun, 18 Apr 2010 11:25:21 +0000</pubDate>
		<dc:creator>Fabio</dc:creator>
				<category><![CDATA[Frammenti di pensieri]]></category>

		<guid isPermaLink="false">http://www.tech-effe.net/wordpress/?p=105</guid>
		<description><![CDATA[Ecco un piccolo script jQuery che aggiunge delle classi specifiche ai link all&#8217;interno di una pagina web. Utile insomma per visualizzare un icona di fianco ai link. Lo script fa il match di tutti gli elementi &#60;a&#62; con la classe doctype, e poi applica una sottoclasse.
Andrebbe inserito nella funzione DOMReady della pagina, le classi inoltre [...]]]></description>
		<wfw:commentRss>http://www.tech-effe.net/wordpress/?feed=rss2&amp;p=105</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash JPG2PDF: converting JPGs in a directory to PDF</title>
		<link>http://www.tech-effe.net/wordpress/?p=101</link>
		<comments>http://www.tech-effe.net/wordpress/?p=101#comments</comments>
		<pubDate>Tue, 16 Mar 2010 09:04:43 +0000</pubDate>
		<dc:creator>Fabio</dc:creator>
				<category><![CDATA[Linux admin notes]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[jpg]]></category>
		<category><![CDATA[jpg 2 pdf]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[sed]]></category>
		<category><![CDATA[ubuntu convert]]></category>

		<guid isPermaLink="false">http://www.tech-effe.net/wordpress/?p=101</guid>
		<description><![CDATA[
Uno script per convertire tutti i file jpg in una directory in pdf e rinominare la loro estensione.
Serve imagemagick (sudo apt-get install imagemagick su sistemi derivati debian).
#!/bin/bash
SAVEIFS=$IFS
IFS=$(echo -en &#8220;\n\b&#8221;)
for i in *
do
echo &#8220;processing gile file: &#8221; ${i}
convert -page A4 -compress jpeg -quality 70 ${i} `echo ${i} &#124; sed -e &#8217;s/\.jpg/\.pdf/g&#8217;`
done
IFS=$SAVEIFS
Copiatelo nella vostra diectory in un [...]]]></description>
		<wfw:commentRss>http://www.tech-effe.net/wordpress/?feed=rss2&amp;p=101</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prevent DoS on Apache web server &#8211; Install mod_evasive in Ubuntu</title>
		<link>http://www.tech-effe.net/wordpress/?p=98</link>
		<comments>http://www.tech-effe.net/wordpress/?p=98#comments</comments>
		<pubDate>Wed, 24 Feb 2010 11:44:04 +0000</pubDate>
		<dc:creator>Fabio</dc:creator>
				<category><![CDATA[Linux admin notes]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[dos]]></category>
		<category><![CDATA[evasive]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[httpd.conf]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[modules]]></category>
		<category><![CDATA[mod_evasive]]></category>
		<category><![CDATA[prevent]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.tech-effe.net/wordpress/?p=98</guid>
		<description><![CDATA[
Scrivo due righe sulla prevenzione degli attacchi DoS (http://it.wikipedia.org/wiki/Denial_of_service), per prevenirli su Apache2, ovvero il server web.
C&#8217;è un modulo veloce e pratico da configurare che si chiama mod_evasive (anche conosciuto come mod_dosevasive http://nanoweb.si.kz/manual/mod_dosevasive.html) disponibile per Apache. Il modulo tiene conto della rapidità delle richieste da parte del client, se sono oltre una certa quantità per [...]]]></description>
		<wfw:commentRss>http://www.tech-effe.net/wordpress/?feed=rss2&amp;p=98</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
