<?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>diederickdevries.net &#187; privacy</title>
	<atom:link href="http://www.diederickdevries.net/blog/tag/privacy/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.diederickdevries.net/blog</link>
	<description>Of penguins and coffee (mostly).</description>
	<lastBuildDate>Fri, 03 Feb 2012 17:08:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Diaspora on Arch</title>
		<link>http://www.diederickdevries.net/blog/2010/09/16/diaspora-on-arch/</link>
		<comments>http://www.diederickdevries.net/blog/2010/09/16/diaspora-on-arch/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 14:13:43 +0000</pubDate>
		<dc:creator>diederick</dc:creator>
				<category><![CDATA[cool stuff]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[lifestyle]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://www.diederickdevries.net/blog/?p=330</guid>
		<description><![CDATA[I have some kind of a love/hate relationship with Facebook. I like being up to speed on what people I know or once knew are up to and the network site allows to me to conveniently stay in contact with people without any effort on my part. That said, Facebook has a questionable reputation where [...]]]></description>
			<content:encoded><![CDATA[<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.diederickdevries.net%2Fblog%2F2010%2F09%2F16%2Fdiaspora-on-arch%2F&amp;title=Diaspora%20on%20Arch" id="wpa2a_2"><img src="http://www.diederickdevries.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>I have some kind of a love/hate relationship with <a href="http://www.facebook.com/">Facebook</a>. I like being up to speed on what people I know or once knew are up to and the network site allows to me to conveniently stay in contact with people without any effort on my part. That said, Facebook has a questionable <a href="http://arstechnica.com/web/news/2010/07/students-finally-wake-up-to-facebook-privacy-issues.ars">reputation</a> where it comes to privacy and for Facebook to be useful to you, you have to post private stuff, like your birthday, relationship status, holiday pictures, who your friends are or what&#8217;s on your mind. Some people go even further, by posting more explicit pictures or revealing their moment-to-moment location, but I don&#8217;t do that. Sure, you can lock your account to people not in your network, but Facebook has an interest in me sharing as much as I can, so how can I trust them?</p>
<p>Enter <a href="http://www.joindiaspora.com/">Diaspora</a>. From Wikipedia:</p>
<blockquote><p>Diaspora (also Diaspora*) is an open-source personal web server software intended to provide a distributed social networking service, a decentralized alternative to Facebook. The initial developer release was on the 15th September 2010 and a consumer alpha is planned for October 2010.</p>
<p>The project&#8217;s intent is to provide the ability to have &#8220;the little games, the little walls, the little chat&#8221; that a Facebook user&#8217;s experience currently provides, but instead hosted on users&#8217; personal web servers (called &#8220;seeds&#8221;) so that users can &#8220;fully control the information they share.&#8221;</p></blockquote>
<p>September 15th was yesterday, so I decided to try it out. The website tells you <a href="http://github.com/diaspora/diaspora">how to build</a> it on Ubuntu, Fedora or MacOS, so I adapted the instructions for my favorite OS, <a href="http://www.archlinux.org/">Arch</a>:</p>
<p>These steps expect two things:</p>
<ul>
<li> AUR to be setup. See <a href="http://wiki.archlinux.org/index.php/Arch_User_Repository">http://wiki.archlinux.org/index.php/Arch_User_Repository</a> on how to do that.</li>
<li>You don&#8217;t have ruby 1.9 installed. Diaspora has ruby gems working only in ruby 1.8</li>
</ul>
<p>Install dependencies using pacman:</p>
<p><code># sudo pacman -S openssl imagemagick git libffi libxslt</code></p>
<p>There could be dependencies that I didn&#8217;t notice because I had them already installed, but these are noted on the website. Then, install ruby 1.8, ruby-gems and bundler:</p>
<p><code># wget http://aur.archlinux.org/packages/ruby1.8/ruby1.8.tar.gz<br />
# tar xzvf ruby1.8.tar.gz<br />
# cd ruby1.8<br />
# makepkg -s (installed tk, tcl)<br />
# sudo pacman -U ruby1.8-1.8.7_p302-1-i686.pkg.tar.xz<br />
</code></p>
<p><code><br />
# wget http://aur.archlinux.org/packages/rubygems1.8/rubygems1.8.tar.gz<br />
# tar xzvf rubygems1.8.tar.gz<br />
# cd rubygems1.8<br />
# makepkg -s<br />
# sudo pacman -U rubygems1.8-1.3.7-1-i686.pkg.tar.xz<br />
</code></p>
<p><code><br />
# sudo gem-1.8 install bundler<br />
# PATH=$PATH:/opt/ruby1.8/bin/<br />
</code></p>
<p>Install mongodb:<br />
<code><br />
# wget http://aur.archlinux.org/packages/mongodb/mongodb.tar.gz<br />
# tar xzvf mongodb.tar.gz<br />
# cd mongodb<br />
# makepkg -s (also installed spidermonkey, scons, boost, sconsboost-lib, nspr; took a long time).<br />
# sudo pacman -U mongodb-1.6.2-1-i686.pkg.tar.xz<br />
</code></p>
<p>Clone and build Diaspora:<br />
<code><br />
# git clone http://github.com/diaspora/diaspora.git<br />
# cd diaspora<br />
# bundle install (will fetch source index and ask for your password)<br />
</code></p>
<p>And finally, run Diaspora:</p>
<p><code># sudo /etc/rc.d/mongodb start<br />
# rake db:seed:tom<br />
# bundle exec thin start<br />
</code></p>
<p>Now direct your browser to <a href="http://localhost:3000/">http://localhost:3000/</a>, then login with user tom and password evankorth. More information can be found <a href="http://github.com/diaspora/diaspora">here</a>.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.diederickdevries.net/blog/2010/09/16/diaspora-on-arch/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Let&#8217;s give away some more civil rights</title>
		<link>http://www.diederickdevries.net/blog/2009/12/30/lets-give-away-some-more-civil-rights/</link>
		<comments>http://www.diederickdevries.net/blog/2009/12/30/lets-give-away-some-more-civil-rights/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 22:03:08 +0000</pubDate>
		<dc:creator>diederick</dc:creator>
				<category><![CDATA[politics]]></category>
		<category><![CDATA[#nw253]]></category>
		<category><![CDATA[civil rights]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[shock doctrine]]></category>

		<guid isPermaLink="false">http://www.diederickdevries.net/blog/?p=225</guid>
		<description><![CDATA[On Christmas Day, a young misguided Nigerian named Umar Farouk Abdulmutallab tried to cause an explosion on flight NW253 from Amsterdam to Detroit. He brought with him 80 grams of pentaerythritol tetranitrate, a useful amount for his purposes, but insufficient knowledge on how to use it. There was only one way he could have caused [...]]]></description>
			<content:encoded><![CDATA[<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.diederickdevries.net%2Fblog%2F2009%2F12%2F30%2Flets-give-away-some-more-civil-rights%2F&amp;title=Let%26%238217%3Bs%20give%20away%20some%20more%20civil%20rights" id="wpa2a_4"><img src="http://www.diederickdevries.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>On Christmas Day, a young misguided Nigerian named Umar Farouk Abdulmutallab tried to cause an explosion on flight NW253 from Amsterdam to Detroit. He brought with him 80 grams of <a href="http://en.wikipedia.org/wiki/Pentaerythritol_tetranitrate">pentaerythritol tetranitrate</a>, a useful amount for his purposes, but insufficient knowledge on how to use it. There was only one way he could have caused serious damage to the plane, which involved putting it in a box and banging it against the wall. The way he did it, there was <a href="http://translate.googleusercontent.com/translate_c?hl=nl&amp;ie=UTF-8&amp;sl=nl&amp;tl=en&amp;u=http://www.nrc.nl/buitenland/article2446397.ece/Had_de_aanslag_op_vlucht_NW253_kans_van_slagen&amp;prev=_t&amp;rurl=translate.google.nl&amp;twu=1&amp;usg=ALkJrhhvw6J0yDFZMb_gCUW8j0S75rzE0g">never any danger</a> (Google translation from Dutch to English).</p>
<p>Since the incident, travellers on flights to the U.S. and on U.S. internal flights have had to endure heightened security measures and the minister of justice in the <a href="http://translate.googleusercontent.com/translate_c?hl=nl&amp;ie=UTF-8&amp;sl=nl&amp;tl=en&amp;u=http://www.nrc.nl/binnenland/article2447680.ece/Hirsch_Ballin_wil_body_scan_invoeren&amp;prev=_t&amp;rurl=translate.google.nl&amp;twu=1&amp;usg=ALkJrhgoZ-38BhzfaBaZFCzNmJhGuGbSRw">Netherlands</a> is using this incident as a means to force the E.U.&#8217;s plans of using  full body scanners at air ports. Body scanners are devices that pierce through one&#8217;s clothing to see what he or she is carrying, greatly compromising the privacy of countless people, who are, let&#8217;s not forget <em>still innocent</em>. With these devices, the pentaerythritol tetranitrate on Abdulmutallab would have been found.</p>
<p>Abdulmutallab&#8217;s father had been <a href="http://www.sfgate.com/cgi-bin/blogs/abraham/detail??blogid=95&amp;entry_id=54161">warning</a> U.S. authorities that his son was growing more radical for some time, but the man was ignored. Not because of policy, but because someone didn&#8217;t pay attention. Had these warnings been taken seriously, Abdulmutallab&#8217;s name would have been placed on a no-fly list, and he would never have gotten on board flight NW253, or any other flight toward the U.S. No body scan needed.</p>
<p>We give up irresponsible amounts or our civil rights into the hands of those we put in charge of our safety, because they deem it necessary, and when they screw up, the solution is to give up more privacy? Why not just fire the ones who were sleeping and tell the rest to actually use the power we gave them?</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">
<h1>NW253</h1>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.diederickdevries.net/blog/2009/12/30/lets-give-away-some-more-civil-rights/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

