<?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>Elis</title>
	<atom:link href="http://blog.elis.nu/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.elis.nu</link>
	<description></description>
	<lastBuildDate>Thu, 12 Jan 2012 19:20:49 +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>XMLHttpRequest&#8230; and headers&#8230; (and TinyBox)</title>
		<link>http://blog.elis.nu/index.php/2012/01/xmlhttprequest-and-headers-and-tinybox/</link>
		<comments>http://blog.elis.nu/index.php/2012/01/xmlhttprequest-and-headers-and-tinybox/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 18:50:08 +0000</pubDate>
		<dc:creator>Etu</dc:creator>
				<category><![CDATA[Mjukvara]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://blog.elis.nu/?p=560</guid>
		<description><![CDATA[Some call it AJAX, some call it XMLHttpRequest and others XHR, AJAX is not the common usecase of AJAX. Most people transfer JSON and not XML, or some other crap, that's up to you as a developer.

Common practice for ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2012%2F01%2Fxmlhttprequest-and-headers-and-tinybox%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2012%2F01%2Fxmlhttprequest-and-headers-and-tinybox%2F&amp;source=ElisAxelsson&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Some call it AJAX, some call it XMLHttpRequest and others XHR, AJAX is not the common usecase of AJAX. Most people transfer JSON and not XML, or some other crap, that&#8217;s up to you as a developer.</p>
<p>Common practice for the two major Javascript frameworks (<a title="jQuery" href="http://jquery.com/">jQuery</a> and <a title="MooTools" href="http://mootools.net/">Mootools</a>) is to send this custom HTTP-Header: <em>X-Requested-With: XMLHttpRequest</em></p>
<p>It does not break the HTTP Protocol nor the website, if the website doesnt care about the header, nothing happens. If the website requires the header to be sent to work and the javascript doesn&#8217;t send it, the website will break.</p>
<p>at work, we have this setup:</p>

<div class="wp_code"><div class="pre"><pre class="php" style="font-family:'Times New Roman',Garamond, Times;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_X_REQUESTED_WITH'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> AND <span style="color: #990000;">strtolower</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_X_REQUESTED_WITH'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">===</span> <span style="color: #0000ff;">'xmlhttprequest'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #666666; font-style: italic;">// Print response of request encoded as json</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
<span style="color: #666666; font-style: italic;">// Print template and push the data to the templatefile to render</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>And then we had an old setup of pages, that was using <a title="TinyBox" href="http://www.scriptiny.com/2009/05/javascript-popup-box/">TinyBox</a>, and got XML sent to it. And since I rebuilt the default template for that system&#8230; and implemented in the templating system to NOT RENDER the menu&#8217;s on AJAX calls&#8230; And I thought&#8230; Well, that&#8217;s it, now it will work everywhere where AJAX is used. I was wrong.</p>
<p>Since it&#8217;s not part of the standard XMLHttpRequest to send this header, it&#8217;s only the common practice, this header isn&#8217;t defined automagicly by the browser. Both jQuery and Mootools does this. <a title="TinyBox" href="http://www.scriptiny.com/2009/05/javascript-popup-box/">TinyBox</a> does not.</p>
<p>I thought most JavaScript developers who built libs and such things was following common practice, at least for libs people heard about. TinyBox is quite known. So I patched TinyBox:</p>
<pre>diff -r 2216c184eed3 tinybox.js
--- a/tinybox.js	Thu Jan 12 17:09:54 2012 +0100
+++ b/tinybox.js	Thu Jan 12 17:11:24 2012 +0100
@@ -30,7 +30,9 @@
 				x.onreadystatechange=function(){
 					if(x.readyState==4&#038;&#038;x.status==200){TINY.box.psh(x.responseText,w,h,a)}
 				};
-				x.open('GET',c,1); x.send(null)
+				x.open('GET',c,1);
+				x.setRequestHeader('X_REQUESTED_WITH', 'XMLHttpRequest');
+				x.send(null)
 			}else{
 				this.psh(c,w,h,a)
 			}</pre>
<p>Now my code works, and all other code on the page. So simple. Please follow common practice&#8230;</p>
 <p><a href="http://blog.elis.nu/?flattrss_redirect&amp;id=560&amp;md5=ab88aae333fe181e7415c42a786cc572" title="Flattr" target="_blank"><img src="http://blog.elis.nu/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.elis.nu/index.php/2012/01/xmlhttprequest-and-headers-and-tinybox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Telenor 4G, Huawei E398 med fri mjukvara</title>
		<link>http://blog.elis.nu/index.php/2011/12/telenor-4g-huawei-e398-med-fri-mjukvara/</link>
		<comments>http://blog.elis.nu/index.php/2011/12/telenor-4g-huawei-e398-med-fri-mjukvara/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 22:38:37 +0000</pubDate>
		<dc:creator>Etu</dc:creator>
				<category><![CDATA[Mjukvara]]></category>
		<category><![CDATA[Piratsaker]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Piratpartiet]]></category>

		<guid isPermaLink="false">http://blog.elis.nu/?p=552</guid>
		<description><![CDATA[Har förflyttat mig ner till Helsingborg, detta resulterade i att jag inte har något fast Internet hemma, så jag införskaffade mig ett 4G från Telenor.

Jag valde Telenor på grund av tre anledningar...

	Modemet visade förhoppningar att köra i Linux
	De har ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F12%2Ftelenor-4g-huawei-e398-med-fri-mjukvara%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F12%2Ftelenor-4g-huawei-e398-med-fri-mjukvara%2F&amp;source=ElisAxelsson&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Har förflyttat mig ner till Helsingborg, detta resulterade i att jag inte har något fast Internet hemma, så jag införskaffade mig ett 4G från Telenor.</p>
<p>Jag valde Telenor på grund av tre anledningar&#8230;</p>
<ol>
<li>Modemet visade förhoppningar att köra i Linux</li>
<li>De har 4G täckning där jag bor med goda marginaler på yta</li>
<li>Telenor är den enda leverantören som säljer abonnemang till privatpersoner <em>&#8220;utan&#8221;</em> begränsning</li>
</ol>
<p>Till en början så identifierar sig modemet som</p>
<p><em>12d1:1505</em>, men med lite <a title="modeswitch" href="http://www.draisberghof.de/usb_modeswitch/bb/viewtopic.php?t=669&amp;sid=c9579fe9d25c8377eb8f572e657b751a">modeswitch</a> på den så kommer den identifiera sig på följande vis:</p>
<pre>Bus 002 Device 004: ID 12d1:1506 Huawei Technologies Co., Ltd.</pre>
<p>Och som den Gentoo användare måste jag sätta upp min kärna för att slå de moduler och drivrutiner jag behöver för all hårdvara, så jag tänkte lista de moduler jag behöver för få igång modemet.</p>
<p>Dessa options använder jag i min linux 3.0.4 kärna:</p>
<pre>Device Drivers ---&gt;
  [*] Network device support ---&gt;
    &lt;*&gt; PPP (point-to-point protocol) support
    &lt;*&gt;   PPP support for async serial ports
  [*] USB support ---&gt;
    &lt;*&gt; USB Serial Converter support ---&gt;
      [*] USB Serial Console device support
      [*] USB Generic Serial Driver
      &lt;*&gt; USB driver for GSM and CDMA modems</pre>
<p>Efter att man modeswitchat enheten och har de kärnmoduler som krävs så skall det dyka upp en enhet som heter <em>/dev/ttyUSB0</em>.</p>
<p>Sedan så behöver du <em>ppp</em>, <em>wvdial</em> samt lite konfiguration.</p>
<p>Wvdial kan generera en helt okej grund till att konfigurera det som krävs för att det ska fungera.</p>
<pre>$ sudo wvdialconf</pre>
<p>Min konfigruation wvdial ser ut såhär: (fil: <em>/etc/wvdial.conf</em>)</p>
<pre>[Dialer Defaults]
;Init = ATZ0
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0
Init3 = AT+CGDCONT=1,"IP","internet.telenor.se","",0,0
Phone = *99#
Modem Type = Analog Modem
Baud = 9600
Modem = /dev/ttyUSB0
ISDN = 0
Username = 4G
Password = 4G
Stupid Mode = 1</pre>
<p>Username och Password verkar inte spela roll, Stupid Mode gjorde så att saker började fungera.</p>
<p>Jag har hitils lyckats nå 2Mb/s stabilt i nerladdning, teoretiskt sett ska jag kunna nå 8Mb/s, vet inte om jag skickar rätt APN eller ej med mina AT kommandon, om det är någon som har tips så får de gärna skriva en kommentar om det. Men så långt fungerar det och det känns som en bra början.</p>
 <p><a href="http://blog.elis.nu/?flattrss_redirect&amp;id=552&amp;md5=adb82850ea02e6273504de870e460fba" title="Flattr" target="_blank"><img src="http://blog.elis.nu/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.elis.nu/index.php/2011/12/telenor-4g-huawei-e398-med-fri-mjukvara/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why Humble Bundle? Why?</title>
		<link>http://blog.elis.nu/index.php/2011/11/why-humble-bundle-why/</link>
		<comments>http://blog.elis.nu/index.php/2011/11/why-humble-bundle-why/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 01:59:39 +0000</pubDate>
		<dc:creator>Etu</dc:creator>
				<category><![CDATA[Mjukvara]]></category>
		<category><![CDATA[EFF]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://blog.elis.nu/?p=544</guid>
		<description><![CDATA[Last year, early May, I found the Humble Bundle idea project thingy, they collected some multi-platform DRM free games and sell them as a bundle for a custom price, depending on what the user wants to pay.

The first bundle ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F11%2Fwhy-humble-bundle-why%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F11%2Fwhy-humble-bundle-why%2F&amp;source=ElisAxelsson&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Last year, early May, I found the Humble Bundle idea project thingy, they collected some multi-platform DRM free games and sell them as a bundle for a custom price, depending on what the user wants to pay.</p>
<p>The first bundle was a great success, when I bought the bundle it contained World of Goo, Aquaria, Gish, Penumbra: Overture, Lugaru. And I payed something above the average when I bought it. I don&#8217;t remember exactly. Some time later I got a surprise, I got one extra game, Samorost 2. And well, that was nice.</p>
<p>In my opinion the Humble Bundle #1 was worth it, I haven&#8217;t even played all games in it. But some of the games was awesome, <strong>and all of the games except one</strong> in the Humble Bundle #1 actually released the code after a while during the time it was active.</p>
<p>In December last year they announced the second Humble Bundle, and I was quick buying it for myself, and even as Christmaspresent as nice thing, with money to charity and some fun games. During the second Bundle, I emailed the maintainers of the project and suggested to have some kind of generator of Christmascards with the URL on, to be easy to give away as present in a nice way. I got &#8220;no, we have too much to do&#8221;-email back. And they suggested me to do it, but well&#8230; Set it up as a third party feels wrong when people should enter their codes to access their bought software, so I didn&#8217;t do anything.</p>
<p>I also liked the second Bundle, it was good, some good games&#8230; and&#8230; well&#8230; it was worth it only to get the music from Osmos&#8230; and Osmos itself&#8230; mmm Osmos&#8230; I was stuck in that for a while.</p>
<p>Then, here is where it started to go wrong, the Humble Frozenbyte Bundle&#8230; Just games from the same developers, and well&#8230; Worse quality than before&#8230; And way to close to the second bundle in timing.</p>
<p>The Humble Bundle #3 was an upgrade from the Frozenbyte one, really&#8230; I liked VVVVVV&#8230; Was stuck in that for a while yeah&#8230;</p>
<p>After the Humble Bundle #3&#8230; I think they shot themselves in the foot, more than once&#8230; They have announced three different Bundles in three months, this is way to often, and they reuse games from old bundles in the original announcements of the Bundle.</p>
<p>WHY ARE YOU DOING THIS?</p>
<p>The Bundles was better when it was a bit more rare occasions, bigger mix of games from different small game-studios, and not reuse of games used in bundles before. And I would prefer if most of the games came with source code available.</p>
<p>I haven&#8217;t even looked at the latest Bundle for real, and I probably won&#8217;t do it&#8230; and If I would&#8230; Humble Bundle would get zero of my donations, everything to EFF.</p>
<p>So, dear Humble Bundle, go back to real good bundles again?</p>
 <p><a href="http://blog.elis.nu/?flattrss_redirect&amp;id=544&amp;md5=319b1a6907cc5918de0735f357f64644" title="Flattr" target="_blank"><img src="http://blog.elis.nu/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.elis.nu/index.php/2011/11/why-humble-bundle-why/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughts about Power Of Adhocracy, #adhocracy</title>
		<link>http://blog.elis.nu/index.php/2011/10/thoughs-about-power-of-adhocracy-adhocracy/</link>
		<comments>http://blog.elis.nu/index.php/2011/10/thoughs-about-power-of-adhocracy-adhocracy/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 23:25:47 +0000</pubDate>
		<dc:creator>Etu</dc:creator>
				<category><![CDATA[Egypt]]></category>
		<category><![CDATA[Mjukvara]]></category>
		<category><![CDATA[Piratsaker]]></category>
		<category><![CDATA[Telecomix]]></category>
		<category><![CDATA[Framtiden]]></category>
		<category><![CDATA[Frihet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Piratpartiet]]></category>

		<guid isPermaLink="false">http://blog.elis.nu/?p=536</guid>
		<description><![CDATA[Date: 2011-10-25
Time: 17:00-22:00

This was my weeks first conference(I'm usually not at conferences every week, but this week was special). I was away from work to be able to work on my talk for the evening, and to be able ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F10%2Fthoughs-about-power-of-adhocracy-adhocracy%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F10%2Fthoughs-about-power-of-adhocracy-adhocracy%2F&amp;source=ElisAxelsson&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Date: 2011-10-25<br />
Time: 17:00-22:00</p>
<p>This was my weeks first conference(I&#8217;m usually not at conferences every week, but this week was special). I was away from work to be able to work on my talk for the evening, and to be able to rest before the talk. Very good choice indeed.</p>
<p>During the day did I manage to meet Lina, a girl from Skåne which a mutual friend introduced me too, and wanted me too meet. And I told her to come to the Power Of Adhocracy Conference in the evening, even thought we knew it was full she joined me on the route there. And when we got close to it we heard that it wasn&#8217;t full anymore, there was plenty of more places, thanks to a Perl meet-up that didn&#8217;t happen. So Lina joined in and spoke with people during the mingling and watched the talks, I think she had a great time, a bit random :)</p>
<p>I presented my talk that evening with the title &#8220;What Is <a href="http://telecomix.org/">Telecomix?</a>&#8221; (you can find links to stuff at the bottom of the post).</p>
<p>Others told me that my talk was good, I don&#8217;t know for myself, I was a bit stressed, I didn&#8217;t have a clue about the time while talking, and the talk was not very well planned with the details&#8230; So I guess It want pretty good after all :)</p>
<p>One good speaker of the evening was <a href="http://twitter.com/ioerror">Jacob Appelbaum</a>, he spoke about surveillance and how our devices such as smartphones can be used for tracking our every move, and secure communication and so on&#8230; It was a good talk, quite depressing, but good. The world needs people like him to refresh our minds that the world is more evil than we want to most of the time. I think most of the participants already knew, but&#8230; mind refreshing is good. And he is a good speaker.</p>
<p>And there was another interesting talk about a free Internet non profit organization in Sweden, called <a href="http://dfri.se/">DFRI</a>.</p>
<p>I also meet two journalists, and they wanted to ask me lots of questions and take a picture of me in my &#8220;home environment where I work with activism&#8221;, so well, they ordered a cab from the conference to my home after the conference was ended. It was quite nice to not take the bus home&#8230; :) So now I probably show up in some article from &#8220;Norskt Näringsliv&#8221; in a while.</p>
<p>This was a very good evening, thanks to our organizer <a href="http://twitter.com/_4ZM_">Anders</a>, <a href="http://www.se/">.SE</a> and thanks to everyone who was there, you all made it just perfect! &lt;3</p>
<h2>Links:</h2>
<p><strong>Power Of Adhocracy:</strong> <a title="Power Of Adhocracy" href="http://powerofadhocracy.org/">http://powerofadhocracy.org/</a><br />
<strong> Talks archive:</strong> <a href="http://powerofadhocracy.org/archive.html">http://powerofadhocracy.org/archive.html</a></p>
 <p><a href="http://blog.elis.nu/?flattrss_redirect&amp;id=536&amp;md5=1ba31154e0718fdc5ee99169634eed0f" title="Flattr" target="_blank"><img src="http://blog.elis.nu/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.elis.nu/index.php/2011/10/thoughs-about-power-of-adhocracy-adhocracy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moved the blog</title>
		<link>http://blog.elis.nu/index.php/2011/09/moved-the-blog/</link>
		<comments>http://blog.elis.nu/index.php/2011/09/moved-the-blog/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 21:43:02 +0000</pubDate>
		<dc:creator>Etu</dc:creator>
				<category><![CDATA[Piratsaker]]></category>
		<category><![CDATA[Mjukvara]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Piratpartiet]]></category>

		<guid isPermaLink="false">http://blog.elis.nu/?p=520</guid>
		<description><![CDATA[Some weeks ago I decided to move this blog from elis.nu to blog.elis.nu, becouse I wanted to use the domainname elis.nu for other things... Without breaking compatibility... :)

There is three things you have to do when you do this:

	Change ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F09%2Fmoved-the-blog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F09%2Fmoved-the-blog%2F&amp;source=ElisAxelsson&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Some weeks ago I decided to move this blog from <a href="http://elis.nu/"><strong>elis.nu</strong></a> to <strong>blog.elis.nu</strong>, becouse I wanted to use the domainname <a href="http://elis.nu/"><strong>elis.nu</strong></a> for other things&#8230; <strong>Without breaking compatibility</strong>&#8230; :)</p>
<p>There is three things you have to do when you do this:</p>
<ol>
<li>Change domainname in the adminpanel</li>
<li>Have the new name pointed</li>
<li>Update the settings in the webserver</li>
</ol>
<p>The order of one and two doesn&#8217;t matter that much. But it&#8217;s important to do one before three, else it will break the adminlogin and other stuff that depends on the URL configured.</p>
<p>Then we come to the forth step I took, to not break any inlinks or RSS-Readers that follows the blog&#8230; That&#8217;s much more interesting.</p>
<p>One choice I did when I created this blog was wise, I have the linkstructure <em>&#8220;/index.php/YYYY/MM/postname/&#8221;</em>, this makes it easier in my case&#8230; No need for a rewrite on the new page&#8230; So I just wrote a URI parser in PHP, just a few lines and a 301 redirect for all urls that requests anything longer than just <em>&#8220;/index.php&#8221;</em>.</p>
<p>Now I just hope that all RSS-Readers follows this redirect&#8230; I know that webbrowsers do&#8230;</p>
<p>Code used for redirect:</p>

<div class="wp_code"><div class="pre"><pre class="php" style="font-family:'Times New Roman',Garamond, Times;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'PATH_INFO'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$location</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'http://blog.elis.nu/index.php'</span><span style="color: #339933;">.</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'PATH_INFO'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'HTTP/1.1 301 Moved Permanently'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Location: '</span><span style="color: #339933;">.</span><span style="color: #000088;">$location</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #990000;">die</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;html&gt;
  &lt;head&gt;
    &lt;title&gt;Moved&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;h1&gt;Moved&lt;/h1&gt;
    &lt;p&gt;This page has moved to &lt;a href=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$location</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$location</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/a&gt;.&lt;/p&gt;
  &lt;/body&gt;
&lt;/html&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;!-- Put new website here --&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Very simple, does the job. And please check <a href="http://elis.nu/"><strong>elis.nu</strong></a> out, leave comments here :)</p>
 <p><a href="http://blog.elis.nu/?flattrss_redirect&amp;id=520&amp;md5=ed965dc93397404262ffc110e553d2e1" title="Flattr" target="_blank"><img src="http://blog.elis.nu/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.elis.nu/index.php/2011/09/moved-the-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some brief thougts about Telecomix, and the reboot</title>
		<link>http://blog.elis.nu/index.php/2011/08/some-brief-thougts-about-telecomix-and-the-reboot/</link>
		<comments>http://blog.elis.nu/index.php/2011/08/some-brief-thougts-about-telecomix-and-the-reboot/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 00:34:40 +0000</pubDate>
		<dc:creator>Etu</dc:creator>
				<category><![CDATA[Piratsaker]]></category>
		<category><![CDATA[Telecomix]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[EU]]></category>
		<category><![CDATA[Framtiden]]></category>
		<category><![CDATA[Frihet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mjukvara]]></category>
		<category><![CDATA[Piratpartiet]]></category>

		<guid isPermaLink="false">http://elis.nu/?p=506</guid>
		<description><![CDATA[This is some brief thoughts about Telecomix from a agent, some questions might be answered for some.
Question about price
There have been some claims that the Telecomix services is free of charge, as in free beer. This is not true, ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F08%2Fsome-brief-thougts-about-telecomix-and-the-reboot%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F08%2Fsome-brief-thougts-about-telecomix-and-the-reboot%2F&amp;source=ElisAxelsson&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This is some brief thoughts about Telecomix from a agent, some questions might be answered for some.</p>
<h1>Question about price</h1>
<p>There have been some claims that the Telecomix services is free of charge, as in free beer. This is not true, and never been true. There is a reason behind this, a very simple one.</p>
<p>Telecomix isn&#8217;t a serviceprovider.</p>
<p>We have our services, that is true. But Telecomix isn&#8217;t a serviceprovider. If we would take money to use our services, we would be a serviceprovider, and have the responsibility to keep the services online. A price of 0 SEK is also a price. There is no price, and never been a price. We are a group of people that keeps services running, but there is no guarantees that they will keep running. And no one can enforce that we have too. We do it because we think it&#8217;s fun, and if others can be helped, that is only a bonus. If a services goes down, well then it is down. And we will probably set it up again, because we use our own services. But there is no price, not even a price of zero.</p>
<p>Free as in freedom, not as in free beer.</p>
<p>You have no right to use our services, it is a privileged use without guarantees. And if the admins think you miss use your chance to stay nice, that is your loss. I promise you, that all admins of Telecomix wants to think the best about people. But that isn&#8217;t possible in all cases.</p>
<h1>Question about leaders</h1>
<p>There have been some discussions that Telecomix does have leaders&#8230; Well&#8230;</p>
<p>There is no leaders(except from Cameron), but there is serveradmins. All servers needs admins to keep things running. If a server goes down, there is a admin needed to set it up again to keep it running. And he does that, because he wants the service. Usualy the serveradmins of Telecomix have to pay for the serverspace. Infrastructure does cost money. And Telecomix keeps out of the cloud. We do have our own boxes, in our own co-locations that serveradmins pays for from their own pocket.</p>
<p>All serveradmins do have adminpowers in some ways, duh. So if a serveradmin want a change, there will be a change in that direction (maybe!). We have serveradmins that talks to each other and discuss changes before bigger changes is enforced.</p>
<p>And&#8230; IRC isn&#8217;t a truly decentraliced protocol, you have to have for instance a centernode/tree structure to follow the IRC RFC, which is the case with our network.</p>
<h1>Sources to trust</h1>
<p>Trust on the internet is a hard question, for everyone. Who can you trust? What info can you trust? Why should you trust?</p>
<p>To work together in a group&#8230; you have to trust people in the group. Else the work would fail. If you work alone, and do everything on your own. You don&#8217;t need to trust anyone, maybe.</p>
<p>But as a cluster, that do things together, you have to trust at least someone. My protip is to not use services you don&#8217;t trust. And that trust isn&#8217;t only on protocol level, or encryption, it also includes who the admin is and so on.</p>
<p>I think the best website/feed to trust about what Telecomix is, and what Telecomix do, is telecomix.org website and the telecomix status.net instance and twitterfeed. Just becose a website looks like wikipedia, it does not mean that it&#8217;s trustworthy. Comon, everyone can edit, rollback changes, and do edits again. Everyone can create a page with disinfo and link it as source from somewhere else.</p>
<p>Totaly public wikis might contain disinfo.</p>
<h1>About the current status of Telecomix</h1>
<p>This is my, highly personal thougts. Do not use this as facts.</p>
<p>When I first joined Telecomix, I did it close to the beginning. It was only a few people there and almost only politics, so I left rather quickly. This was rather close to when Telecomix was first launched, and it was much like &#8216;get more people in!&#8217;. I didn&#8217;t want to build community back then. I just wanted to sit back and write code. So I left.</p>
<p>Almost a year later, a friend of mine asked me the question&#8230; &#8220;Why arent you in Telecomix? You would like it there.&#8221;, so I joined again. And I had almost forgot about Telecomix, and my experience of it, but when I got there I was met by tons of friendly people. Back then there was never people with op in the channel. Approx 50% of the text in the channel was in Swedish. And everyone was nice to each other. Back then we did politics by sending emails and calling people that works in EU and our own government, to make changes, push changes.</p>
<p>We did replies to some things where the Swedish government asked for opinions from different Organizations. WeRebuild was listed as organization they was interested in to reply. So we got into a pad and wrote a document in LaTeX, compiled, printed and went with the paper to the government.</p>
<p>At this time, I had a great experience every day talking to people in our main-channel, doing some work from time to time.</p>
<p>This has changed, for the last half year(well, more) it have been harder and harder to keep things running. Operators have been attacked, ddosing, tons of more people in the channels that talks(which not have to be bad!). Everyone that hangs around now does not understand how important it is to stay nice to each other. And stay cute together to be able to keep work on what we think is fun.</p>
<p>All systems needs reboots some time, I think, most of the admins wants to go back to this state. Recreate the state where people can hang out together, and have fun together. And have a productive environment. Before there even was thoughts about a price for the Telecomix services. How can anyone even think in that way? How? I don&#8217;t get it! I look at it a bit with the same eyes as I look at Free Software with.</p>
<p>The current status of Telecomix is that some parts is closed, we want to calm everyone down. <a href="http://media.ccc.de/browse/conferences/camp2011/cccamp11-4389-decentralized_clustering-en.html">We announced this at the CCCongress in a talk, with a message from Cameron.</a> Systems are going down for reboot. Things are going to change. Not everything is decided yet.</p>
 <p><a href="http://blog.elis.nu/?flattrss_redirect&amp;id=506&amp;md5=7d4334a1141ee9539551a517d7b93072" title="Flattr" target="_blank"><img src="http://blog.elis.nu/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.elis.nu/index.php/2011/08/some-brief-thougts-about-telecomix-and-the-reboot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Söker nytt arbete!</title>
		<link>http://blog.elis.nu/index.php/2011/07/soker-nytt-arbete/</link>
		<comments>http://blog.elis.nu/index.php/2011/07/soker-nytt-arbete/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 22:31:58 +0000</pubDate>
		<dc:creator>Etu</dc:creator>
				<category><![CDATA[Arbete]]></category>
		<category><![CDATA[Mjukvara]]></category>
		<category><![CDATA[Osorterat]]></category>
		<category><![CDATA[Piratsaker]]></category>
		<category><![CDATA[Framtiden]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Piratpartiet]]></category>

		<guid isPermaLink="false">http://elis.nu/?p=501</guid>
		<description><![CDATA[Elis Axelsson, drifttekniker/webutvecklare, söker nytt jobb inom dessa områden. Bor för närvarande i Stockholmsområdet, men är sugen på att söka mig vidare ner mot Göteborg.

Jag arbetar gärna på flexibla arbetstider, men med regelbundna uppföljningar. Jag har jobbat senaste året ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F07%2Fsoker-nytt-arbete%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F07%2Fsoker-nytt-arbete%2F&amp;source=ElisAxelsson&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Elis Axelsson, drifttekniker/webutvecklare, söker nytt jobb inom dessa områden. Bor för närvarande i Stockholmsområdet, men är sugen på att söka mig vidare ner mot Göteborg.</p>
<p>Jag arbetar gärna på flexibla arbetstider, men med regelbundna uppföljningar. Jag har jobbat senaste året med utveckling av webb och vill söka mig vidare, gärna inom områden som innefattar serverdrift, nätverksunderhåll, backuprutiner och liknande.</p>
<p>Du kan läsa mitt CV för mer information, det går att hitta här: <a title="Elis_Axelsson.pdf" href="http://img.failar.nu/etu/.cv/Elis_Axelsson.pdf" target="_blank">Elis_Axelsson.pdf</a></p>
<p>Har du ett jobb till mig? Eller tips på något? Skrik till i kommentarsfältet alt ring/maila mig!</p>
 <p><a href="http://blog.elis.nu/?flattrss_redirect&amp;id=501&amp;md5=50350d12f91f5b2c7d80bdfec6aaa93f" title="Flattr" target="_blank"><img src="http://blog.elis.nu/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.elis.nu/index.php/2011/07/soker-nytt-arbete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Telecomix I Godmorgon Världen del2</title>
		<link>http://blog.elis.nu/index.php/2011/06/telecomix-i-godmorgon-varlden-del2/</link>
		<comments>http://blog.elis.nu/index.php/2011/06/telecomix-i-godmorgon-varlden-del2/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 09:49:19 +0000</pubDate>
		<dc:creator>Etu</dc:creator>
				<category><![CDATA[Piratsaker]]></category>
		<category><![CDATA[Telecomix]]></category>
		<category><![CDATA[Framtiden]]></category>
		<category><![CDATA[Frihet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mjukvara]]></category>
		<category><![CDATA[Öppenhet]]></category>
		<category><![CDATA[Piratpartiet]]></category>

		<guid isPermaLink="false">http://elis.nu/?p=497</guid>
		<description><![CDATA[Inslaget i Godmorgon Världen är över, det var ett bra inslag och nu har vi fått ner ljudströmmen för de som missade när det sändes på radio. Vi fick ungefär 10:30 i radiotid idag.

Godmorgon Världen är väl lite av ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F06%2Ftelecomix-i-godmorgon-varlden-del2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F06%2Ftelecomix-i-godmorgon-varlden-del2%2F&amp;source=ElisAxelsson&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Inslaget i Godmorgon Världen är över, det var ett bra inslag och nu har vi fått ner ljudströmmen för de som missade när det sändes på radio. Vi fick ungefär 10:30 i radiotid idag.</p>
<p>Godmorgon Världen är väl lite av Sveriges Radios finrum av viktiga och spännande saker av vad som händer. Och jag gillar skarpt att Cameron fick vara med i sändningen.</p>
<p>Här hittar ni ljudströmmen: <a title="http://img.failar.nu/etu/gmv_p1_telecomix_-_sthlm_politiska_hackare_2011-06-05.m4a" href="http://img.failar.nu/etu/gmv_p1_telecomix_-_sthlm_politiska_hackare_2011-06-05.m4a" target="_blank">http://img.failar.nu/etu/gmv_p1_telecomix_-_sthlm_politiska_hackare_2011-06-05.m4a</a></p>
<p>Ladda ner/sprid vidare den!</p>
 <p><a href="http://blog.elis.nu/?flattrss_redirect&amp;id=497&amp;md5=7892027849515735c789bfd7df5b8508" title="Flattr" target="_blank"><img src="http://blog.elis.nu/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.elis.nu/index.php/2011/06/telecomix-i-godmorgon-varlden-del2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://img.failar.nu/etu/gmv_p1_telecomix_-_sthlm_politiska_hackare_2011-06-05.m4a" length="7638694" type="audio/mpeg" />
		</item>
		<item>
		<title>Telecomix i Godmorgon Världen</title>
		<link>http://blog.elis.nu/index.php/2011/06/telecomix-i-godmorgon-varlden/</link>
		<comments>http://blog.elis.nu/index.php/2011/06/telecomix-i-godmorgon-varlden/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 09:38:37 +0000</pubDate>
		<dc:creator>Etu</dc:creator>
				<category><![CDATA[Piratsaker]]></category>
		<category><![CDATA[Telecomix]]></category>
		<category><![CDATA[Frihet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mjukvara]]></category>
		<category><![CDATA[Piratpartiet]]></category>

		<guid isPermaLink="false">http://elis.nu/?p=494</guid>
		<description><![CDATA[Om 17 minuter så börjar andra timmen av godmorgon världen, någongång under denna timme så kommer Telecomix att finnas med och berätta om sitt arbete under Egypten, Lybien osv. Allt det där.

Jag kommer att fixa ner en mp3a för ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F06%2Ftelecomix-i-godmorgon-varlden%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F06%2Ftelecomix-i-godmorgon-varlden%2F&amp;source=ElisAxelsson&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Om 17 minuter så börjar andra timmen av godmorgon världen, någongång under denna timme så kommer Telecomix att finnas med och berätta om sitt arbete under Egypten, Lybien osv. Allt det där.</p>
<p>Jag kommer att fixa ner en mp3a för nerladdning senare. Men ni som har möjlighet att lyssna direkt får gärna göra det.</p>
 <p><a href="http://blog.elis.nu/?flattrss_redirect&amp;id=494&amp;md5=b7d1ec26ee7a321cd33876dae6ad9da4" title="Flattr" target="_blank"><img src="http://blog.elis.nu/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.elis.nu/index.php/2011/06/telecomix-i-godmorgon-varlden/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Standarder&#8230; Dammit&#8230;</title>
		<link>http://blog.elis.nu/index.php/2011/05/standarder-dammit/</link>
		<comments>http://blog.elis.nu/index.php/2011/05/standarder-dammit/#comments</comments>
		<pubDate>Sun, 01 May 2011 20:01:24 +0000</pubDate>
		<dc:creator>Etu</dc:creator>
				<category><![CDATA[Mjukvara]]></category>
		<category><![CDATA[Piratsaker]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Piratpartiet]]></category>

		<guid isPermaLink="false">http://elis.nu/?p=487</guid>
		<description><![CDATA[Standarder... Standarder är A och O för att det ska gå att hantera något som Internet. Utan en massa standarder så hade du inte kunnat läsa detta inlägg. Det vore mer eller mindre omöjligt.

Det är ingen hemlighet att jag ...]]></description>
			<content:encoded><![CDATA[<p class="wp-flattr-button"></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F05%2Fstandarder-dammit%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.elis.nu%2Findex.php%2F2011%2F05%2Fstandarder-dammit%2F&amp;source=ElisAxelsson&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Standarder&#8230; Standarder är A och O för att det ska gå att hantera något som Internet. Utan en massa standarder så hade du inte kunnat läsa detta inlägg. Det vore mer eller mindre omöjligt.</p>
<p>Det är ingen hemlighet att jag har en N900 och har haft det ett tag, men har aldrig riktigt tänkt tanken att synkronisera kalender och kontakter, men det påtalades igårkväll så jag började titta på det. <a href="http://www.google.com/support/forum/p/Google+Mobile/thread?tid=5f92340e8dea5ed7&amp;hl=en" target="_blank">Slog upp på internet hur man gör</a>. Gjorde exakt likadant, och det fungerade, tills jag började slå samman kontakter från SIM-Kortet och mina Gmail kontakter.</p>
<p>Det verkar till stor del vara problem med Googles Exchange servrar, men om man vänder på det så tycker vissa att det är N900ans fel. Men det senare känns som ett ickeargument. Man har standarder för att slippa göra specialhack för varje server.</p>
<blockquote cite="http://my-symbian.com/forum/viewtopic.php?p=382905#382905"><p>Google doesn&#8217;t use a  standard Exchange protocol, so isn&#8217;t supported with MfE on the N900.  It  may work for you though &#8211; there&#8217;s been very mixed reports on this.</p></blockquote>
<div style="text-align: right;">&#8211; <a href="http://my-symbian.com/forum/viewtopic.php?p=382905#382905" target="_blank">Rob1n</a> 2008-03-06</div>
<p>Det har även kommenterats på hemsidan där jag läste om hur man satte upp det:</p>
<blockquote cite="http://www.google.com/support/forum/p/Google+Mobile/thread?tid=5f92340e8dea5ed7&amp;hl=en"><p>When I start using the &#8220;merge contacts&#8221; feature (which makes this device  look pretty awesome) then MfE won&#8217;t sync contacts anymore.<br />
I currently only use MfE for my calendar :(</p></blockquote>
<div style="text-align: right;">&#8211; <a href="http://www.google.com/support/forum/p/Google+Mobile/thread?tid=5f92340e8dea5ed7&amp;hl=en" target="_blank">jrkalf</a> 2009-12-31</div>
<p>Jag har läst lite här och där att det är en bugg i implementationen av hanteringen av Nicknames på Googles sida&#8230; Jag vet inte riktigt men jag ska prova runt lite och se om jag lyckats mergea alla mina kontakter.</p>
<p>Jag bryr mig ärligt inte helt om VAR felet ligger, jag är mest bitter över att det uppstår när det faktiskt finns standarder för det.</p>
 <p><a href="http://blog.elis.nu/?flattrss_redirect&amp;id=487&amp;md5=98ae1b195003ee8a0228bdcbeb21b265" title="Flattr" target="_blank"><img src="http://blog.elis.nu/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.elis.nu/index.php/2011/05/standarder-dammit/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

