<?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>Abisso Dev. &#187; Progetti</title>
	<atom:link href="http://abisso.org/category/progetti/feed/" rel="self" type="application/rss+xml" />
	<link>http://abisso.org</link>
	<description>il sapere umano appartiene al mondo</description>
	<lastBuildDate>Sun, 02 May 2010 14:08:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>YubiRuby &#8211; Yubikey with Ruby</title>
		<link>http://abisso.org/2010/02/yubiruby-yubikey-with-ruby/</link>
		<comments>http://abisso.org/2010/02/yubiruby-yubikey-with-ruby/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 16:17:17 +0000</pubDate>
		<dc:creator>nolith</dc:creator>
				<category><![CDATA[Progetti]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[wishes]]></category>
		<category><![CDATA[yubico]]></category>
		<category><![CDATA[yubikey]]></category>

		<guid isPermaLink="false">http://abisso.org/?p=186</guid>
		<description><![CDATA[Some days ago, willing to learn how to extends ruby with C code, I wrote a wrapper for yubico-c library. You can find the sourcecode of my work on bitbucket and some installation instruction on the gemmcutter page. After installing the gem with $ gem install YubiRuby you can try it with the following code [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-187" title="yubikey" src="http://abisso.org/wp-content/uploads/2010/02/Schermata-2010-02-14-a-16.57.12.png" alt="" width="108" height="86" />Some days ago, willing to learn how to extends ruby with C code, I wrote a wrapper for <a href="http://code.google.com/p/yubico-c/" target="_blank">yubico-c</a> library.</p>
<p>You can find the sourcecode of my work on <a href="http://bitbucket.org/nolith/yubiruby/" target="_blank">bitbucket</a> and some installation instruction on <a href="http://gemcutter.org/gems/YubiRuby" target="_blank">the gemmcutter page</a>.</p>
<p><span id="more-186"></span></p>
<p><a href="http://www.yubico.com/o.php?refid=162&amp;rno=1906861421"><img class="alignright" style="border: 0pt none;" src="http://forum.yubico.com/includes/affiliate/images/yubico.jpg" alt="" width="107" height="60" /></a>After installing the gem with<br />
<tt>$ gem install YubiRuby</tt><br />
you can try it with the following code</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rubygems'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'YubiRuby'</span>
&nbsp;
key = <span style="color:#996600;">&quot;6df89690b5f51bd9ac912c5004781e86&quot;</span> <span style="color:#008000; font-style:italic;">#use your AES key</span>
y = <span style="color:#6666ff; font-weight:bold;">YubiRuby::Yubikey</span>.<span style="color:#9900CC;">new</span><span style="color:#006600; font-weight:bold;">&#40;</span>key<span style="color:#006600; font-weight:bold;">&#41;</span>;
<span style="color:#CC0066; font-weight:bold;">puts</span> y.<span style="color:#9900CC;">key</span>
otp = <span style="color:#CC0066; font-weight:bold;">gets</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">strip</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> y.<span style="color:#9900CC;">parse</span><span style="color:#006600; font-weight:bold;">&#40;</span>otp<span style="color:#006600; font-weight:bold;">&#41;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Ouput: #{y}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;uid: #{y.uid}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;counter: #{y.counter}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;capslock: #{y.triggered_by_capslock?}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;timestamp low/high: #{y.timestamp_low}/#{y.timestamp_high}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;session: #{y.session}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;random: #{y.random}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;crc: #{y.crc}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;crc residue: #{y.crc_residue}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;crc residue ok?: #{y.crc?} (#{y.crc_residue} == #{YubiRuby::Yubikey::CRC_OK_RESIDUE})&quot;</span></pre></div></div>

<p>I hope to find the time for writing an <a href="http://github.com/binarylogic/authlogic" target="_blank">authlogic </a>extension in order to use a yubikey with rails application.</p>
]]></content:encoded>
			<wfw:commentRss>http://abisso.org/2010/02/yubiruby-yubikey-with-ruby/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dr. Nolith</title>
		<link>http://abisso.org/2009/10/dr-nolith/</link>
		<comments>http://abisso.org/2009/10/dr-nolith/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 10:06:52 +0000</pubDate>
		<dc:creator>nolith</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[Progetti]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[nolith]]></category>

		<guid isPermaLink="false">http://abisso.org/?p=163</guid>
		<description><![CDATA[Non vi preoccupate, sono vivo Ultimamente sono stato poco presente perché stavo portando avanti il mio lavoro di tesi. Adesso che ho finito cercherò di essere più presente e di continuare a portare avanti about-me. Per il momento segnalo che sto preparando una lezione introduttiva su IPv6 che si terrà durante il corso di &#8220;Gestione [...]]]></description>
			<content:encoded><![CDATA[<p>Non vi preoccupate, sono vivo <img src='http://abisso.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ultimamente sono stato poco presente perché stavo portando avanti il mio lavoro di tesi. Adesso che ho finito cercherò di essere più presente e di continuare a portare avanti <a href="/projects/about-me">about-me</a>.</p>
<p>Per il momento segnalo che sto preparando una <a href="http://code.l0g.in/intro_ipv6">lezione introduttiva su IPv6</a> che si terrà durante il corso di &#8220;<a href="http://lart.det.unifi.it/didattica/corsi/gestione-reti-di-telecomunicazioni/" target="_blank">Gestione e Sicurezza di Reti di Telecomunicazioni</a>&#8221; dell&#8217;Università di Firenze.</p>
]]></content:encoded>
			<wfw:commentRss>http://abisso.org/2009/10/dr-nolith/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Released About Me 1.0.5</title>
		<link>http://abisso.org/2009/06/released-about-me-1-0-5/</link>
		<comments>http://abisso.org/2009/06/released-about-me-1-0-5/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 13:35:34 +0000</pubDate>
		<dc:creator>nolith</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[Progetti]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[goodreads]]></category>
		<category><![CDATA[google profile]]></category>
		<category><![CDATA[google reader]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[orkut]]></category>
		<category><![CDATA[qik]]></category>
		<category><![CDATA[qype]]></category>
		<category><![CDATA[redgage]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://abisso.org/?p=144</guid>
		<description><![CDATA[This About Me release fixes image path when blog URL isn&#8217;t the same of WP URL, and also add supports for the following social networks: GoodReads Orkut Google Profile Google Reader Qype Ebay RedGage added in 1.0.4 If you are interested in Qik.com support please consider installing the development snapshot. If you are interested in [...]]]></description>
			<content:encoded><![CDATA[<p>This <a href="http://abisso.org/projects/about-me/">About Me</a> release fixes image path when blog URL isn&#8217;t the same of WP URL, and also add supports for the following social networks:</p>
<ul>
<li>GoodReads       </li>
<li>Orkut           </li>
<li>Google Profile  </li>
<li>Google Reader   </li>
<li>Qype            </li>
<li>Ebay            </li>
<li>RedGage <em>added in 1.0.4</em></li>
</ul>
<p><span id="more-144"></span></p>
<p>
If you are interested in <em>Qik.com</em> support please consider installing the <a href="http://code.l0g.in/about-me/get/tip.zip">development snapshot</a>.
</p>
<p>
   If you are interested in <a href="http://abisso.org/projects/about-me/">About Me</a> development milestones you can find it <a href="http://code.l0g.in/about-me/issues/?milestone=version%202.0.0">here</a> enhancement and proposal for the release 2.0.</p>
]]></content:encoded>
			<wfw:commentRss>http://abisso.org/2009/06/released-about-me-1-0-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[redirector] Sinatra + Heroku =&gt; Micro-applicazioni di cui non preoccuparsi</title>
		<link>http://abisso.org/2009/06/sinatra-heroku-micro-applicazioni-di-cui-non-preoccuparsi/</link>
		<comments>http://abisso.org/2009/06/sinatra-heroku-micro-applicazioni-di-cui-non-preoccuparsi/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:08:22 +0000</pubDate>
		<dc:creator>nolith</dc:creator>
				<category><![CDATA[Progetti]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[heroku]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[sinatra]]></category>

		<guid isPermaLink="false">http://abisso.org/?p=131</guid>
		<description><![CDATA[Oggi mi son imbattuto in un problema che ho risolto grazie a sinatra ed heroku. Nei giorni scorsi avevo deciso di usare il domino bb.alessiocaiazza.info come mia pagina personale su bitbucket, solo che poi ho comprato il dominio l0g.in e avrei preferito usare code.l0g.in. Fin qui nulla di male, ma come fare con tutti i [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-137 alignright" style="margin-left: 3px;" title="redirector" src="http://abisso.org/wp-content/uploads/2009/06/redirector.png" alt="redirector logo" width="100" height="100" />Oggi mi son imbattuto in un problema che ho risolto grazie a sinatra ed heroku.</p>
<p>Nei giorni scorsi avevo deciso di usare il domino <em>bb.alessiocaiazza.info</em> come mia pagina personale su <a href="http://bitbucket.org">bitbucket</a>, solo che poi ho comprato il dominio <em>l0g.in</em> e avrei preferito usare <a href="http://code.l0g.in">code.l0g.in</a>.</p>
<p>Fin qui nulla di male, ma come fare con tutti i link che avevo disseminato in giro per il web? Avrebbero puntato ad una pagina di errore? No!</p>
<p>Mi è venuto in mente che con sinatra è possibile catturare le url con delle regexp&#8230;quindi&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#008000; font-style:italic;">#</span>
<span style="color:#008000; font-style:italic;"># redirector</span>
<span style="color:#008000; font-style:italic;">#</span>
<span style="color:#008000; font-style:italic;"># (c) 2009 - Alessio Caiazza </span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rubygems'</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'sinatra'</span>
&nbsp;
REDIRECT_TO=<span style="color:#996600;">'http://l0g.in'</span>
&nbsp;
get <span style="color:#996600;">'/'</span> <span style="color:#9966CC; font-weight:bold;">do</span>
	redirect REDIRECT_TO
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
get <span style="color:#996600;">'/*'</span> <span style="color:#9966CC; font-weight:bold;">do</span>
	redirect <span style="color:#996600;">&quot;#{REDIRECT_TO}/#{params[:splat][0]}&quot;</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>e poi deploy su heroku e custom domain service &#8230;..<strong>fatto!</strong></p>
<p>Ho colto l&#8217;occasione per provare <a href="http://hg-git.github.com/">hg-git</a>, quindi ho pubblicato tutto su <a href="http://github.com/nolith/redirector/">github</a></p>
]]></content:encoded>
			<wfw:commentRss>http://abisso.org/2009/06/sinatra-heroku-micro-applicazioni-di-cui-non-preoccuparsi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firmare gli archivi jar</title>
		<link>http://abisso.org/2009/06/firmare-gli-archivi-jar/</link>
		<comments>http://abisso.org/2009/06/firmare-gli-archivi-jar/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 13:23:53 +0000</pubDate>
		<dc:creator>nolith</dc:creator>
				<category><![CDATA[CaptureMJPEG]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[CAcert]]></category>
		<category><![CDATA[jarsigner]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://abisso.org/?p=127</guid>
		<description><![CDATA[Un po&#8217; di tempo fa mi ero imbattuto nel problema di utilizzare online un&#8217;applet generata con Processing che utilizzasse CaptureMJPEG. Ero giunto alla conclusione che fosse necessario firmare l&#8217;applet e qualche giorno dopo mi sono procurato tramite CaCert una chiava utilizzabile per la firma del codice. Quello che segue è un rapido riepilogo dei passi [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://abisso.org/2009/05/capturemjpeg-come-applet/">Un po&#8217; di tempo fa</a> mi ero imbattuto nel problema di utilizzare online un&#8217;applet generata con <a href="http://processing.org">Processing</a> che utilizzasse <a href="http://capturemjpeg.lilik.it">CaptureMJPEG</a>.</p>
<p>Ero giunto alla conclusione che fosse necessario firmare l&#8217;applet e qualche giorno dopo mi sono procurato tramite <a href="http://cacert.org">CaCert</a> una chiava utilizzabile per la firma del codice.</p>
<p>Quello che segue è un rapido riepilogo dei passi necessari per la firma dei jar.</p>
<p><!-- more --></p>
<h3>Individuazione della chiave</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">kaiman:applet nolith$ keytool <span style="color: #660033;">-list</span> <span style="color: #660033;">-storetype</span> pkcs12 \
<span style="color: #660033;">-keystore</span> keystore.p12
Immettere la password del keystore:  <span style="color: #000000; font-weight: bold;">**********************</span>
&nbsp;
Tipo keystore: pkcs12
Provider keystore: SunJSSE
&nbsp;
Il keystore contiene <span style="color: #000000;">1</span> entry
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">id</span> di alessio caiazza a root ca, <span style="color: #000000;">2</span>-giu-<span style="color: #000000;">2009</span>, keyEntry,
Impronta digitale certificato <span style="color: #7a0874; font-weight: bold;">&#40;</span>MD5<span style="color: #7a0874; font-weight: bold;">&#41;</span>: <span style="color: #000000;">81</span>:<span style="color: #000000;">57</span>:<span style="color: #000000;">63</span>:<span style="color: #000000;">80</span>:D9:<span style="color: #000000;">71</span>:<span style="color: #000000;">61</span>:CD:6D:1E:CA:1D:<span style="color: #000000;">28</span>:0C:<span style="color: #000000;">19</span>:F8</pre></div></div>

<h3>Firma</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">kaiman:applet nolith$ jarsigner <span style="color: #660033;">-storetype</span> pkcs12 \
<span style="color: #660033;">-keystore</span> keystore.p12 micc_histo.jar \
<span style="color: #ff0000;">&quot;id di alessio caiazza a root ca&quot;</span>
Enter Passphrase <span style="color: #000000; font-weight: bold;">for</span> keystore: <span style="color: #000000; font-weight: bold;">****************************</span></pre></div></div>

<p>Per quanto riguarda gli applet esportati con Processing è necessario firmare il proprio jar e core.jar (i jar di CaptureMJPEG sono forniti già firmati dalla versione 1.0.1)</p>
]]></content:encoded>
			<wfw:commentRss>http://abisso.org/2009/06/firmare-gli-archivi-jar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CaptureMJPEG 1.0.1 is out!</title>
		<link>http://abisso.org/2009/06/capturemjpeg-101-is-out/</link>
		<comments>http://abisso.org/2009/06/capturemjpeg-101-is-out/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 12:57:19 +0000</pubDate>
		<dc:creator>nolith</dc:creator>
				<category><![CDATA[CaptureMJPEG]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://abisso.org/?p=122</guid>
		<description><![CDATA[CaptureMJPEG now works correctly on Processing &#62; 1.0 (tested on 1.0.4). Try out the demo applet. (may not work ) Download page.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://bitbucket.org/nolith/capturemjpeg/wiki/img/capturelogo.gif" alt="CaptureMJPEG logo" width="503" height="63" /></p>
<p><a href="http://bitbucket.org/nolith/capturemjpeg">CaptureMJPEG</a> now works correctly on <a href="http://processing.org">Processing</a> &gt; 1.0 (tested on 1.0.4).</p>
<p>Try out the <a href="http://capturemjpeg.lilik.it/applet/axis_demo.html">demo applet</a>. (may not work <img src='http://abisso.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> )</p>
<p><a href="http://bitbucket.org/nolith/capturemjpeg/downloads/">Download page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://abisso.org/2009/06/capturemjpeg-101-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Me 1.0.3</title>
		<link>http://abisso.org/2009/06/about-me-103/</link>
		<comments>http://abisso.org/2009/06/about-me-103/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 21:51:41 +0000</pubDate>
		<dc:creator>nolith</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://abisso.org/?p=120</guid>
		<description><![CDATA[About Me 1.0.3 released. Added DIsqus support.]]></description>
			<content:encoded><![CDATA[<p><a href="http://abisso.org/projects/about-meabout-me/">About Me</a> 1.0.3 released.</p>
<p>Added DIsqus support.</p>
]]></content:encoded>
			<wfw:commentRss>http://abisso.org/2009/06/about-me-103/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Me sul codex di wordpress</title>
		<link>http://abisso.org/2009/05/about-me-sul-codex-di-wordpress/</link>
		<comments>http://abisso.org/2009/05/about-me-sul-codex-di-wordpress/#comments</comments>
		<pubDate>Wed, 20 May 2009 13:13:33 +0000</pubDate>
		<dc:creator>nolith</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[italiano]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[wordpress codex]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://abisso.org/?p=108</guid>
		<description><![CDATA[Oggi hanno accettato About Me sul codex di wordpress. Questa è la pagina ufficiale di About Me sul codex. Il sistema di deploy basato su svn è molto comodo, ma usando mercurial per lo sviluppo devo fare qualche passaggio in più.]]></description>
			<content:encoded><![CDATA[<p>Oggi hanno accettato <strong>About Me</strong> sul <a href="http://codex.wordpress.org">codex di wordpress</a>.</p>
<p>Questa è la <a href="http://wordpress.org/extend/plugins/about-me">pagina ufficiale di About Me</a> sul codex.</p>
<p>Il sistema di deploy basato su svn è molto comodo, ma usando mercurial per lo sviluppo devo fare qualche passaggio in più.</p>
]]></content:encoded>
			<wfw:commentRss>http://abisso.org/2009/05/about-me-sul-codex-di-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Me WordPress Plugin</title>
		<link>http://abisso.org/2009/05/about-me-wordpress-plugin/</link>
		<comments>http://abisso.org/2009/05/about-me-wordpress-plugin/#comments</comments>
		<pubDate>Fri, 15 May 2009 18:31:28 +0000</pubDate>
		<dc:creator>nolith</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[tommyblue]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://abisso.org/?p=71</guid>
		<description><![CDATA[Some days ago I made a little patch for Social Links, Tommaso pointed me to a strange behaviour if used with LightBox 2 Plugin. So I decided to fork Social Links and today &#8220;About Me&#8221; is born.]]></description>
			<content:encoded><![CDATA[<p>Some days ago I made a <a href="http://abisso.org/index.php/2009/05/social-links-plugin-with-relme-identica-and-bitbucket-support/">little patch</a> for Social Links, <a href="http://tommyblue.it" rel="friend met">Tommaso</a> pointed me to a <a href="http://i40.tinypic.com/14vtimt.png" rel="lightbox">strange behaviour</a> if used with LightBox 2 Plugin.</p>
<p>So I decided to fork Social Links and today <a href="/index.php/projects/about-me">&#8220;About Me&#8221;</a> is born.</p>
]]></content:encoded>
			<wfw:commentRss>http://abisso.org/2009/05/about-me-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Links plugin with rel=&#8221;me&#8221;, Identi.ca, Bitbucket and Github support</title>
		<link>http://abisso.org/2009/05/social-links-plugin-with-relme-identica-and-bitbucket-support/</link>
		<comments>http://abisso.org/2009/05/social-links-plugin-with-relme-identica-and-bitbucket-support/#comments</comments>
		<pubDate>Wed, 13 May 2009 12:17:30 +0000</pubDate>
		<dc:creator>nolith</dc:creator>
				<category><![CDATA[About Me]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[bitbucket]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[identi.ca]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[xfn]]></category>

		<guid isPermaLink="false">http://abisso.org/?p=31</guid>
		<description><![CDATA[UPDATE: I&#8217;ve forked Social Links, please refer to About Me. Today I made a little patch of Social Links WordPress Plugin in order to add identi.ca, Bitbucket and Github support and for adding rel="me" tag to the generated links (see XFN for more details). I&#8217;ve uploaded the plugin on my bitbucket, so you can see [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATE: I&#8217;ve forked Social Links, please refer to <a href="/index.php/projects/about-me/">About Me</a>.</p>
<p><img src="http://abisso.org/wp-content/uploads/2009/05/social_links.png" alt="Social Links screenshot with Identi.ca and Bitbucket" title="social_links" width="167" height="94" class="size-full wp-image-36"  style="float:right;"/>Today I made a little patch of <a href="http://blog.maybe5.com/?page_id=94" target="_blank">Social Links WordPress Plugin</a> in order to add <a href="http://identi.ca" target="_blank">identi.ca</a>, <a href="http://bitbucket.org" target="_blank">Bitbucket</a> and <a href="http://github.com" target="_blank">Github</a> support and for adding <code>rel="me"</code> tag to the generated links <em>(see <a href="http://gmpg.org/xfn/" target="_blank">XFN</a> for more details).</p>
<p>I&#8217;ve uploaded the plugin on <a href="http://bb.alessiocaiazza.info/about-me/" rel="me">my bitbucket</a>, so you can see <a href="http://bb.alessiocaiazza.info/about-me/diff/?diff2=277ec9c01cd6&#038;diff1=ccf8fe183f72" >the diff with Social Links 1.0.11</a>. If you want to install it, go to the <a href="http://bb.alessiocaiazza.info/about-me/downloads/">download page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://abisso.org/2009/05/social-links-plugin-with-relme-identica-and-bitbucket-support/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
