<?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>autoverse: a life automaton</title>
	<atom:link href="http://autoverse.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://autoverse.net</link>
	<description></description>
	<lastBuildDate>Thu, 08 Jul 2010 09:11:11 +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>gimp gets single window mode (and it needs your help)</title>
		<link>http://autoverse.net/2010/07/08/gimp-gets-single-window-mode-and-it-needs-your-help/</link>
		<comments>http://autoverse.net/2010/07/08/gimp-gets-single-window-mode-and-it-needs-your-help/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 09:11:11 +0000</pubDate>
		<dc:creator>comzeradd</dc:creator>
				<category><![CDATA[libre]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[fedora]]></category>

		<guid isPermaLink="false">http://autoverse.net/?p=495</guid>
		<description><![CDATA[We are waiting for the new stable release (2.8) of Gimp by the end of the year. But until then Gimp released the 2.7.1 development snapshot. You can read the release notes for more. For the impatient and for those want to test it, look at koji: http://koji.fedoraproject.org/koji/taskinfo?taskID=2297201 Click on your architecture and download the [...]]]></description>
			<content:encoded><![CDATA[<p>We are waiting for the new stable release (2.8) of <a href="http://www.gimp.org/" target="_blank">Gimp</a> by the end of the year. But until then Gimp released the 2.7.1 development snapshot. You can read the <a href="http://www.gimp.org/release-notes/gimp-2.7.html" target="_blank">release notes</a> for more.</p>
<p>For the impatient and for those want to test it, look at koji:<br />
<a href="http://koji.fedoraproject.org/koji/taskinfo?taskID=2297201" target="_blank">http://koji.fedoraproject.org/koji/taskinfo?taskID=2297201</a></p>
<p>Click on your architecture and download the rpms at the bottom of the page.</p>
<p>You can then install them:</p>
<p><code>rpm -ivh gimp-2.7.1-1.fc13.x86_64.rpm gimp-libs-2.7.1-1.fc13.x86_64.rpm gimp-<br />
gimp-2.7.1-1.fc13.x86_64.rpm</code></p>
<p>or if you have already gimp installed on you system, update:</p>
<p><code>rpm -Uvh gimp-2.7.1-1.fc13.x86_64.rpm gimp-libs-2.7.1-1.fc13.x86_64.rpm  gimp-<br />
gimp-2.7.1-1.fc13.x86_64.rpm</code></p>
<p>You can also install the debug/devel packages if you&#8217;re up to it.</p>
<p>One of the most awaited features is the Single Window mode. So that was one more reason for me to install the development snapshot:</p>
<p><a href="http://autoverse.net/wp-content/uploads/2010/07/berlin.jpg"><img class="alignnone size-medium wp-image-496" title="berlin" src="http://autoverse.net/wp-content/uploads/2010/07/berlin-300x223.jpg" alt="" width="300" height="223" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://autoverse.net/2010/07/08/gimp-gets-single-window-mode-and-it-needs-your-help/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>speed up firefox (reloaded)</title>
		<link>http://autoverse.net/2010/06/23/speed-up-firefox-reloaded/</link>
		<comments>http://autoverse.net/2010/06/23/speed-up-firefox-reloaded/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 11:30:06 +0000</pubDate>
		<dc:creator>comzeradd</dc:creator>
				<category><![CDATA[libre]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[hack]]></category>

		<guid isPermaLink="false">http://autoverse.net/?p=477</guid>
		<description><![CDATA[I&#8217;ve posted before about this little hack on speeding up firefox. The key is that you actually move the entire .mozilla folder from disk to memory. First you have to mount /tmp to memory (some linux distributions may do this by default) adding this line to /etc/fstab and rebooting: none /tmp tmpfs size=512M,nr_inodes=200k,mode=01777 0 0 [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve posted before about<a href="http://autoverse.net/2009/04/23/speed-firefox/" target="_blank"> this little hack on speeding up firefox</a>. The key is that you actually <strong>move the entire .mozilla folder from disk to memory</strong>.</p>
<p>First you have to mount /tmp to memory (some linux distributions may do this by default) adding this line to /etc/fstab and rebooting:<br />
<code><br />
none    /tmp    tmpfs    size=512M,nr_inodes=200k,mode=01777    0 0<br />
</code></p>
<p>Then it&#8217;s safe to do:<br />
<code><br />
cp -R /home/user/.mozilla /home/user/.mozilla_save<br />
mv /home/user/.mozilla /tmp/mozilla<br />
ln -s /tmp/mozilla /home/user/.mozilla<br />
</code></p>
<p>I updated the script so I can use it as a system init script:<br />
<code>
<pre>
#!/bin/bash

start() {
    mkdir -p /tmp/mozilla
    rsync -avi --delete /home/user/.mozilla_save/ /home/user/.mozilla/
}

stop() {
    size=`du -xs /home/user/.mozilla/ | awk '{print $1}'`
    digits=`expr length $size`
    if [ $digits -gt 4 ]; then
        rsync -avi --delete /home/user/.mozilla/ /home/user/.mozilla_save/
    else
        echo 'no!'
        exit 0
    fi
}

case "$1" in
start)
     start
     ;;
stop)
     stop
     ;;
*)
     echo $"Usage: $0 {start|stop}"
     exit 1;;
esac
</pre>
<p></code></p>
<p>So I placed this script at /etc/init.d/, made it executable and created a link inside /etc/rc.5/<br />
<code><br />
ln -s /etc/init.d/ffsync.sh /etc/rc5.d/S99ffsync<br />
</code></p>
<p>rc5 because the default runlevel on Fedora is 5. You can see yours from /etc/inittab.</p>
<p>So every time my system boots the above script runs with the start option (executing the start function) and every time it halts/reboots it runs with the stop option (stop function).</p>
<p>In order to be sure that no data loss will occur in the unlikely event of sudden shutdown, I have a cronjob that saves the mozilla folder every 15 minutes.<br />
<code><br />
*/15 * * * * /etc/init.d/ffsync.sh stop<br />
</code></p>
<p>Trust me. With the above hack you&#8217;ll see <strong>a significant difference on firefox&#8217;s speed</strong>. Especially if you&#8217;re you using <a href="http://blog.mozilla.com/blog/2008/04/21/a-little-something-awesome-about-firefox-3/" target="_blank">firefox&#8217;s awesome address bar</a> to search through your browser&#8217;s history.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoverse.net/2010/06/23/speed-up-firefox-reloaded/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Open-Source liability: paradigm shift</title>
		<link>http://autoverse.net/2010/06/11/open-source-liability-paradigm-shift/</link>
		<comments>http://autoverse.net/2010/06/11/open-source-liability-paradigm-shift/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 14:47:43 +0000</pubDate>
		<dc:creator>comzeradd</dc:creator>
				<category><![CDATA[libre]]></category>
		<category><![CDATA[openness]]></category>
		<category><![CDATA[osepa]]></category>

		<guid isPermaLink="false">http://autoverse.net/?p=461</guid>
		<description><![CDATA[Just return from beautiful Stuttgart where I participated on Osepa&#8216;s Steering Group Meeting and Study Visit. I gave a presentation about &#8220;Open Source License issues, Liability &#38; Software Public Procurement Policies&#8221;. You can download it here (although I think the slides are a little abstract to understand without the speech). Liability seems to be a [...]]]></description>
			<content:encoded><![CDATA[<p>Just return from <a href="http://www.flickr.com/photos/comzeradd/sets/72157624250824950/" target="_blank">beautiful Stuttgart</a> where I participated on <a href="http://www.3049.syzefxis.gov.gr/peta_2006_06/index.php?option=com_content&amp;task=view&amp;id=182&amp;Itemid=41" target="_blank">Osepa</a>&#8216;s Steering Group Meeting and Study Visit. I gave a presentation about &#8220;Open Source License issues, Liability &amp; Software Public Procurement Policies&#8221;. You can download it <a href="http://autoverse.net/wp-content/uploads/pub/presentations/roussos_osepa-liense_liability_procurement_(2010).pdf">here</a> (although I think the slides are a little abstract to understand without the speech).</p>
<p>Liability seems to be a very critical issue when it comes to Public Sector. <strong>People want someone to blame if something goes wrong</strong> and that&#8217;s a justified demand (at least on a certain degree). So the slide below started a really nice conversation among the participants:</p>
<p><a href="http://autoverse.net/wp-content/uploads/2010/06/stuttgart2.jpg"><img class="alignnone size-medium wp-image-463" title="stuttgart osepa" src="http://autoverse.net/wp-content/uploads/2010/06/stuttgart2-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>The quick answer is No indeed! Take a look at GPL (and you can find a similar disclaimer on every FSF or OSI approved licenses:</p>
<blockquote><p><strong>16. Limitation of Liability.</strong><br />
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR  CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING  ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS  OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR  THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY  OF SUCH DAMAGES.</p></blockquote>
<p>The reason for this is that an Open-Source project is potentially developed by the whole world, or a little more realistic from a large community. So the above disclaimer is a way to protect the community from legal obligations. Otherwise a user could blame every contributor of a project on a failure incident (eg. data loss). This is short of <strong>a legal protection for the community</strong>.</p>
<p>This may seem quite reasonable, at least to Open-Source developers, but it&#8217;s not to Public Sector managers, politicians and decision makers in general. As I already mention they want someone to blame. Well my next slide clarified some things:</p>
<p><a href="http://autoverse.net/wp-content/uploads/2010/06/stuttgart1.jpg"><img class="alignnone size-medium wp-image-462" title="stuttgart osepa" src="http://autoverse.net/wp-content/uploads/2010/06/stuttgart1-300x223.jpg" alt="" width="300" height="223" /></a></p>
<p>What I mean by &#8220;Liability depends on support contract&#8221; is that the vendor (the support contract owner) has now the legal responsibility. He is the one who guarantees that the software solution he&#8217;ll deploy and support is reliable.</p>
<p>Many things have been written about the Open-Source <strong>paradigm shift</strong> on business model, moving from Software as a Product to Software as a Service logic. Well here is yet another paradigm shift. Software Liability is not upon copyright/left holder or developers, but the Vendor that supports and deploys it. In other words <strong>the legal obligations are moving from the product developers to the service provider</strong>.</p>
<p>As we would expect the &#8220;service&#8221; is again the keyword. Now the hard part is to convince the politicians about that :)</p>
<p>PS. What &#8220;Liability depends on users modifications&#8221; means is that if the user (eg. municipality employees) alter the software (it&#8217;s open-source after all) it&#8217;s difficult, if not impossible, to have legal demands against the vendor. This is something that we have to keep in mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoverse.net/2010/06/11/open-source-liability-paradigm-shift/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>israeli raid on gaza flotilla</title>
		<link>http://autoverse.net/2010/05/31/israeli-raid-on-gaza-flotilla/</link>
		<comments>http://autoverse.net/2010/05/31/israeli-raid-on-gaza-flotilla/#comments</comments>
		<pubDate>Mon, 31 May 2010 10:39:46 +0000</pubDate>
		<dc:creator>comzeradd</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://autoverse.net/?p=458</guid>
		<description><![CDATA[Read here the video of the attack on a Turkish ship Vaggelis Pissas (member of Greek ship-to-gaza crew) report: Israel demands we surrender. We don&#8217;t! We are sailing on international waters! We are waiting instructions from Greek government whether or not we have to surrender a ship with Greek flag to Israel! This is our [...]]]></description>
			<content:encoded><![CDATA[<p>Read <a href="http://news.bbc.co.uk/2/hi/middle_east/10196585.stm" target="_blank">here</a></p>
<p>the video of the attack on a Turkish ship<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/MtPSAof8MDw&amp;hl=en_US&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/MtPSAof8MDw&amp;hl=en_US&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Vaggelis Pissas (member of Greek ship-to-gaza crew) report:</p>
<blockquote><p>Israel demands we surrender. We don&#8217;t! We are sailing on international waters! We are waiting instructions from Greek government whether or not we have to surrender a ship with Greek flag to Israel! This is our position, we are waiting instructions from Greek government! They opened fire..</p></blockquote>
<p>Today in Greece there are protests on many cities. In Athens this protest will take place outside the Israeli embassy.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoverse.net/2010/05/31/israeli-raid-on-gaza-flotilla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>weekend at milano</title>
		<link>http://autoverse.net/2010/05/26/weekend-at-milano/</link>
		<comments>http://autoverse.net/2010/05/26/weekend-at-milano/#comments</comments>
		<pubDate>Wed, 26 May 2010 09:16:42 +0000</pubDate>
		<dc:creator>comzeradd</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[travel photo]]></category>

		<guid isPermaLink="false">http://autoverse.net/?p=453</guid>
		<description><![CDATA[passing by galleria by night stairways to heaven san siro (meazza) the full milano photo set]]></description>
			<content:encoded><![CDATA[<p><a title="passing by by comzeradd, on Flickr" href="http://www.flickr.com/photos/comzeradd/4636375000/"><img src="http://farm5.static.flickr.com/4071/4636375000_6f6a1700b4.jpg" alt="passing by" width="500" height="334" /></a><br />
<strong> passing by</strong></p>
<p><a title="galleria by night by comzeradd, on Flickr" href="http://www.flickr.com/photos/comzeradd/4635745232/"><img src="http://farm4.static.flickr.com/3384/4635745232_693a9118f6.jpg" alt="galleria by night" width="500" height="334" /></a><br />
<strong> galleria by night</strong></p>
<p><a title="stairways to heaven by comzeradd, on Flickr" href="http://www.flickr.com/photos/comzeradd/4638671016/"><img src="http://farm5.static.flickr.com/4047/4638671016_d05d6c553f.jpg" alt="stairways to heaven" width="500" height="334" /></a><br />
<strong> stairways to heaven</strong></p>
<p><a title="san siro (meazza) by comzeradd, on Flickr" href="http://www.flickr.com/photos/comzeradd/4638064249/"><img src="http://farm4.static.flickr.com/3410/4638064249_4eda6e22f4.jpg" alt="san siro (meazza)" width="500" height="312" /></a><br />
<strong> san siro (meazza)</strong></p>
<h2>the full <a href="http://www.flickr.com/photos/comzeradd/sets/72157624126291976/" target="_blank">milano photo set</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://autoverse.net/2010/05/26/weekend-at-milano/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Παραμύθια</title>
		<link>http://autoverse.net/2010/05/12/%cf%80%ce%b1%cf%81%ce%b1%ce%bc%cf%8d%ce%b8%ce%b9%ce%b1/</link>
		<comments>http://autoverse.net/2010/05/12/%cf%80%ce%b1%cf%81%ce%b1%ce%bc%cf%8d%ce%b8%ce%b9%ce%b1/#comments</comments>
		<pubDate>Wed, 12 May 2010 17:14:22 +0000</pubDate>
		<dc:creator>comzeradd</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[democracy]]></category>
		<category><![CDATA[quoting]]></category>

		<guid isPermaLink="false">http://autoverse.net/?p=449</guid>
		<description><![CDATA[&#8220;Παραμύθια&#8221;;&#8230; Α λοιπόν θα σας πω κι ένα παραμύθι να ξεκουραστείτε! Μια φορά κι ένα καιρό οι κλέφτες της πρώτης πολιτείας του κόσμου, αφού πλουτίσανε αρκετά, αποφασίσανε να ταχτοποιήσουνε τη ζωή τους. Μπλοκάρανε το λοιπόν τους φτωχούς της πολιτείας κι αφού τους μαζώξανε στην πλατεία τους είπανε: &#8220;Ψηλά τα χέρια! Θέλουμε το καλό σας. Δεν [...]]]></description>
			<content:encoded><![CDATA[<p><a title="just a break by comzeradd, on Flickr" href="http://www.flickr.com/photos/comzeradd/4583853426/"><img src="http://farm5.static.flickr.com/4019/4583853426_6e87ddbc7c.jpg" alt="just a break" width="500" height="334" /></a></p>
<p>&#8220;Παραμύθια&#8221;;&#8230; Α λοιπόν θα σας πω κι ένα παραμύθι να ξεκουραστείτε! Μια φορά κι ένα καιρό οι κλέφτες της πρώτης πολιτείας του κόσμου, αφού πλουτίσανε αρκετά, αποφασίσανε να ταχτοποιήσουνε τη ζωή τους. Μπλοκάρανε το λοιπόν τους φτωχούς της πολιτείας κι αφού τους μαζώξανε στην πλατεία τους είπανε: &#8220;Ψηλά τα χέρια! Θέλουμε το καλό σας. Δεν θα σας πάρουμε τα φτυάρια, τους κασμάδες, τα σκεπάρνια, τα δισάκια και τα ζεμπίλια σας με το ψωμοτύρι, τα τρύπια σας πουκάμισα με τις ψείρες και τις απάτωτες καλύβες σας, που κάνουνε νερά, σαν βρέχει. Είσαστε ελεύθεροι! &#8211; (ψηλά τα χέρια!). Ελεύθεροι να ζείτε κατά το κέφι σας, να κερδίζετε, να κάνετε κομπόδεμα, να μεθάτε, να χορεύεται, να γεννοβολάτε και να πεθαίνετε. Εμείς θα σας μαθαίνουμε τις&#8230; αλήθειες! Θα σας δώσουμε πλούσια φαντασία κι αισθαντική καρδιά, θα σας δώσουμε κι αθάνατη ψυχή. Κι όποιος από σας γουστάρει, θα μπορεί να γράφει ποιήματα, να σκαρώνει θεωρίες και να δοξάζεται! Ο κυρίαρχος λαός θα &#8216;σαστε εσείς! Εμείς μονάχα θα σας καμαρώνουμε. Θα φροντίζουμε για την ασφάλεια της ζωής, της τιμής και της περιουσίας σας &#8211; μ&#8217; ένα λόγο για την ελευθερίας σας. Σεις θα δουλεύετε, κατά πως θέλετε κι ό,τι θέλετε κι όποτε θέλετε. Εμείς θα σας δίνουμε δουλειά, φτάνει να βρίσκεται, και σεις θα μας δίνετε τα κόπια σας. Και για να μη θαρρέψετε πως σας αδικούμε, θα πλερώνουμε κι εμείς το ίδιο δόσιμο στο Κράτος, &#8211; στον εαυτό μας!</p>
<p>Κι εσείς κι εμείς θα &#8216;χουμε πάνω απ&#8217; τα κεφάλια μας τους ίδιους θεούς, που θα προστάζουν εσάς να δουλεύετε και να μην τρώτε κι εμάς να καθόμαστε και να τρώμε. Κι εμείς κι εσείς θα έχουμε πάνω απ&#8217; τα κεφάλια μας τους ίδιους νόμους, που εμείς θα σας τους δίνουμε κι εσείς θα τους ψηφίζετε σαν βουλευτάδες και θα τους εφαρμόζετε σαν δικαστάδες ενάντια στον εαυτό σας. Και για να μην πλακώνουν απ&#8217; άλλες στεριές και θάλασσες κουρσάροι και κλέφτες ν&#8217; αρπάζουνε το υστέρημα σας και να παίρνουνε σκλάβους κι εσάς και τις γυναίκες σας και τα παιδιά σας, θα σας αρματώνουμε, θα σας γυμνάζουμε, για να μπορείτε να διαφεντεύετε τους θεούς σας, τον εαυτό σας κι εμάς, δηλαδή την πατρίδα. Να σκοτώνεστε σεις και να ζούμε εμείς. Κι επειδή μοναχοί σας δεν θα μπορούσατε να σκεφτείτε το συμφέρον σας και να φυλάξετε τον εαυτό σας, θα σας αναγκάζουμε με το ζόρι (ψηλά τα χέρια!). Ένα πράμα μονάχα σας απαγορεύουμε: να κλέβει ο ένας τον άλλον. Γιατί μπορεί να κλέψετε κι εμάς&#8221;</p>
<p><em>~ Κ. Βάρναλης: &#8220;η αληθινή απολογία του Σωκράτη&#8221;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://autoverse.net/2010/05/12/%cf%80%ce%b1%cf%81%ce%b1%ce%bc%cf%8d%ce%b8%ce%b9%ce%b1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>το τέλος του φαντασιακού της δημοκρατίας</title>
		<link>http://autoverse.net/2010/05/06/%cf%84%ce%bf-%cf%84%ce%ad%ce%bb%ce%bf%cf%82-%cf%84%ce%b7%cf%82-%cf%86%ce%b1%ce%bd%cf%84%ce%b1%cf%83%ce%b9%ce%b1%ce%ba%ce%bf%cf%8d-%cf%84%ce%b7%cf%82-%ce%b4%ce%b7%ce%bc%ce%bf%ce%ba%cf%81%ce%b1%cf%84/</link>
		<comments>http://autoverse.net/2010/05/06/%cf%84%ce%bf-%cf%84%ce%ad%ce%bb%ce%bf%cf%82-%cf%84%ce%b7%cf%82-%cf%86%ce%b1%ce%bd%cf%84%ce%b1%cf%83%ce%b9%ce%b1%ce%ba%ce%bf%cf%8d-%cf%84%ce%b7%cf%82-%ce%b4%ce%b7%ce%bc%ce%bf%ce%ba%cf%81%ce%b1%cf%84/#comments</comments>
		<pubDate>Thu, 06 May 2010 12:07:54 +0000</pubDate>
		<dc:creator>comzeradd</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[democracy]]></category>
		<category><![CDATA[griots]]></category>
		<category><![CDATA[political]]></category>

		<guid isPermaLink="false">http://autoverse.net/?p=436</guid>
		<description><![CDATA[Μάθαμε για τα νέα μέτρα και ανατριχιάσαμε, αλλά κυρίως αυτό που μάθαμε, τουλάχιστον όσοι δεν έχουμε βασίσει την ενημέρωση μας στα media και έχουμε επαφή με την πραγματικότητα, πως η μεγάλη πλειοψηφία της κοινωνίας είναι αντίθετη με αυτά. Υπάρχει άραγε ποιο ξεκάθαρη απόδειξη πως η καραμέλα της δημοκρατίας έχει λιώσει; Είναι σαφές (και όσοι συμμετέχουν [...]]]></description>
			<content:encoded><![CDATA[<p>Μάθαμε για <a href="http://www.in.gr/news/article.asp?lngEntityID=1132263&amp;lngDtrID=251" target="_blank">τα νέα μέτρα</a> και ανατριχιάσαμε, αλλά κυρίως αυτό που μάθαμε, τουλάχιστον όσοι δεν έχουμε βασίσει την ενημέρωση μας στα media και έχουμε επαφή με την πραγματικότητα, πως η μεγάλη πλειοψηφία της κοινωνίας είναι αντίθετη με αυτά.</p>
<p>Υπάρχει άραγε ποιο ξεκάθαρη απόδειξη πως η καραμέλα της δημοκρατίας έχει λιώσει; Είναι σαφές (και όσοι συμμετέχουν στις τελευταίες μαζικές πορείες το χουν κατανοήσει καλύτερα) πως τα μέτρα δεν είναι απλώς αντίθετα με το συμφέρον της κοινωνίας, αλλά αντίθετα και με τη βούληση της. (Άλλωστε η καταστολή που βιώνουμε τόσο έντονα το τελευταίο διάστημα δεν έχει προηγούμενο.)</p>
<p>Αρκετοί προσπαθούν να μας πείσουν πώς τα νέα μέτρα είναι μονόδρομος (και μάλιστα <a href="http://tvxs.gr/news/%CE%B5%CE%BB%CE%BB%CE%AC%CE%B4%CE%B1/%CF%88%CE%B7%CF%86%CE%AF%CF%83%CF%84%CE%B7%CE%BA%CE%B5-%CE%BA%CE%B1%CF%84%CE%AC-%CF%80%CE%BB%CE%B5%CE%B9%CE%BF%CF%88%CE%B7%CF%86%CE%AF%CE%B1-%CF%84%CE%BF-%CE%BD%CF%83-%CE%B3%CE%B9%CE%B1-%CF%84%CE%B1-%CE%BD%CE%AD%CE%B1-%CE%BC%CE%AD%CF%84%CF%81%CE%B1-%CE%B1%CF%8D%CF%81%CE%B9%CE%BF-%CF%83%CF%84%CE%B7%CE%BD-%CE%BF%CE%BB%CE%BF%CE%BC%CE%AD%CE%BB%CE%B5%CE%B9%CE%B1?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+TvxsStoriesRssFeed+%28TVXS+Stories+RSS+Feed%29" target="_blank">με εκβιαστικό τρόπο</a>) και πως δεν υπάρχουν εναλλακτικές προτάσεις είτε γιατί <a href="http://autoverse.net/2010/02/24/greece-under-pressure/" target="_blank">τις αγνοούν</a>, είτε γιατί απλώς έχουν <a href="http://autoverse.net/2010/03/01/%CF%80%CE%BF%CE%BB%CE%B9%CF%84%CE%B9%CE%BA%CE%AD%CF%82-%CF%80%CF%81%CE%BF%CF%84%CE%B5%CF%81%CE%B1%CE%B9%CF%8C%CF%84%CE%B7%CF%84%CE%B5%CF%82/" target="_blank">άλλες προτεραιότητες</a>, αλλά δεν μπορούν να απαντήσουν στο παραπάνω. <strong>Όλα αυτά δεν απαντούν στο _αν_ έχουμε δημοκρατία, αλλά στο _γιατί_ δεν έχουμε.</strong></p>
<p>Ας το πάρουμε απόφαση λοιπόν και ας σταματήσουμε να υποτιμούμε τη νοημοσύνη του κόσμου. Κάποια παπαγαλάκια βέβαια <a href="http://satyroi1987.wordpress.com/2010/04/28/%CE%B5%CF%85%CF%83%CE%B5%CE%B2%CE%B5%CE%AF%CF%82-%CF%80%CF%8C%CE%B8%CE%BF%CE%B9/" target="_blank">το λένε ξεκάθαρα πια</a>, αλλά άλλοι ακόμα προπαγανδίζουν το φαντασιακό της δημοκρατίας. <strong>Ε λοιπόν αυτό πέθανε χτες οριστικά.</strong></p>
<p><a title="technocrat escaping by comzeradd, on Flickr" href="http://www.flickr.com/photos/comzeradd/4583853430/"><img src="http://farm5.static.flickr.com/4026/4583853430_e96a31335c.jpg" alt="technocrat escaping" width="500" height="328" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://autoverse.net/2010/05/06/%cf%84%ce%bf-%cf%84%ce%ad%ce%bb%ce%bf%cf%82-%cf%84%ce%b7%cf%82-%cf%86%ce%b1%ce%bd%cf%84%ce%b1%cf%83%ce%b9%ce%b1%ce%ba%ce%bf%cf%8d-%cf%84%ce%b7%cf%82-%ce%b4%ce%b7%ce%bc%ce%bf%ce%ba%cf%81%ce%b1%cf%84/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>με αφορμή το gamato.info + σύντομος οδηγός επιβίωσης</title>
		<link>http://autoverse.net/2010/03/24/%ce%bc%ce%b5-%ce%b1%cf%86%ce%bf%cf%81%ce%bc%ce%ae-%cf%84%ce%bf-gamato-info-%cf%83%cf%8d%ce%bd%cf%84%ce%bf%ce%bc%ce%bf%cf%82-%ce%bf%ce%b4%ce%b7%ce%b3%cf%8c%cf%82-%ce%b5%cf%80%ce%b9%ce%b2%ce%af%cf%89/</link>
		<comments>http://autoverse.net/2010/03/24/%ce%bc%ce%b5-%ce%b1%cf%86%ce%bf%cf%81%ce%bc%ce%ae-%cf%84%ce%bf-gamato-info-%cf%83%cf%8d%ce%bd%cf%84%ce%bf%ce%bc%ce%bf%cf%82-%ce%bf%ce%b4%ce%b7%ce%b3%cf%8c%cf%82-%ce%b5%cf%80%ce%b9%ce%b2%ce%af%cf%89/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 13:17:50 +0000</pubDate>
		<dc:creator>comzeradd</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[libre]]></category>
		<category><![CDATA[digitalrights]]></category>
		<category><![CDATA[hack]]></category>

		<guid isPermaLink="false">http://blog.autoverse.net/?p=404</guid>
		<description><![CDATA[Μάθαμε όλοι τις εξελίξεις σχετικά με το κλείσιμο του gamato.info, είτε από ειδησιογραφικά sites (ακόμα και διεθνή) είτε από την επίσημη ανακοίνωση της αστυνομίας. Δεν θα σταθώ (προς το παρόν) στο θέμα της πνευματικής ιδιοκτησίας. Είμαι θεμελιακά αντίθετος, αλλά θα αδικήσω το θέμα αν αναπτύξω τη σκέψη μου με αφορμή το κλείσιμο ενός torrent tracker. [...]]]></description>
			<content:encoded><![CDATA[<p>Μάθαμε όλοι τις εξελίξεις σχετικά με το κλείσιμο του gamato.info, είτε <a href="http://www.enet.gr/?i=news.el.article&amp;id=140199" target="_blank">από ειδησιογραφικά sites</a> (ακόμα <a href="http://torrentfreak.com/six-bittorrent-admins-arrested-interpol-chase-two-more-100310/" target="_blank">και διεθνή)</a> είτε από <a href="http://www.astynomia.gr/index.php?option=ozo_content&amp;perform=view&amp;id=3033&amp;Itemid=520&amp;lang=" target="_blank">την επίσημη ανακοίνωση της αστυνομίας</a>.</p>
<p>Δεν θα σταθώ (προς το παρόν) στο θέμα της πνευματικής ιδιοκτησίας. Είμαι θεμελιακά αντίθετος, αλλά θα αδικήσω το θέμα αν αναπτύξω τη σκέψη μου με αφορμή το κλείσιμο ενός torrent tracker. Δεν θα σταθώ ούτε στο γεγονός πως η αστυνομία με την ανακοίνωση της έγραψε στα παλιότερα των υποδημάτων της το τεκμήριο της αθωότητας, ούτε στο γεγονός πως οι τελευταίοι παράγραφοι είναι προφανές πως τις έχουν υπαγορεύσει οι εταιρίες δικαιωμάτων.</p>
<p>Θα σταθω κυρίως στο τι ακριβώς είναι ένας torrent tracker. Θυμίζω πως στην περιβόητη δίκη του pirate bay <a href="http://torrentfreak.com/50-of-charges-against-pirate-bay-dropped-090217/" target="_blank">οι μισές κατηγορίες κατέπεσαν</a> μόλις την δεύτερη μέρα επειδή οι κατήγοροι δεν γνώριζαν πως οι ταινίες, που μοιράζοντας οι χρήστες του συγκερκιμένου torrent tracker, δεν ήταν πάνω στο site αλλά στον δίσκο αυτών των χρηστών. Ένας torrent tracker  παρέχει απλώς ένα αρχείο (.<a href="http://el.wikipedia.org/wiki/Torrent" target="_blank">torrent</a>) το οποίο περιέχει <a href="http://el.wikipedia.org/wiki/%CE%9C%CE%B5%CF%84%CE%B1%CE%B4%CE%B5%CE%B4%CE%BF%CE%BC%CE%AD%CE%BD%CE%B1" target="_blank">μεταδεδομένα</a> που είναι απαραίτητα ώστε να γίνει αυτός ο διαμοιρασμός (πχ. το όνομα του αρχείου/ταινίας). Όποιος χρήστης έχει κατεβάσει αυτό το αρχείο γίνεται μέλος ενός &#8220;δικτύου&#8221; που μοιράζει το αρχείο που περιγράφεται απ&#8217; το .torrent αρχείο.</p>
<p>(Παρένθεση: Οι πιο περίεργοι ας ψάξουν να βρουν πως χρησιμοποιείται και η τεχνολογία <a href="http://en.wikipedia.org/wiki/Distributed_hash_table" target="_blank">DHT</a> στα torrents. Διαδικασία που εξηγήθηκε και στη δίκη του Pirate Bay απ&#8217; τους διαχειριστές του, και που πρακτικά στερεί απ&#8217; τον tracker ακόμα και αυτή την απλή συμμετοχή στον διαμοιρασμό των αρχείων, καθιστώντας την όλη διαδικασία πλήρως αποκεντρωμένη.)</p>
<p>Ο torrent tracker (pirate bay, gamato.info, κλπ) δεν κατέχει λοιπόν παράνομο υλικό, συνεπώς δεν μπορεί να κατηγορηθεί για διακίνηση του. Αυτό για το οποίο θα μπορούσαν να κατηγορηθούν τέτοια sites είναι για παρακινηση και διευκόλυνση των χρηστών τους σε παράνομες δραστηριότητες. Αμφιβάλλω βέβαια κατά πόσο υπάρχει στην Ελλάδα το αντίστοιχο νομικό πλαίσιο για να στηριχθεί μια τέτοια κατηγορία. Ήδη <a href="http://sxoliastesxwrissynora.wordpress.com/2010/03/18/%CF%84%CE%BF-%CE%B9%CF%83%CF%80%CE%B1%CE%BD%CE%B9%CE%BA%CF%8C-gamato-%CE%BA%CE%B1%CE%B9-%CE%B7-p2p-%CE%BF%CE%B9%CE%BA%CE%BF%CE%BD%CE%BF%CE%BC%CE%AF%CE%B1/" target="_blank">διαβάζουμε πως στην Ισπανία είχαμε μια θετική δικαστική απόφαση</a> σχετικά με αυτό το θέμα, που πρακτικά αθοώνει sites τύπου gamato.info με το αιτιολογικό πως πρόκειται για απλούς μεταγωγούς δεδομένων και άρα δεν καταπατούν τους νόμους περί πνευματικής ιδιοκτησίας.</p>
<p>(Παρένθεση: Ειδικά στην υπόθεση του gamato.info έχει ενδιαφέρον να δούμε πως οι αρχές βρήκαν τις διευθύνσεις και λοιπά στοιχεία των διαχειριστών, καθώς τίθεται θέμα παραβίασης <a href="http://el.wikisource.org/wiki/%CE%A3%CF%8D%CE%BD%CF%84%CE%B1%CE%B3%CE%BC%CE%B1_%CF%84%CE%B7%CF%82_%CE%95%CE%BB%CE%BB%CE%AC%CE%B4%CE%B1%CF%82#.CE.86.CF.81.CE.B8.CF.81.CE.BF_19" target="_blank">του απορρήτου των επικοινωνιών</a>.)</p>
<p><span style="text-decoration: underline;">Οδηγός Επιβίωσης</span></p>
<p>Με βάση το δελτίο τύπου της αστυνομίας φαίνεται πως κατασχέθηκαν οι προσωπικοί υπολογιστές των συλληφθέντων. Δύο μικρά tips ώστε να είστε σίγουροι πως ο δίσκος σας δεν θα σας &#8220;προδώσει&#8221;.</p>
<p>1. Καταρχήν χρησιμοποιείστε κρυπτογραφημένο filesystem. Η διαδικασία είναι πάρα πολύ απλή (τουλάχιστον στο Linux) και συνήθως είναι ένα απλό checkbox κατά τη διάρκεια της εγκατάστασης. Για παράδειγμα αναφέρω το <a href="https://fedoraproject.org/" target="_blank">Fedora Linux</a>, που χρησιμοποιώ προσωπικά, στο οποίο ενεργοποιώντας την αντίστοιχη επιλογή στην εγκατάσταση:</p>
<p><a href="http://autoverse.net/wp-content/uploads/2010/03/fedora_encrypt.png"><img class="size-full wp-image-415 alignleft" style="float: none;" title="fedora_encrypt" src="http://autoverse.net/wp-content/uploads/2010/03/fedora_encrypt.png" alt="" width="495" height="371" /></a></p>
<p>Μου ζητάει κατά την εκκίνηση να βάλω το passphrase που έχω επιλέξει:</p>
<p><a href="http://autoverse.net/wp-content/uploads/2010/03/fedora_decrypt.png"><img class="size-full wp-image-416 alignleft" style="float: none;" title="fedora_decrypt" src="http://autoverse.net/wp-content/uploads/2010/03/fedora_decrypt.png" alt="" width="228" height="127" /></a></p>
<p>(Να θυμάστε πως το passphrase δεν είναι password. Το σημαντικό δεν είναι να είναι δύσκολο, αλλά μεγάλο. Χρησιμοποιήστε πχ. έναν στίχο από αγαπημένο σας ποίημα. Όχι haiku :P)</p>
<p>2. Αν θέλετε να εξαφανίσετε ίχνη που έχετε ήδη στον δίσκο σας και να κάνετε μια καθαρή εγκατάσταση, γράψτε καταρχήν σε ένα cdάκι ένα <a href="http://en.wikipedia.org/wiki/Livecd" target="_blank">LiveCD</a>. Μας κάνει και το Fedora Linux, αλλά γιατί κάτι τόσο απλό μας κάνει και κάτι σαν το <a href="http://www.slax.org/" target="_blank">slax</a>. Ξεκίνηστε τον υπολογιστή σας μ&#8217; αυτό και όταν τελειώσει η εκκίνηση ανοίξτε ένα τερματικό και γράψτε την εντολή:</p>
<pre>dd if=/dev/urandom of=/dev/sda</pre>
<p>όπου sda είναι ο 1ο δίσκος, sdb ο 2ος, κοκ. Η παραπάνω διαδικασία γεμίζει με τυχαία δεδομένα τον δίσκο και είνα καλό να προηγηθεί ακόμα και αν κρυπτογραφήσετε τον δίσκο σας. Να είστε όπως προετοιμασμένοι πως θα πάρει αρκετοί ώρα (10-24h) ανάλογα με την χωρητικότητα του δίσκου.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoverse.net/2010/03/24/%ce%bc%ce%b5-%ce%b1%cf%86%ce%bf%cf%81%ce%bc%ce%ae-%cf%84%ce%bf-gamato-info-%cf%83%cf%8d%ce%bd%cf%84%ce%bf%ce%bc%ce%bf%cf%82-%ce%bf%ce%b4%ce%b7%ce%b3%cf%8c%cf%82-%ce%b5%cf%80%ce%b9%ce%b2%ce%af%cf%89/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Running Fedora</title>
		<link>http://autoverse.net/2010/03/12/running-fedora/</link>
		<comments>http://autoverse.net/2010/03/12/running-fedora/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 09:33:40 +0000</pubDate>
		<dc:creator>comzeradd</dc:creator>
				<category><![CDATA[libre]]></category>
		<category><![CDATA[communtiy]]></category>
		<category><![CDATA[fedora]]></category>

		<guid isPermaLink="false">http://blog.autoverse.net/?p=394</guid>
		<description><![CDATA[I always like to test distributions but due to lack of time i rarely do it :) I&#8217;m using Gentoo for quite some time now (and Debian on some machines I administrate), but i wanted a more desktop-oriented distribution, at least for my netbook where Gentoo compile-all philosophy was not the best way to go. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-408" title="fedora" src="http://autoverse.net/wp-content/uploads/2010/03/fedora_graphic.png" alt="" width="495" height="146" /></p>
<p>I always like to test distributions but due to lack of time i rarely do it :) I&#8217;m using <a href="http://www.gentoo.org/" target="_blank">Gentoo</a> for quite some time now (and <a href="http://www.debian.org/" target="_blank">Debian</a> on some machines I administrate), but i wanted a more desktop-oriented distribution, at least for my netbook where Gentoo compile-all philosophy was not the best way to go.</p>
<p>I have to admit that my first thought was Ubuntu. Maybe because I&#8217;m already using an <a href="http://en.wikipedia.org/wiki/Apt-get" target="_blank">apt-get</a> distro and it seemed like the obvious choice.</p>
<p>But who am I kidding? I&#8217;m an active member of Greek FOSS Communtiy, so the existence, and more important the quality and activities, of the community that inevitably grows around a distribution is very important thing to me.</p>
<p>So I was looking for a desktop-oriented distribution with bleeding-edge technologies and vivid community. And the only name that came up to my mind was <a href="https://fedoraproject.org/" target="_blank">Fedora</a>!</p>
<p>I first <a href="https://twitter.com/comzeradd/status/9186810365" target="_blank">installed it on my netbook</a>, where I also had the ability to test Moblin (on Fedora it&#8217;s just a &#8216;yum install @moblin-desktop&#8217; away :)) and I was so pleased by the performance that I have already <a href="https://twitter.com/comzeradd/status/9870283547" target="_blank">Fedorized my Desktop</a>!</p>
<p>Did i said anything about the community? I was impressed by the quality of Fedora community last year on <a href="http://fosdem.org/2010/" target="_blank">Fosdem</a> and <a href="http://twitter.com/comzeradd/status/8718398909" target="_blank">that impression was enhanced this year</a> by Fedora&#8217;s participation on the biggest FOSS European Conference. Besides that, over the last 1-2 years i have met some members of the Greek Fedora Community, the Greek Fedora Ambassadors, and i have to admit that it&#8217;s one of the most active and vivid community in Greece.</p>
<p>Being willing to contribute, as i already do in many ways for FOSS in general with mostly advocating activities, I have already apply for <a href="http://fedoraproject.org/wiki/Ambassadors" target="_blank">Fedora Ambassador</a> and hoping to find the time to be more involved and active inside Fedora ecosystem.</p>
<p>PS. for those wondering, Gentoo (and secondly Debian) will still be my first choice when it comes to Systems Administration, but it was time i move over to a new Desktop Distribution.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoverse.net/2010/03/12/running-fedora/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>νωθρότητα</title>
		<link>http://autoverse.net/2010/03/08/%ce%bd%cf%89%ce%b8%cf%81%cf%8c%cf%84%ce%b7%cf%84%ce%b1/</link>
		<comments>http://autoverse.net/2010/03/08/%ce%bd%cf%89%ce%b8%cf%81%cf%8c%cf%84%ce%b7%cf%84%ce%b1/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 19:15:02 +0000</pubDate>
		<dc:creator>comzeradd</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[quoting]]></category>

		<guid isPermaLink="false">http://blog.autoverse.net/?p=390</guid>
		<description><![CDATA[«Εδώ όλα είναι αποτέλεσμα νωθρότητας, και τα κακά και τα καλά. Όλα σπορρέουν από την αριστοκρατική, χαριτωμένη, μορφωμένη, πεισματάρικη νωθρότητα! Δεν ξέρουμε να ζούμε από το μόχθο μας. Και, πώς μας προέκυψε το ότι ορισμένοι ασχολούνται τώρα με κάποια &#8220;αναδειχθείσα&#8221; κοινή γνώμη, έτσι ξαφνικά; Είναι δυνατόν να μην καταλαβαίνουν ότι για να διαμορφώσεις άποψη χρειάζεται [...]]]></description>
			<content:encoded><![CDATA[<p>«Εδώ όλα είναι αποτέλεσμα νωθρότητας, και τα κακά και τα καλά. Όλα σπορρέουν από την αριστοκρατική, χαριτωμένη, μορφωμένη, πεισματάρικη νωθρότητα! Δεν ξέρουμε να ζούμε από το μόχθο μας. Και, πώς μας προέκυψε το ότι ορισμένοι ασχολούνται τώρα με κάποια &#8220;αναδειχθείσα&#8221; κοινή γνώμη, έτσι ξαφνικά; Είναι δυνατόν να μην καταλαβαίνουν ότι για να διαμορφώσεις άποψη χρειάζεται πριν απ&#8217; όλα να μοχθήσεις, προσωπικά, με ατομική πρωτοβουλία, με ατομική δράση! Χάρισμα τίποτε και ποτέ δεν δίνεται. Αν μοχθήσουμε, άποψη για εμάς θα έχουν μόνο αυτοί που δούλευαν αντί για μας μέχρι τώρα, δηλαδή η Ευρώπη ως συνήθως, οι Γερμανοί ως συνήθως, αυτοί που είναι δάσκαλοι μας, δηλαδή, διακόσια χρόνια τώρα.»</p>
<p><em>~ Φ. Ντοστογιέφσκι, Δαιμονισμένοι</em></p>
]]></content:encoded>
			<wfw:commentRss>http://autoverse.net/2010/03/08/%ce%bd%cf%89%ce%b8%cf%81%cf%8c%cf%84%ce%b7%cf%84%ce%b1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
