<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Hoheinzollern</title>
	<atom:link href="http://hoheinzollern.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hoheinzollern.wordpress.com</link>
	<description>Alessandro Bruni&#039;s weblog</description>
	<lastBuildDate>Fri, 13 Jan 2012 18:18:51 +0000</lastBuildDate>
	<language>it</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='hoheinzollern.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Hoheinzollern</title>
		<link>http://hoheinzollern.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://hoheinzollern.wordpress.com/osd.xml" title="Hoheinzollern" />
	<atom:link rel='hub' href='http://hoheinzollern.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Sony Reader Notes to SVG or PDF</title>
		<link>http://hoheinzollern.wordpress.com/2011/11/27/sony-reader-notes-to-svg-or-pdf/</link>
		<comments>http://hoheinzollern.wordpress.com/2011/11/27/sony-reader-notes-to-svg-or-pdf/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 17:38:08 +0000</pubDate>
		<dc:creator>Alessandro Bruni</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://hoheinzollern.wordpress.com/?p=338</guid>
		<description><![CDATA[I recently bought a Sony PRS-T1 ebook reader and it turns out it has a very nice feature: it&#8217;s possible to sketch notes and little drawings using the touch screen. Then you can export them using the &#8220;take a snapshot&#8221; feature, which creates an image from the canvas. What if you wanted to have them [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=338&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently bought a Sony PRS-T1 ebook reader and it turns out it has a very nice feature: it&#8217;s possible to sketch notes and little drawings using the touch screen. Then you can export them using the &#8220;take a snapshot&#8221; feature, which creates an image from the canvas.</p>
<p>What if you wanted to have them exported to any vector based format? It turns out that the format of the note files is a wrapped SVG with a container element and a couple of namespaces. To get an SVG file we just need to unwrap them. And you don&#8217;t even have to bother XML processing, you just need a simple sed command in any Unix-like (Linux, OS-X etc) environment:</p>
<pre>#!/bin/bash
sed "{ s/n1://g; s/&lt;n0:notepad.*&lt;svg/&lt;svg/;s/&lt;\/n0:page.*notepad&gt;// }" $1</pre>
<p>Save this to /usr/local/bin/note2svg with your favorite editor and make it executable:</p>
<pre>chmod +x /usr/local/bin/note2svg</pre>
<p>Whenever you want to get the SVG file from the reader you&#8217;ll just have to open a terminal and type:</p>
<pre>note2svg input_file.note &gt; output_file.svg</pre>
<p>If you also want to convert the SVG file to a PDF you&#8217;ll need to have Inkscape installed and type:</p>
<pre>inkscape input_file.svg --export-pdf=output_file.pdf</pre>
<p>Enjoy your notes <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hoheinzollern.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hoheinzollern.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hoheinzollern.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hoheinzollern.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hoheinzollern.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hoheinzollern.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hoheinzollern.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hoheinzollern.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hoheinzollern.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hoheinzollern.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hoheinzollern.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hoheinzollern.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hoheinzollern.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hoheinzollern.wordpress.com/338/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=338&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hoheinzollern.wordpress.com/2011/11/27/sony-reader-notes-to-svg-or-pdf/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d5547c94cd22312ad54eb3125b814ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hoheinzollern</media:title>
		</media:content>
	</item>
		<item>
		<title>Golden Gate Bridge</title>
		<link>http://hoheinzollern.wordpress.com/2011/11/23/golden-gate-bridge/</link>
		<comments>http://hoheinzollern.wordpress.com/2011/11/23/golden-gate-bridge/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 11:20:59 +0000</pubDate>
		<dc:creator>Alessandro Bruni</dc:creator>
				<category><![CDATA[Foto]]></category>

		<guid isPermaLink="false">http://hoheinzollern.wordpress.com/?p=297</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=297&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/29866141@N05/sets/72157625158566395/"><img class="aligncenter size-full wp-image-298" title="Golden Gate bridge in a foggy day" src="http://hoheinzollern.files.wordpress.com/2010/11/5133618422_7625d471bf.jpg?w=500" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hoheinzollern.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hoheinzollern.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hoheinzollern.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hoheinzollern.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hoheinzollern.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hoheinzollern.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hoheinzollern.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hoheinzollern.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hoheinzollern.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hoheinzollern.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hoheinzollern.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hoheinzollern.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hoheinzollern.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hoheinzollern.wordpress.com/297/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=297&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hoheinzollern.wordpress.com/2011/11/23/golden-gate-bridge/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d5547c94cd22312ad54eb3125b814ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hoheinzollern</media:title>
		</media:content>

		<media:content url="http://hoheinzollern.files.wordpress.com/2010/11/5133618422_7625d471bf.jpg" medium="image">
			<media:title type="html">Golden Gate bridge in a foggy day</media:title>
		</media:content>
	</item>
		<item>
		<title>Unity Tracker Lens</title>
		<link>http://hoheinzollern.wordpress.com/2011/11/21/unity-tracker-lens/</link>
		<comments>http://hoheinzollern.wordpress.com/2011/11/21/unity-tracker-lens/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 15:15:20 +0000</pubDate>
		<dc:creator>Alessandro Bruni</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://hoheinzollern.wordpress.com/?p=329</guid>
		<description><![CDATA[A friend of mine was looking around for a decent file indexer for Ubuntu since he&#8217;s relying on this approach to manage his files on OS X (and Windows 7 does it too). I got interested in the topic, and personally I agree with him and think it&#8217;s such a shame that no indexing software [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=329&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A friend of mine was looking around for a decent file indexer for Ubuntu since he&#8217;s relying on this approach to manage his files on OS X (and Windows 7 does it too). I got interested in the topic, and personally I agree with him and think it&#8217;s such a shame that no indexing software is present and integrated in recent linux distributions by default, especially since this has been in past (with Tracker and Ubuntu, but also with Beagle and openSUSE) with good success and reception.</p>
<p>At the time of writing <a href="http://projects.gnome.org/tracker/">Tracker</a> seems the only full-featured system remained alive and the best option among the various solutions.</p>
<p>So here&#8217;s my little contribution to this. I give you a little lens (well, technically a scope, which provides data for the file lens) that integrates Tracker with the Ubuntu Unity interface. I bundled the code with tracker-needle, which is the current official GUI for this indexer, but if there&#8217;s good request I can make a separate package, which would make more sense, I think.</p>
<p>To install the software execute:</p>
<pre><code>git clone git://github.com/hoheinzollern/tracker.git</code>
sudo apt-get build-dep tracker
sudo apt-get install libunity-dev
cd tracker
./autogen.sh
./configure
make
sudo make install</pre>
<p>Beware the fact that it’s still an experimental plugin, that might have some errors and still doesn’t support filtering files by size and edit date.</p>
<p>You can poke around the source code in GitHub at the address <a href="https://github.com/hoheinzollern/tracker">https://github.com/hoheinzollern/tracker</a></p>
<p>Let me know what you guys think, and if this can be integrated with the official Tracker distribution or even in Unity.</p>
<p>Cheers!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hoheinzollern.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hoheinzollern.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hoheinzollern.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hoheinzollern.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hoheinzollern.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hoheinzollern.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hoheinzollern.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hoheinzollern.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hoheinzollern.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hoheinzollern.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hoheinzollern.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hoheinzollern.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hoheinzollern.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hoheinzollern.wordpress.com/329/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=329&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hoheinzollern.wordpress.com/2011/11/21/unity-tracker-lens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d5547c94cd22312ad54eb3125b814ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hoheinzollern</media:title>
		</media:content>
	</item>
		<item>
		<title>Breeze, Tim and the Jewish Co-Op</title>
		<link>http://hoheinzollern.wordpress.com/2010/09/17/breeze-tim-and-the-jewish-co-op/</link>
		<comments>http://hoheinzollern.wordpress.com/2010/09/17/breeze-tim-and-the-jewish-co-op/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 00:25:01 +0000</pubDate>
		<dc:creator>Alessandro Bruni</dc:creator>
				<category><![CDATA[Foto]]></category>

		<guid isPermaLink="false">http://hoheinzollern.wordpress.com/?p=278</guid>
		<description><![CDATA[Second time! Vi sto scrivendo dalla biblioteca dell&#8217;universita&#8217;, un edificio &#8220;huge&#8221; (tanto per rimanere in tema col post precedente), quattro piani di libri, good couches, tavoli, mac e terrazze dove si puo&#8217; leggere in pace un libro dando di tanto in tanto uno sguardo alla foresta che ci circonda. Qui e&#8217; pieno di scoiattoli e [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=278&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Second time! Vi sto scrivendo dalla biblioteca dell&#8217;universita&#8217;, un edificio &#8220;huge&#8221; (tanto per rimanere in tema col post precedente), quattro piani di libri, good couches, tavoli, mac e terrazze dove si puo&#8217; leggere in pace un libro dando di tanto in tanto uno sguardo alla foresta che ci circonda. Qui e&#8217; pieno di scoiattoli e venendo su in autobus ho pure visto un cerbiatto che attraversava la strada.</p>
<p><a href="http://hoheinzollern.files.wordpress.com/2010/09/patchwork.jpg"><img class="aligncenter size-medium wp-image-292" title="I ragazzi della jewish co-op" src="http://hoheinzollern.files.wordpress.com/2010/09/patchwork.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>Beh insomma dato che il posto ispira un po&#8217; di tranquillita&#8217; vi scrivo di un&#8217;altra esperienza di questi giorni. Dopo la notte passata da Clark e girando tutta Santa Cruz alla ricerca di un posto dove vivere, sempre tramite couchsurfing ho trovato un buon divano dove passare la notte. Lei si chiama Breeze, vive in una co-operativa ebrea, dove ho incontrato un sacco di gente simpatica tra cui Tim, un ragazzo australiano che sta facendo il giro della California in cerca di posti dove surfare, dormendo in un vain e facendo couchsurfing nelle citta&#8217;; Rebecca e Rachel, che faranno la school of arts a UCSC; Rachel seguira&#8217; anche qualche corso di fotografia che spero di fare anch&#8217;io in futuro, quindi oltre che downtown ci potremmo anche incontrare in universita&#8217;; Chris, un pilota di aerei, che appena ha saputo che ero europeo mi ha chiesto di un&#8217;alleanza militare pacifica europea di cui ignoravo l&#8217;esistenza; Colin e un po&#8217; di altra gente random per finire <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> <span id="more-278"></span></p>
<p>Chiunque volesse capire profondamente il concetto di ospitalita&#8217; e condivisione dovrebbe andare a passare un po&#8217; di tempo da loro. Sono dei ragazzi molto simpatici, hanno risposto subito alla mia richiesta di ospitalita&#8217; senza fare alcun problema. Non ho incontrato Breeze &#8211; avevo chiesto a lei un posto dove dormire &#8211; se non il giorno successivo, ma sono stato subito accolto da Rebecca e Rachel che mi hanno fatto entrare e con cui ho passato la notte a ciaccolare del piu&#8217; o del meno assieme a Tim, il ragazzo australiano.</p>
<p>La mattina dopo ci siamo svegliati e ho fatto loro assaggiare il caffe&#8217; italiano, con la mochetta singola che mi aveva regalato Lucia ancora un paio di anni fa, che non ha alcun contenitore ma fa uscire il caffe&#8217; direttamente da un tubicino dalla forma di un rubinetto. In europa questo non avrebbe rappresentato alcun problema: puoi mettere la tazzina da caffe&#8217; sotto il rubinetto e aspettare che il liquido esca dalla moka, per poi goderti un godurioso caffe&#8217; quasi-espresso (ho comprato della polvere goppion, per far sentire il sapore della nostra citta&#8217; anche oltreoceano). Ma qua siamo in America, tutto e&#8217; HUGE! La cosa piu&#8217; piccola che ho trovato e&#8217; stato un barattolino di vetro che son riuscito a mettere sotto la moka per prendere il caffe&#8217;, poi da quel piccolo contenitore l&#8217;ho dovuto mettere sulle coffee mug, per cui una buona tazzina di caffe&#8217; sembrava poco piu&#8217; di uno sputo in quelle grandi tazzone che usano per fare colazione. Ciononostante, e&#8217; molto piaciuto!</p>
<p>Ho passato la mattinata prendendo contatti e facendo un giro per vedere un paio di appartamenti, poi sono tornato alla jewish co-op per pranzare con Tim e Colin. Siamo usciti downtown con l&#8217;intenzione di pranzare al messicano, poi abbiamo trovato i banchetti di una festa greca e siamo andati a mangiare li&#8217;.  Dopo pranzo abbiamo girato ancora un po&#8217; per le bancarelle della zona e Colin ha preso un puppazzo gigante di un orso in stile winnie the pooh con un cappello e un vestito da pompiere fatto in stile plastica impermeabile rossa e blu. Abbiamo girato ancora un po&#8217; per il centro io, Tim e Colin e ad ogni angolo della strada ci fermavano per il pupazzo: c&#8217;era chi voleva farci una foto, chi voleva sapere dove l&#8217;avevamo preso, chi voleva soltanto ciaccolare, e&#8217; stato divertentissimo! Insomma, se volete attaccar bottone a Santa Cruz e fare quattro ciaccole con chi passa per la strada, un buon modo e&#8217; gironzolare per le vie del centro con un pupazzo gigante sulle spalle!</p>
<p>Stasera forse ci rivediamo assieme alle antropologhe italiane, che quando hanno saputo di questi ragazzi hanno subito voluto incontrarli. Let&#8217;s see where it gets.. Bye!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hoheinzollern.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hoheinzollern.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hoheinzollern.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hoheinzollern.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hoheinzollern.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hoheinzollern.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hoheinzollern.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hoheinzollern.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hoheinzollern.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hoheinzollern.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hoheinzollern.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hoheinzollern.wordpress.com/278/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hoheinzollern.wordpress.com/278/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hoheinzollern.wordpress.com/278/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=278&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hoheinzollern.wordpress.com/2010/09/17/breeze-tim-and-the-jewish-co-op/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d5547c94cd22312ad54eb3125b814ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hoheinzollern</media:title>
		</media:content>

		<media:content url="http://hoheinzollern.files.wordpress.com/2010/09/patchwork.jpg?w=300" medium="image">
			<media:title type="html">I ragazzi della jewish co-op</media:title>
		</media:content>
	</item>
		<item>
		<title>Huge!</title>
		<link>http://hoheinzollern.wordpress.com/2010/09/16/huge/</link>
		<comments>http://hoheinzollern.wordpress.com/2010/09/16/huge/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 06:27:10 +0000</pubDate>
		<dc:creator>Alessandro Bruni</dc:creator>
				<category><![CDATA[Foto]]></category>

		<guid isPermaLink="false">http://hoheinzollern.wordpress.com/?p=263</guid>
		<description><![CDATA[Ciao ragazzi, come promesso è ora di raccontare un po&#8217; di impressioni di questi primi giorni in California, prima che anche le sensazioni e i ricordi svaniscano nella routine giornaliera che inizierà a breve anche per me. Il primo impatto che ho avuto quando sono arrivato qui è che tutto è HUGE. Non c&#8217;è altra [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=263&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ciao ragazzi, come promesso è ora di raccontare un po&#8217; di impressioni di questi primi giorni in California, prima che anche le sensazioni e i ricordi svaniscano nella routine giornaliera che inizierà a breve anche per me.</p>
<p>Il primo impatto che ho avuto quando sono arrivato qui è che tutto è HUGE. Non c&#8217;è altra parola che descriva meglio questa sensazione: grande o enorme non rendono il senso di grandezza che si ha guidando su un&#8217;autostrada a 5 corsie con una berlina che, tra le macchine da queste parti, è la più piccola. &#8220;Hey dude, that&#8217;s HUGE!&#8221; Così come sono sterminati i paesaggi, le bellissime foreste e l&#8217;oceano da queste parti, allo stesso modo lo sono le strade e altrettanto grande è ogni cosa che mi circonda qua. Chiedi un gelato piccolo e ti danno una botta di calorie che fai fatica a finire, il cibo e tutto è sproporzionato per un europeo. Posso capire i loro problemi alimentari, non sono problemi di cattiva alimentazione per la maggior parte &#8211; almeno qui in California &#8211; ma di troppa alimentazione!</p>
<h3><span style="font-size:small;"><span style="font-weight:normal;"><span style="font-size:medium;"><strong>Clark</strong></span></span></span></h3>
<p><span style="font-size:small;"><span style="font-weight:normal;"><span style="font-size:medium;"><strong><a href="http://hoheinzollern.files.wordpress.com/2010/09/me_clark.jpg"><img class="aligncenter size-medium wp-image-275" title="Me and Clark" src="http://hoheinzollern.files.wordpress.com/2010/09/me_clark.jpg?w=300&#038;h=238" alt="" width="300" height="238" /></a></strong></span></span></span></p>
<p><span style="font-size:small;">Clark è stato il mio primo couchsurfer. Dopo un viaggio piuttosto travagliato, una freeway attraversata con una sensazione di libertà tra le distese di foreste che coprono la bay area, sono arrivato a Santa Cruz. Giro un po&#8217; di strade per arrivare &#8220;downtown&#8221; e cercare l&#8217;ufficio informazioni per ottenere una mappa, che trovo immancabilmente chiuso. Chiamo Clark da un payphone locale: &#8220;Hi I&#8217;m Alessandro&#8221; &#8220;Hey boy where are you? (dude this one is smart, he just arrived and already has a phone number from Santa Cruz!)&#8221; &#8220;I went downtown to the information office to get a map but it&#8217;s closed, could you give me directions?&#8221; [..] Ok vi risparmio tutta la descrizione, vi basti sapere che ho scoperto che esistono 2 Mettinson Lane, una dalla parte opposta dell&#8217;altra rispetto all&#8217;autostrada, a cui si arriva rispettivamente da Ocean Street e Ocean Drive, e ovviamente ho preso quella sbagliata! Ma per capirlo ho dovuto prima interrogare una vecchietta del posto che, molto disponibile, mi ha dato indicazioni per prendere la strada giusta.</span></p>
<p><span style="font-size:small;"><span id="more-263"></span></span></p>
<p><span style="font-size:small;">Clark è un tipo un po&#8217; yankee, sulla cinquantina, stempiato, capelli corti marrone chiaro, occhi verdi profondi, con due figli e una fidanzata, Maria, una donna anche lei sui suoi cinquanta, di origini latinoamericane, che vive a San Jose. Dove siamo andati a cenare la prima sera. Sono stati molto ospitali, mi hanno offerto subito da bere una buona birra, mentre preparavano da mangiare ho incontrato i genitori di Maria &#8211; il padre era di origini italiane &#8211; suo figlio Chris e il gruppo di amici che, ho scoperto poi, hanno fatto anche loro l&#8217;EAP in Spagna. Erano tutti entusiasti di avermi ospite, interessati a conoscermi e molto disponibili. Mi hanno fatto sentire a casa sebbene fossi dall&#8217;altra parte del mondo, cenando assieme e discutendo a tavola come ogni buona famiglia, mi hanno fatto sentire parte della famiglia. È stata una sensazione impagabile!</span></p>
<p><span style="font-size:small;">&#8220;Sounds good&#8221; &#8211; Clark è come un padre per me. Mi ha consigliato, mi ha dato indicazioni e mi ha aiutato a risolvere le questioni burocratiche più urgenti, rimanendo sempre disponibile per qualsiasi cosa avessi bisogno. L&#8217;ho reincontrato la quarta sera, quando sono andato da lui a fare una carbonara e passare la serata in compagnia di lui, suo figlio e sua sorella Kathy,appena tornata dalle Galapagos, la quale si occupa della distribuzione dei fondi alla ricerca nel dipartimento di Ingegneria (e quindi molto vicina anche al corso di computer science), che si è proposta di assistermi nella scelta dei corsi e di aiutarmi per qualsiasi questione burocratica. Ragazzi, couchsurfing è una figata pazzesca! &#8220;you should defintely try it&#8221;. Non avrei mai avuto modo di incontrare una persona del genere e farci amicizia andando in uno stupido motel a passare un paio di notti in solitudine alla ricerca di un posto dove vivere. Senza contare tutti gli altri incontri interessanti che ho avuto questi giorni.</span></p>
<p><span style="font-size:small;">Cucinare una carbonara &#8220;normale&#8221; può essere un compito faticoso se al supermercato non riesci a ottenere meno di un chilo di pancetta, rigorosamente pepata, e una dozzina di uova. Ma appunto, come vi dicevo prima, qui è tutto huge, per cui bisogna accontentarsi. Ho spiegato a Clark che gli stavo facendo una pasta in cui si mette l&#8217;uovo crudo col grana a fine cottura e lui deve avermi preso per pazzo. Mi ha confessato dopo che pensava che fosse una schifezza, che l&#8217;avrebbe mangiata per non essere scortese e che mi avrebbe fatto un po&#8217; di complimenti di circostanza. Ma appena l&#8217;ha assaggiata: &#8220;Hey dude! that smells good! this is awesome!&#8221;. Insomma, se volete stupire qualcuno con un buon piatto italiano che non siano le lasagne o i maccheroni che conoscono dappertutto fate una carbonara!</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hoheinzollern.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hoheinzollern.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hoheinzollern.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hoheinzollern.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hoheinzollern.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hoheinzollern.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hoheinzollern.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hoheinzollern.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hoheinzollern.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hoheinzollern.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hoheinzollern.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hoheinzollern.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hoheinzollern.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hoheinzollern.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=263&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hoheinzollern.wordpress.com/2010/09/16/huge/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d5547c94cd22312ad54eb3125b814ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hoheinzollern</media:title>
		</media:content>

		<media:content url="http://hoheinzollern.files.wordpress.com/2010/09/me_clark.jpg?w=300" medium="image">
			<media:title type="html">Me and Clark</media:title>
		</media:content>
	</item>
		<item>
		<title>Google. Unbranded.</title>
		<link>http://hoheinzollern.wordpress.com/2009/07/21/google-unbranded/</link>
		<comments>http://hoheinzollern.wordpress.com/2009/07/21/google-unbranded/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 19:50:35 +0000</pubDate>
		<dc:creator>Alessandro Bruni</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://hoheinzollern.wordpress.com/?p=252</guid>
		<description><![CDATA[You were so much used to it that you didn&#8217;t notice, I bet! Google has removed all the beta labels from its brands&#8230; Wow! That&#8217;s a great piece of news!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=252&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://googledocs.blogspot.com/2009/07/removing-beta-label.html"><img class="alignnone" title="Google without beta label" src="http://4.bp.blogspot.com/_RAq5KuHSLq0/SlNqHRkVtNI/AAAAAAAAAUA/6M-7uozld3A/s400/beta_image.png" alt="" width="394" height="74" /></a></p>
<p style="text-align:left;">You were so much used to it that you didn&#8217;t notice, I bet! Google has removed all the beta labels from its brands&#8230; Wow!</p>
<p style="text-align:left;">That&#8217;s a great piece of news!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hoheinzollern.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hoheinzollern.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hoheinzollern.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hoheinzollern.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hoheinzollern.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hoheinzollern.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hoheinzollern.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hoheinzollern.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hoheinzollern.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hoheinzollern.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hoheinzollern.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hoheinzollern.wordpress.com/252/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hoheinzollern.wordpress.com/252/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hoheinzollern.wordpress.com/252/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=252&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hoheinzollern.wordpress.com/2009/07/21/google-unbranded/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d5547c94cd22312ad54eb3125b814ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hoheinzollern</media:title>
		</media:content>

		<media:content url="http://4.bp.blogspot.com/_RAq5KuHSLq0/SlNqHRkVtNI/AAAAAAAAAUA/6M-7uozld3A/s400/beta_image.png" medium="image">
			<media:title type="html">Google without beta label</media:title>
		</media:content>
	</item>
		<item>
		<title>Computer Graphics project.. Released!</title>
		<link>http://hoheinzollern.wordpress.com/2009/06/25/computer-graphics-project-released/</link>
		<comments>http://hoheinzollern.wordpress.com/2009/06/25/computer-graphics-project-released/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 14:48:11 +0000</pubDate>
		<dc:creator>Alessandro Bruni</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://hoheinzollern.wordpress.com/?p=231</guid>
		<description><![CDATA[Hello world, this is my project for the computer graphics exham I just attended! It&#8217;s a simple videogame modelled like a first person shooter where you can&#8217;t shoot but must reach the jellow flag before the red balls &#8211; likewise said the enemies &#8211; reach you! Here are the tech specs: Language: c++ Libraries: OpenGL [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=231&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_232" class="wp-caption aligncenter" style="width: 310px"><a href="http://hoheinzollern.files.wordpress.com/2009/06/game.png"><img class="size-medium wp-image-232" title="The game" src="http://hoheinzollern.files.wordpress.com/2009/06/game.png?w=300&#038;h=235" alt="Shot of the game: the flag" width="300" height="235" /></a><p class="wp-caption-text">Shot of the game: the flag</p></div>
<p>Hello world, this is my project for the computer graphics exham I just attended! It&#8217;s a simple videogame modelled like a first person shooter where you can&#8217;t shoot <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  but must reach the jellow flag before the red balls &#8211; likewise said the enemies &#8211; reach you!</p>
<p>Here are the tech specs:</p>
<ul>
<li>Language: c++</li>
<li>Libraries: OpenGL &amp; GLUT</li>
<li>Memory footprint: 54MB on a 64bit machine, at least 32MB of video ram required.</li>
</ul>
<p>If you are on a linux (Ubuntu I suppose) machine you must in order:</p>
<ol>
<li>install the build tools: <tt>apt-get install build-essential cmake freeglut3-dev bzr</tt></li>
<li>download the sources: <tt>bzr co lp:~alessandro-bruni/+junk/infografica</tt></li>
<li>build the sources: <tt>cd infografica/build &amp;&amp; cmake .. &amp;&amp; make</tt></li>
<li>run the project and enjoy the game: <tt>./infografica</tt></li>
</ol>
<p>And if you want to browse the source code at my &#8220;junk&#8221; repository&#8230; go get it at: <a href="https://code.launchpad.net/~alessandro-bruni/+junk/infografica"><tt>https://code.launchpad.net/~alessandro-bruni/+junk/infografica</tt></a></p>
<p>That&#8217;s all for now folks! Make a nice game <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hoheinzollern.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hoheinzollern.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hoheinzollern.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hoheinzollern.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hoheinzollern.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hoheinzollern.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hoheinzollern.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hoheinzollern.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hoheinzollern.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hoheinzollern.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hoheinzollern.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hoheinzollern.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hoheinzollern.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hoheinzollern.wordpress.com/231/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=231&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hoheinzollern.wordpress.com/2009/06/25/computer-graphics-project-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d5547c94cd22312ad54eb3125b814ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hoheinzollern</media:title>
		</media:content>

		<media:content url="http://hoheinzollern.files.wordpress.com/2009/06/game.png?w=300" medium="image">
			<media:title type="html">The game</media:title>
		</media:content>
	</item>
		<item>
		<title>Macarena macarena macarena</title>
		<link>http://hoheinzollern.wordpress.com/2009/05/17/macarena-macarena-macarena/</link>
		<comments>http://hoheinzollern.wordpress.com/2009/05/17/macarena-macarena-macarena/#comments</comments>
		<pubDate>Sun, 17 May 2009 19:48:38 +0000</pubDate>
		<dc:creator>Alessandro Bruni</dc:creator>
				<category><![CDATA[Foto]]></category>

		<guid isPermaLink="false">http://hoheinzollern.wordpress.com/?p=226</guid>
		<description><![CDATA[o o o o o &#60;o &#60;o&#62; o&#62; o .&#124;. \&#124;. \&#124;/ // X \ &#124; &#60;&#124; &#60;&#124;&#62; /\ &#62;\ /&#60; &#62;\ /&#60; &#62;\ /&#60; &#62;\ /&#60; Eeeh.. macarena! o.O Ok, ora parliamo di foto e teatro! Come i miei lettori patavini non sapranno ho recitato a Maserada Trappola per Topi, di Agatha Christie. Prima [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=226&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>   o      o     o    o     o    &lt;o     &lt;o&gt;    o&gt;    o
  .|.    \|.   \|/   //    X     \      |    &lt;|    &lt;|&gt;
   /\     &gt;\   /&lt;    &gt;\   /&lt;     &gt;\    /&lt;     &gt;\   /&lt;</pre>
<p><span id="more-226"></span>Eeeh.. <a href="http://it.wikipedia.org/wiki/Macarena">macarena!</a></p>
<p>o.O</p>
<p>Ok, ora parliamo di foto e teatro! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Come i miei lettori patavini non sapranno ho recitato a Maserada <a href="http://nugae.dyndns.org/opere/trappola-topi/">Trappola per Topi, di Agatha Christie</a>. Prima di tutto vi faccio vedere <a href="http://www.flickr.com/photos/29866141@N05/sets/72157617988836606/show/">le foto di questa prima</a>, in modo che vi pregustiate e vi teniate liberi per la prossima data, a Scorzè ad inizio Luglio!</p>
<p>Non appena ci sarà una data vi farò sapere. Incrociamo le dita! (eeh, c&#8217;è <a href="http://nonciclopedia.wikia.com/wiki/Crisi_economica">crisi</a>!)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hoheinzollern.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hoheinzollern.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hoheinzollern.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hoheinzollern.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hoheinzollern.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hoheinzollern.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hoheinzollern.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hoheinzollern.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hoheinzollern.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hoheinzollern.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hoheinzollern.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hoheinzollern.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hoheinzollern.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hoheinzollern.wordpress.com/226/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=226&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hoheinzollern.wordpress.com/2009/05/17/macarena-macarena-macarena/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d5547c94cd22312ad54eb3125b814ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hoheinzollern</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting B&amp;W</title>
		<link>http://hoheinzollern.wordpress.com/2009/04/09/gettin-bw/</link>
		<comments>http://hoheinzollern.wordpress.com/2009/04/09/gettin-bw/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 20:11:06 +0000</pubDate>
		<dc:creator>Alessandro Bruni</dc:creator>
				<category><![CDATA[Foto]]></category>

		<guid isPermaLink="false">http://hoheinzollern.wordpress.com/?p=212</guid>
		<description><![CDATA[Come non tutti immagino sappiate è un po&#8217; di tempo che ho riscoperto &#8211; grazie Tom &#8211; la cara vecchia ma fedelissima fotografia chimica in Black&#38;White! Oggi ho preso il primo pacco di 10 rullini (5 sono per me) per fare le prossime prove! Appena arrivano i primi risultati vi farò avere qualche scansione! L&#8217;ultima [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=212&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_213" class="wp-caption alignleft" style="width: 172px"><a href="http://hoheinzollern.files.wordpress.com/2009/04/hp52.jpeg"><img class="size-medium wp-image-213" title="Ilford HP5 10-pack" src="http://hoheinzollern.files.wordpress.com/2009/04/hp52.jpeg?w=162&#038;h=300" alt="360 goduriossissimi scatti" width="162" height="300" /></a><p class="wp-caption-text">360 goduriossissimi scatti</p></div>
<p>Come non tutti immagino sappiate è un po&#8217; di tempo che ho riscoperto &#8211; grazie <a href="http://picasaweb.google.it/tomaz86/EnsignFulVue#">Tom</a> <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  &#8211; la cara vecchia ma fedelissima fotografia chimica in Black&amp;White!</p>
<p>Oggi ho preso il primo pacco di 10 rullini (5 sono per me) per fare le prossime prove! Appena arrivano i primi risultati vi farò avere qualche scansione! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<div class="wp-caption alignright" style="width: 170px"><img title="Durst M301 - ingranditore" src="http://www.studiogamma.be/a_vendre/agrandisseur.jpg" alt="Durst M301" width="160" height="120" /><p class="wp-caption-text">Durst M301</p></div>
<p>L&#8217;ultima cosa che non vi ho detto è che ce le svilupperemo da soli, usando il caro vecchio ingranditore, acidi pinze e bacinelle in camera oscura! Speriamo bene!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hoheinzollern.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hoheinzollern.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hoheinzollern.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hoheinzollern.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hoheinzollern.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hoheinzollern.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hoheinzollern.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hoheinzollern.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hoheinzollern.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hoheinzollern.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hoheinzollern.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hoheinzollern.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hoheinzollern.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hoheinzollern.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=212&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hoheinzollern.wordpress.com/2009/04/09/gettin-bw/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d5547c94cd22312ad54eb3125b814ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hoheinzollern</media:title>
		</media:content>

		<media:content url="http://hoheinzollern.files.wordpress.com/2009/04/hp52.jpeg?w=162" medium="image">
			<media:title type="html">Ilford HP5 10-pack</media:title>
		</media:content>

		<media:content url="http://www.studiogamma.be/a_vendre/agrandisseur.jpg" medium="image">
			<media:title type="html">Durst M301 - ingranditore</media:title>
		</media:content>
	</item>
		<item>
		<title>The thrill is gone</title>
		<link>http://hoheinzollern.wordpress.com/2009/04/03/the-thrill-is-gone/</link>
		<comments>http://hoheinzollern.wordpress.com/2009/04/03/the-thrill-is-gone/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 19:58:48 +0000</pubDate>
		<dc:creator>Alessandro Bruni</dc:creator>
				<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://hoheinzollern.wordpress.com/?p=202</guid>
		<description><![CDATA[Proprio come dice il grande B.B. King! Gli esami sono passati, la mia proposta a B.B. Google l&#8217;ho fatta, e ora&#8230; Se io sono Alice e tu sei Bob come&#8230; Ok basta, è ora di tornar tutti i soliti: Finito questo piccolo sproloquio, voglio ringraziare pubblicamente tutti i ragazzi di τεχnOS per lo straordinario lavoro [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=202&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Proprio come dice il grande B.B. King! Gli esami sono passati, <a href="http://socghop.appspot.com/document/show/user/hoheinzollern/digikam_face_rec">la mia proposta a B.B. Google</a> l&#8217;ho fatta, e ora&#8230;</p>
<p>Se io sono Alice e tu sei Bob come&#8230; Ok basta, è ora di tornar tutti i soliti:</p>
<div id="attachment_203" class="wp-caption aligncenter" style="width: 347px"><a href="http://hoheinzollern.files.wordpress.com/2009/04/gatto_con_gli_stivali.jpg"><img class="size-full wp-image-203" title="Programmatori con gli stivali" src="http://hoheinzollern.files.wordpress.com/2009/04/gatto_con_gli_stivali.jpg?w=500" alt="Programmatori con gli stivali"   /></a><p class="wp-caption-text">Programmatori con gli stivali</p></div>
<p><span id="more-202"></span></p>
<p>Finito questo piccolo sproloquio, voglio ringraziare pubblicamente tutti i ragazzi di <span class="l"><a href="https://launchpad.net/automaticexplorer">τεχnOS</a> per lo straordinario lavoro di gruppo di IS, <a href="http://nugae.dyndns.org/~admin/cafe/">Café Group</a> per la grande soddisfazione che ci ha dato il nostro lavoro e tutti quelli che mi hanno votato in facoltà perchè ora sono il vostro rappresentante formale! <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </span></p>
<p><span class="l">In bocca al lupo a tutti per il prossimo trimestre di fuoco, intanto godiamoci questi piccoli momenti di pausa, credo proprio che ci serviranno!</span></p>
<p><span class="l">P.s.: la mia presenza in facoltà ha già avuto i suoi effetti positivi, se va tutto bene a breve potrei farvi un annuncio moolto interessante! I Palazzi della Torre potrebbero essere contenti e soddisfatti..</span></p>
<p><span class="l">Ok. Claudio questo discorso, buonanotte a tutti!<br />
</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hoheinzollern.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hoheinzollern.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hoheinzollern.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hoheinzollern.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hoheinzollern.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hoheinzollern.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hoheinzollern.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hoheinzollern.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hoheinzollern.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hoheinzollern.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hoheinzollern.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hoheinzollern.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hoheinzollern.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hoheinzollern.wordpress.com/202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hoheinzollern.wordpress.com&amp;blog=3609928&amp;post=202&amp;subd=hoheinzollern&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hoheinzollern.wordpress.com/2009/04/03/the-thrill-is-gone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d5547c94cd22312ad54eb3125b814ac?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">hoheinzollern</media:title>
		</media:content>

		<media:content url="http://hoheinzollern.files.wordpress.com/2009/04/gatto_con_gli_stivali.jpg" medium="image">
			<media:title type="html">Programmatori con gli stivali</media:title>
		</media:content>
	</item>
	</channel>
</rss>
