<?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>dark cave</title>
	<atom:link href="http://dark.asengard.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://dark.asengard.net/blog</link>
	<description>where the light fades and the shadow creeps in</description>
	<lastBuildDate>Fri, 03 Feb 2012 00:25:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19643</generator>
		<item>
		<title>Housekeeping</title>
		<link>http://dark.asengard.net/blog/2012/02/03/housekeeping/</link>
		<comments>http://dark.asengard.net/blog/2012/02/03/housekeeping/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 00:24:04 +0000</pubDate>
		<dc:creator>dark</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Free (as in freedom) thoughts]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://dark.asengard.net/blog/?p=1521</guid>
		<description><![CDATA[cp /usr/share/zoneinfo/America/Los_Angeles /etc/localtime # ... because there is no /usr/share/zoneinfo/America/San_Francisco /etc/init.d/ntp-client restart Ready.]]></description>
			<content:encoded><![CDATA[<pre>cp /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
# ... because there is no /usr/share/zoneinfo/America/San_Francisco
/etc/init.d/ntp-client restart</pre>
<p><strong>Ready.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://dark.asengard.net/blog/2012/02/03/housekeeping/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My standing about 3D movies</title>
		<link>http://dark.asengard.net/blog/2011/12/25/my-standing-about-3d-movies/</link>
		<comments>http://dark.asengard.net/blog/2011/12/25/my-standing-about-3d-movies/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 14:36:39 +0000</pubDate>
		<dc:creator>dark</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Free (as in freedom) thoughts]]></category>

		<guid isPermaLink="false">http://dark.asengard.net/blog/?p=1508</guid>
		<description><![CDATA[http://theoatmeal.com/blog/3d_movies Nothing more to say, actually.]]></description>
			<content:encoded><![CDATA[<p><a href=" http://theoatmeal.com/blog/3d_movies">http://theoatmeal.com/blog/3d_movies</a></p>
<p>Nothing more to say, actually.</p>
]]></content:encoded>
			<wfw:commentRss>http://dark.asengard.net/blog/2011/12/25/my-standing-about-3d-movies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yet another GIT branching guide</title>
		<link>http://dark.asengard.net/blog/2011/09/09/yet-another-git-branching-guide/</link>
		<comments>http://dark.asengard.net/blog/2011/09/09/yet-another-git-branching-guide/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 15:53:54 +0000</pubDate>
		<dc:creator>dark</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[branch]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://dark.asengard.net/blog/?p=1466</guid>
		<description><![CDATA[If you always work on the master branch, git pull and git push commands are just what you need. If instead you need to work on a branch, something more need to be said. First, some explanations. GIT uses branches just like SVN: a branch is a different path of developement There is no implicit [...]]]></description>
			<content:encoded><![CDATA[<p>If you always work on the <strong>master</strong> branch, <code>git pull</code> and <code>git push</code> commands are just what you need. If instead you need to work on a branch, something more need to be said. First, some explanations.</p>
<ul>
<li>GIT uses branches just like SVN: a <strong>branch</strong> is a different path of developement</li>
<li>There is no implicit &#8220;primary&#8221; branch (SVN has instead the &#8220;trunk&#8221;); that said, the main branch is often called <strong>master</strong> (GIT will give this name to the main branch when creating an empty repository).</li>
<li>Branches can be either <strong>local</strong> or <strong>remote</strong>:
<ul>
<li>A <strong>local</strong> branch is a branch that exist on the local repository only; you can see a list of local branches using <code>git branch</code>.</li>
<li>A <strong>remote</strong> branch is instead a branch that exists on a remote repository, therefore visible to anyone that has access to it. Use <code>git branch -r</code> to see all the remote branches known to you. Remote branches have generally a name in the form <code>origin/$branchname</code>, because <strong>origin</strong> is the default alias that is given locally to the remote repository.</li>
</ul>
</li>
</ul>
<p>Now, before creating a branch, you may want to ask yourself some questions:</p>
<ul>
<li>Do I want to propose some changes to the world, or instead do I just want to try out some things?</li>
<li>Do I need to follow another guy&#8217;s branch, or am I working alone on the subproject?</li>
</ul>
<p>If you need to work in team, you need to create a branch on the remote repository (if someone else did not already) and then setup a local branch to &#8220;link&#8221; to it (GIT calls this <strong>tracking</strong>); otherwise, you just need a local branch.</p>
<p>Let&#8217;s start from the easy part: how to create a local branch.</p>
<h2>Local branches</h2>
<p>Suppose that I am following the <strong>master</strong> branch, but I want to try the <strong>foorazor</strong> approach to the problem. I create a &#8220;topic&#8221; branch just for that:</p>
<pre>git branch foorazor
git checkout foorazor
# or, in a single command:
git checkout -b foorazor</pre>
<p>Now I start working on it, making commits and whatever. If, some time later, I see that the foorazor approach is wrong, I just delete that branch:</p>
<pre>git checkout master   # to switch to that branch
git branch -d foorazor    # delete the wrong branch
# If the branch content was not merged (and this is perfectly fine sometimes), GIT complains with:
# error: The branch 'foorazor' is not fully merged.
# If you are sure you want to delete it, run 'git branch -D foorazor'.
git branch -D foorazor   # so, just force its deletion</pre>
<p>If, instead, the foorazor approach turns out to be useful, I merge it back in the master branch:</p>
<pre>git checkout master
git merge foorazor   # you may need to manually merge some things here, if there are conflicts
# edit the files with conflicts, git-add them when ready and git-commit to resolve the merge
git branch -d foorazor   # delete the now unneeded branch, if no development is needed anymore on that topic</pre>
<p>Note that no <code>git push</code> was ever made: we never informed the central repository of our local branch. If, of course, I have completed the work on foorazor and I have merged it, now the code exists also on the master branch, so the next <code>git push</code> will transfer those commits to the central repository.</p>
<h2>Working with a remote branch</h2>
<p>Let&#8217;s take branches to the next level. Someone asked me to work on his <strong>awesome</strong> branch to fix some bugs. I have already fetched the whole repository with <code>git clone</code>, so the remote branch is already known to me:</p>
<pre>$ git branch -r
  origin/awesome
  origin/master</pre>
<p>Since I know that there is nothing awesome in fixing bugs committed by other people, I decide to track the <strong>awesome</strong> remote branch with a descriptive local name: <strong>(there is no need to have different remote and local names, I do it to point out the namespace differences)</strong></p>
<pre>git checkout --track -b boring_work origin/awesome</pre>
<p>Now I work on the local branch <strong>boring_work</strong> as always. I fetch my friend&#8217;s changes with <code>git pull</code> and do commits locally; when I want to give him back my changes, I type:</p>
<pre>git push origin boring_work:awesome</pre>
<p>This command pushes the changes from the local <strong>boring_work</strong> on the remote branch <strong>awesome</strong> on the repository <strong>origin</strong>: note that you can use just <code>git push origin awesome</code> if you used the same name locally <strong>(and probably you should do so if you are not an advanced user)</strong>.</p>
<p><strong>NOTE FOR ADVANCED USERS:</strong> by default, if no remote branch name is given on the command line (remember that the syntax is <code>git push ${reponame} ${local}:${remote}</code>), GIT pushes to a remote branch with the same name of the local one. So, even if <strong>boring_work</strong> tracks <strong>origin/awesome</strong>, <code>git push origin boring_work</code> will create another branch called <strong>boring_work</strong> on the remote repo. This happens because the configuration option <code>push.default</code> has a default value of <strong>matching</strong> (see <code>man git-config</code>). Solutions?</p>
<ul>
<li>Either use a local name that is the same of the remote one (<code>git checkout --track -b awesome origin/awesome</code>);</li>
<li>or, if you want more freedom, configure the local repo with <code>git config push.default upstream</code>, that says GIT to push the current branch to its upstream branch, not the one with the same name.</li>
</ul>
<p><strong>&#8212; NORMAL USERS, RESUME READING HERE &#8212;</strong></p>
<p>When I&#8217;m done helping my friend, I just type</p>
<pre>git checkout master
git branch -d boring_work</pre>
<p>and forget about the past.</p>
<h2>How to create and delete a remote branch</h2>
<p>What if I want to create a brand new branch on the remote repository?</p>
<p>This command creates a branch called <strong>new_branch</strong>, as a copy of the remote&#8217;s <strong>master</strong> <em>(actually, as a copy of the remote&#8217;s HEAD, but, if nobody messes up the remote repo by actively running commands inside it, the result is the same)</em>:</p>
<pre>git push origin origin:refs/heads/new_branch</pre>
<p>Now you can fetch it locally as explained above.</p>
<p>If instead you want to duplicate a remote branch, use:</p>
<pre>git push origin origin/old_branch:refs/heads/new_branch</pre>
<p>Note that <strong>none of the previous command sets up a local branch</strong>.</p>
<p>To delete a remote branch, just use:</p>
<pre>git push origin :remote_branch</pre>
<p>that can be remembered easily as &#8220;using remote repo <strong>origin</strong>, push <strong>&#8220;empty&#8221;</strong> to <strong>remote_branch</strong>&#8220;. <em>The deletion command does not need the &#8220;refs/heads&#8221; prefix because the branch name is already known remotely and therefore can be looked for in the standard places.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://dark.asengard.net/blog/2011/09/09/yet-another-git-branching-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SVN to GIT repository migration</title>
		<link>http://dark.asengard.net/blog/2011/07/28/svn-to-git-repository-migration/</link>
		<comments>http://dark.asengard.net/blog/2011/07/28/svn-to-git-repository-migration/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 14:18:29 +0000</pubDate>
		<dc:creator>dark</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://dark.asengard.net/blog/?p=1464</guid>
		<description><![CDATA[Last week we at NetGroup decided that it was time to move our SVN repositories to GIT. While I always use svn-git to interface with Subversion, a server-side move was long awaited. Here follows a step-to-step migration history, loosely based on this article, that I found as the most useful resource on the Web among [...]]]></description>
			<content:encoded><![CDATA[<p>Last week we at <a href="http://netgroup.polito.it/">NetGroup</a> decided that it was time to move our SVN repositories to GIT. While I always use <a href="http://www.kernel.org/pub/software/scm/git/docs/git-svn.html">svn-git</a> to interface with Subversion, a server-side move was long awaited.</p>
<p>Here follows a step-to-step migration history, loosely based on <a href="http://blokspeed.net/blog/2010/09/converting-from-subversion-to-git/">this article</a>, that I found as the most useful resource on the Web among those suggested by Google. I publish the code here to help you migrate as well <img src='http://dark.asengard.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h3><u>Preparation</u></h3>
<p>First of all, I listed all the active SVN authors in the repository. From an updated SVN working copy, I created an <code>authors.4git</code> file:</p>
<pre>svn log --xml | grep author | sort -u | sed 's:.*>\(.*\)<.*:\1 = :' > authors.4git</pre>
<p>I filled the output file with actual username information, using the following syntax:</p>
<pre>username = Name Surname &lt;mail.address@example.com&gt;
username2 = Name2 Surname2 &lt;mail.address2@example.com&gt;
(no author) = no author &lt;(no author)&gt;</pre>
<p>The last line is important for those commits that lacked an author (from a even older CVS2SVN migration).</p>
<h3><u>Fetch and convert branches and tags</u></h3>
<p>I started to fetch the SVN repo using git-svn:</p>
<pre>git svn clone ssh://path/to/old/repo/ --authors-file=authors.4git -s svn2git_tmpdir
cd svn2git_tmpdir</pre>
<p>Some sources suggest to use <code>--no-metadata</code> when cloning, but I wanted to preserve SVN commit information in the GIT log: you&#8217;ll see later why.</p>
<p>Then I converted SVN tags to actual GIT tags:</p>
<pre>for t in `git branch -r | grep 'tags/' | sed s_tags/__` ; do
	git tag $t tags/$t^
	git branch -d -r tags/$t
done</pre>
<p>I removed most of the leftovers from git-svn:</p>
<pre>git branch -d -r trunk
git config --remove-section svn-remote.svn
rm -rf .git/svn .git/{logs/,}refs/remotes/svn/</pre>
<p>In the end, I converted the SVN branches, that git-svn created as remote GIT branches, into actual GIT local branches:</p>
<pre>git config remote.origin.url .
git config --add remote.origin.fetch +refs/remotes/*:refs/heads/*
git fetch</pre>
<h3><u>Additional tweaks: history and commit messages rewriting</u></h3>
<p>Since the migration is a one-time effort, before completion I wanted to fix some longstanding issues in our repo.</p>
<p>The first one was the removal of some useless commits: a couple of times someone managed to commit loads of useless files, forcing someone else to revert that commit. So, I found the SHA identifier of the oldest of those commits and launched <em>(note the tilde sign at the end)</em>:</p>
<pre>git rebase -i ${OLDESTBADCOMMIT}~</pre>
<p>GIT fired up my <a href="http://www.gnu.org/software/emacs/">$EDITOR</a> and I removed all the useless commits (both the adding and the reverting ones), by deleting the appropriate lines in the configuration file.<br />
The history rewriting was successful. I had to type a couple of times:</p>
<pre>git reset
git rebase --continue</pre>
<p>because some commits became empty ones and I wanted to discard them. The <code>git rebase</code> had to be run on all the branches that included those useless commits (hint: use <code>git branch --contains ${BADCOMMIT}</code>).</p>
<p>The second problem was the preservation of the SVN metadata inside the GIT commit logs. This was needed because some SVN commit messages referenced other SVN revision numbers, so I wanted to keep those references intact. On the other hand, the previous <code>git rebase</code> had mangled the GIT-committer property of the rewritten commits, by setting me as the committer, even if the author property was left intact (you can see the difference on an actual GIT repository using <code>git log --format=fuller</code>). Both issues can be solved with one command:</p>
<pre>git filter-branch -d /tmp/tmpfs/gitrewrite \
	--msg-filter 'sed "/git-svn-id:/s;^.*/\([^/]*\)@\([0-9]*\).*$;Autoconverted from SVN (revision:\2, branch:\1);"' \
	--env-filter 'export GIT_COMMITTER_NAME="${GIT_AUTHOR_NAME}"; export GIT_COMMITTER_EMAIL="${GIT_AUTHOR_EMAIL}"; export GIT_COMMITTER_DATE="${GIT_AUTHOR_DATE}";' \
	-- --all</pre>
<p>The <code>-d</code> switch ran the operation (that is said to be I/O intensive) on a <em>tmpfs</em> mount. You can skip it if the history is short enough, or if you don&#8217;t care about it.<br />
The first filter edited the <code>git-svn-id</code> lines into a prettier format; the second one restored the GIT-committer properties that I had lost previously.<br />
In the end, <code>--all</code> runs those filters on all the branches.</p>
<h3><u>Push to the new repo</u></h3>
<p>Before pushing to the new repo, I let GIT collect the garbage by pruning unreferenced objects:</p>
<pre>git gc --aggressive --prune=now</pre>
<p>And, finally, I completed the migration by pushing everything on a bare, empty repository that I had already set up:</p>
<pre>git push --all ssh://path/to/new/repo.git
git push --tags ssh://path/to/new/repo.git</pre>
<p>To complete the operations, I removed the temporary directory and refetched everything, just to be sure:</p>
<pre>cd ..
rm -rf svn2git_tmpdir
git clone ssh://path/to/new/repo.git local_repo_dir</pre>
<p>And voila, now you&#8217;re using GIT <img src='http://dark.asengard.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://dark.asengard.net/blog/2011/07/28/svn-to-git-repository-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The truth about Naples</title>
		<link>http://dark.asengard.net/blog/2011/06/06/the-truth-about-naples/</link>
		<comments>http://dark.asengard.net/blog/2011/06/06/the-truth-about-naples/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 21:28:18 +0000</pubDate>
		<dc:creator>dark</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Free (as in freedom) thoughts]]></category>
		<category><![CDATA[Naples]]></category>

		<guid isPermaLink="false">http://dark.asengard.net/blog/?p=1443</guid>
		<description><![CDATA[I love Naples. Everyone loves Naples. I like watching Naples. Watching Naples can be a social event, unless you&#8217;re in a couple. And even in that case you might have a chance to enjoy it. It&#8217;s good to be in Naples. Usually. It&#8217;s possible to go around for Naples. You can talk about Naples in [...]]]></description>
			<content:encoded><![CDATA[<p>I love Naples.<br />
Everyone loves Naples.<br />
I like watching Naples.<br />
Watching Naples can be a social event, unless you&#8217;re in a couple. And even in that case you might have a chance to enjoy it.<br />
It&#8217;s good to be in Naples. Usually.<br />
It&#8217;s possible to go around for Naples.<br />
You can talk about Naples in the comments of this message.</p>
]]></content:encoded>
			<wfw:commentRss>http://dark.asengard.net/blog/2011/06/06/the-truth-about-naples/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I quesiti referendari del 12 e 13 giugno 2011</title>
		<link>http://dark.asengard.net/blog/2011/06/03/i-quesiti-referendari-del-12-e-13-giugno-2011/</link>
		<comments>http://dark.asengard.net/blog/2011/06/03/i-quesiti-referendari-del-12-e-13-giugno-2011/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 13:02:49 +0000</pubDate>
		<dc:creator>dark</dc:creator>
				<category><![CDATA[Italian]]></category>
		<category><![CDATA[Italy-wide news]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[giugno]]></category>
		<category><![CDATA[referendum]]></category>

		<guid isPermaLink="false">http://dark.asengard.net/blog/?p=1404</guid>
		<description><![CDATA[Visto che non se ne parla molto in TV, un breve riassunto dei quattro quesiti referendari su cui gli italiani saranno chiamati ad esprimersi i prossimi 12 e 13 giugno 2011. Scheda rossa: abrogazione dell&#8217;affidamento a privati del servizio idrico Vota SI chi vuole che il servizio idrico non sia gestito da privati Vota NO [...]]]></description>
			<content:encoded><![CDATA[<p>Visto che non se ne parla molto in TV, un breve riassunto dei quattro quesiti referendari su cui gli italiani saranno chiamati ad esprimersi i prossimi <strong>12 e 13 giugno 2011</strong>.</p>
<ol>
<li>Scheda <strong>rossa</strong>: <em>abrogazione dell&#8217;affidamento a privati del servizio idrico</em>
<ul>
<li>Vota <strong>SI</strong> chi vuole che il servizio idrico <strong>non sia gestito da privati</strong></li>
<li>Vota <strong>NO</strong> chi <strong>non è interessato a limitare</strong> questo affidamento</li>
</ul>
</li>
<li>Scheda <strong>gialla</strong>: <em>abrogazione delle &#8220;logiche di mercato&#8221; nel settore del servizio idrico privato</em>
<ul>
<li>Vota <strong>SI</strong> chi vuole che il servizio idrico privato <strong>non sia autorizzato a trarre del profitto aumentando le tariffe dell&#8217;acqua</strong>: le tariffe dovrebbero essere calcolate solo per permettere alle imprese private il recupero dei costi</li>
<li>Vota <strong>NO</strong> chi lascerebbe alle imprese private <strong>il diritto di guadagnare e fare profitto aumentando le tariffe oltre il solo recupero dei costi</strong></li>
</ul>
</li>
<li>Scheda <strong>grigia</strong>: <em>abrogazione del nucleare in Italia</em>
<ul>
<li>Vota <strong>SI</strong> chi vuole che in Italia <strong>non si costruiscano centrali nucleari</strong></li>
<li>Vota <strong>NO</strong> chi <strong>non è contro la costruzione di tali centrali</strong> sul territorio italiano</li>
</ul>
</li>
<li>Scheda <strong>verde chiaro</strong>: <em>abrogazione della legge sul legittimo impedimento</em>
<ul>
<li>Vota <strong>SI</strong> chi vuole <strong>rimuovere</strong> la possibilità che il Presidente del Consiglio ed i Ministri della Repubblica hanno di <strong>non presentarsi in tribunale nei processi a loro carico</strong></li>
<li>Vota <strong>NO</strong> chi sostiene che il Presidente del Consiglio ed i Ministri della Repubblica <strong>possano non presentarsi in tribunale nei processi a loro carico</strong></li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://dark.asengard.net/blog/2011/06/03/i-quesiti-referendari-del-12-e-13-giugno-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fighting tivoization with the GPLv3</title>
		<link>http://dark.asengard.net/blog/2011/05/24/fighting-tivoization-with-the-gplv3/</link>
		<comments>http://dark.asengard.net/blog/2011/05/24/fighting-tivoization-with-the-gplv3/#comments</comments>
		<pubDate>Tue, 24 May 2011 18:19:45 +0000</pubDate>
		<dc:creator>dark</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Free (as in freedom) thoughts]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[gpl3]]></category>
		<category><![CDATA[gplv3]]></category>
		<category><![CDATA[OSS]]></category>
		<category><![CDATA[tivo]]></category>
		<category><![CDATA[tivoization]]></category>

		<guid isPermaLink="false">http://dark.asengard.net/blog/?p=1437</guid>
		<description><![CDATA[This is the second presentation that I will give next Thursday: the topic is the infamous tivoization.]]></description>
			<content:encoded><![CDATA[<p><a href="http://dark.asengard.net/mirror/tivo.pdf"><img src="http://dark.asengard.net/images/blog/tivo.png" alt="Presentation title" /></a></p>
<p>This is the <a href="http://dark.asengard.net/mirror/tivo.pdf">second presentation</a> that I will give next Thursday: the topic is the infamous <em><a href="http://en.wikipedia.org/wiki/Tivoization">tivoization</a></em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dark.asengard.net/blog/2011/05/24/fighting-tivoization-with-the-gplv3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patent Trolls against the Open Source Software</title>
		<link>http://dark.asengard.net/blog/2011/05/23/patent-trolls-against-the-open-source-software/</link>
		<comments>http://dark.asengard.net/blog/2011/05/23/patent-trolls-against-the-open-source-software/#comments</comments>
		<pubDate>Mon, 23 May 2011 17:33:55 +0000</pubDate>
		<dc:creator>dark</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Free (as in freedom) thoughts]]></category>
		<category><![CDATA[draft]]></category>
		<category><![CDATA[OSS]]></category>
		<category><![CDATA[patent]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[troll]]></category>

		<guid isPermaLink="false">http://dark.asengard.net/blog/?p=1428</guid>
		<description><![CDATA[Next Thursday, I will give a speech about a couple of OSS-related topics. This presentation is about the first one: the relationship between patent trolls and Open Source Software.]]></description>
			<content:encoded><![CDATA[<p><a href="http://dark.asengard.net/mirror/patent-trolls.pdf"><img src="http://dark.asengard.net/images/blog/patent-trolls.png" alt="Presentation title" /></a></p>
<p>Next Thursday, I will give a speech about a couple of OSS-related topics. <a href="http://dark.asengard.net/mirror/patent-trolls.pdf">This presentation</a> is about the first one: the relationship between <em>patent trolls</em> and <em>Open Source Software</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dark.asengard.net/blog/2011/05/23/patent-trolls-against-the-open-source-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>L&#8217;inversione della paura</title>
		<link>http://dark.asengard.net/blog/2011/05/21/linversione-della-paura/</link>
		<comments>http://dark.asengard.net/blog/2011/05/21/linversione-della-paura/#comments</comments>
		<pubDate>Sat, 21 May 2011 22:51:17 +0000</pubDate>
		<dc:creator>dark</dc:creator>
				<category><![CDATA[Italian]]></category>
		<category><![CDATA[Politically (in)correct]]></category>
		<category><![CDATA[gay]]></category>
		<category><![CDATA[paura]]></category>
		<category><![CDATA[pride]]></category>
		<category><![CDATA[torino]]></category>

		<guid isPermaLink="false">http://dark.asengard.net/blog/?p=1412</guid>
		<description><![CDATA[Mi sono chiesto a lungo se intitolare questo post &#8220;La paura dell&#8217;inversione&#8221; o &#8220;L&#8217;inversione della paura&#8221;. Entrambi descrivono la sfilata del Torino Pride di oggi, pur da aspetti diversi. Banalmente, &#8220;La paura dell&#8217;inversione&#8221; è quella che caratterizza parte delle persone autodefinitesi &#8220;normali&#8221; quando si confrontano con il movimento gay. Un ventaglio di emozioni, il cui [...]]]></description>
			<content:encoded><![CDATA[<p>Mi sono chiesto a lungo se intitolare questo post <strong>&#8220;La paura dell&#8217;inversione&#8221;</strong> o <strong>&#8220;L&#8217;inversione della paura&#8221;</strong>. Entrambi descrivono la sfilata del <strong><a href="http://www.torinopride.it/">Torino Pride</a></strong> di oggi, pur da aspetti diversi.</p>
<ul>
<li>Banalmente, <strong>&#8220;La paura dell&#8217;inversione&#8221;</strong> è quella che caratterizza parte delle persone autodefinitesi &#8220;normali&#8221; quando si confrontano con il movimento gay. Un ventaglio di emozioni, il cui semiasse negativo varia dal timore del diverso alla sua repulsione in quanto contaminante.</li>
<li>Più interessante è <strong>&#8220;L&#8217;inversione della paura&#8221;</strong>, titolo che ho scelto perché mi trasmette un messaggio di speranza.</li>
</ul>
<p>Inizierò da lontano.</p>
<p>Prima della sfilata di oggi, molti conoscenti non gay con cui ho discusso del Pride hanno espresso un guidizio sostanzialmente negativo, riassumibile in: <em>&#8220;se i gay vogliono chiedere uguaglianza di diritti, una sfilata di Carnevale non è il migliore dei modi&#8221;</em>. In altre parole, secondo molti, gli eccessi della sfilata rischierebbero di alienare i giudizi degli indecisi.<br />
Beh, se per &#8220;eccesso&#8221; si intende questo qui sotto, bene, qualche eccesso oggi c&#8217;è stato.</p>
<p><img src="http://dark.asengard.net/images/blog/torino-pride.jpg" alt="Torino Pride" /></p>
<p>Ma il Pride non è solo questo. Ieri <em>(20 maggio)</em> sera ho avuto una conversazione, breve ma illuminante, con un gruppo di gay dichiarati. Uno di questi ha descritto con particolare profondità la sensazione di isolamento e di paura che un giovane con tendenze gay, magari ancora acerbe, vive al contatto con il mondo. Sia che venga riconosciuto e apostrofato come <em>&#8220;frocio di merda&#8221;</em>, sia che scelga di reprimersi e viaggiare sottocoperta, la <strong>paura</strong> è una delle emozioni più comuni. Paura del guidizio altrui, paura delle reazioni dei cari, paura di subire fisicamente e psicologicamente le conseguenze di un&#8217;insieme di scelte non comuni.<br />
Dunque, il Pride agirebbe come <strong>invertitore della paura</strong>, come manifestazione di un&#8217;amore diverso, come cassa di risonanza per raggiungere quelli che hanno paura e urlare loro: non siete soli. Per un <em>&#8220;esterno&#8221;</em> come me, il Pride è soprattutto questo.</p>
<p><img src="http://dark.asengard.net/images/blog/torino-pride-end.jpg" alt="Torino Pride" /></p>
<p><em>(tutte le foto sono prese da <a href="http://torino.repubblica.it/cronaca/2011/05/21/foto/in_migliaia_alla_sfilata_per_l_orgoglio_gay-16579695/">Torino Repubblica</a>)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://dark.asengard.net/blog/2011/05/21/linversione-della-paura/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Non per dire che l&#8217;avevo detto, ma&#8230;</title>
		<link>http://dark.asengard.net/blog/2011/05/20/non-per-dire-che-lavevo-detto-ma/</link>
		<comments>http://dark.asengard.net/blog/2011/05/20/non-per-dire-che-lavevo-detto-ma/#comments</comments>
		<pubDate>Fri, 20 May 2011 12:55:10 +0000</pubDate>
		<dc:creator>dark</dc:creator>
				<category><![CDATA[Italian]]></category>
		<category><![CDATA[Politically (in)correct]]></category>

		<guid isPermaLink="false">http://dark.asengard.net/blog/?p=1395</guid>
		<description><![CDATA[Il 1° ottobre 2010 Belpietro non scampò ad un tentativo di attentato. Perlomeno, questo ha accertato la magistratura. Comunisti. Fonte: http://milano.repubblica.it/cronaca/2011/04/12/news/attentato_a_belpietro_la_procura_non_ci_fu-14841079/]]></description>
			<content:encoded><![CDATA[<p>Il <em>1° ottobre 2010</em> Belpietro <strong>non</strong> scampò ad un tentativo di <a href="http://dark.asengard.net/blog/2010/10/03/belpietro-e-il-plausibile-diversivo/">attentato</a>. Perlomeno, questo ha accertato la magistratura. Comunisti.</p>
<p><strong>Fonte:</strong> <a href="http://milano.repubblica.it/cronaca/2011/04/12/news/attentato_a_belpietro_la_procura_non_ci_fu-14841079/">http://milano.repubblica.it/cronaca/2011/04/12/news/attentato_a_belpietro_la_procura_non_ci_fu-14841079/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dark.asengard.net/blog/2011/05/20/non-per-dire-che-lavevo-detto-ma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

