<?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>Thomas Gabrielsens weblog</title>
	<atom:link href="http://arton.no/feed/" rel="self" type="application/rss+xml" />
	<link>http://arton.no</link>
	<description>Just another weblog</description>
	<lastBuildDate>Thu, 23 Feb 2012 16:05:12 +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>If Linux (Ubuntu) cannot resolve hostname</title>
		<link>http://arton.no/2012/02/18/if-linux-cannot-resolve-hostname/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=if-linux-cannot-resolve-hostname</link>
		<comments>http://arton.no/2012/02/18/if-linux-cannot-resolve-hostname/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 16:17:00 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://arton.no/?p=601</guid>
		<description><![CDATA[I used a couple of hours today to find out why my laptop ( Ubuntu 10.04 ) could resolve the hostname of all other devices on my network, but my server ( Ubuntu Server 10.04 ) and desktop ( Ubuntu 11.10 ) could not. First I suspected it to be a misconfiguration in Samba, but after [...]]]></description>
			<content:encoded><![CDATA[<p>I used a couple of hours today to find out why my laptop ( Ubuntu 10.04 ) could resolve the hostname of all other devices on my network, but my server ( Ubuntu Server 10.04 ) and desktop ( Ubuntu 11.10 ) could not. First I suspected it to be a misconfiguration in <a title="Samba on Wikipedia" href="http://en.wikipedia.org/wiki/Samba_(software)">Samba</a>, but after lot of searching in the /etc/samba/smb.conf i found that it didn&#8217;t have anything to do with my problem. It was not worthless because I learned a lot more about Linux and networking, and one thing that might be useful to others is this little commented line in the Samba config file:</p>
<blockquote><p>name resolve order = lmhosts host wins bcast</p></blockquote>
<p>Here you can change the order the different network protocols that should be resolved. What pointed me in the right direction was the command simple but very useful Linux command &#8220;dig&#8221; which stands for <a href="http://en.wikipedia.org/wiki/Domain_Information_Groper" target="_blank">&#8220;domain information groper&#8221;</a>. By simply typing:</p>
<pre class="brush:shell">dig</pre>
<p>Which is very useful for troubleshooting network problems in general. Test it yourself by typing e.g.:</p>
<p>dig wikipedia.com</p>
<p>and you will get a very nice output on how the domain name is resolved. The part that helped me a was the third next line in the output:</p>
<pre class="brush:shell">; &lt;&lt;&gt;&gt; DiG 9.7.0-P1 &lt;&lt;&gt;&gt; wikipedia.com
;; global options: +cmd
;; Got answer:
;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 11524
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 3, ADDITIONAL: 3

;; QUESTION SECTION:
;wikipedia.com. IN A

;; ANSWER SECTION:
wikipedia.com. 1305 IN A 208.80.152.201

;; AUTHORITY SECTION:
wikipedia.com. 82430 IN NS ns2.wikimedia.org.
wikipedia.com. 82430 IN NS ns0.wikimedia.org.
wikipedia.com. 82430 IN NS ns1.wikimedia.org.

;; ADDITIONAL SECTION:
ns0.wikimedia.org. 1420 IN A 208.80.152.130
ns1.wikimedia.org. 1420 IN A 208.80.152.142
ns2.wikimedia.org. 1420 IN A 91.198.174.4

;; Query time: 11 msec
;; SERVER: 192.168.10.1#53(192.168.10.1)
;; WHEN: Sat Feb 18 16:09:39 2012
;; MSG SIZE rcvd: 162</pre>
<p>On my laptop, the one that could resolve hostname the output was:</p>
<pre class="brush:shell">;; SERVER: 208.122.23.22#53(208.122.23.22)</pre>
<p>This DNS server belongs to <a href="http://www.unblock-us.com/" target="_blank">UnblockUS</a> which is a service to unblock services that is for USA only. I used it to watch <a href="http://netflix.com" target="_blank">netflix.com</a> in Norway. On the other computers the command printed out my ISP &#8216;s DNS primary server and there is no way a local hostname can be resolved by using a DNS server that is not connected to your local network (LAN). The reason that it worked  on my laptop I believe is that my UnblockUS subscription had expired and then my laptop used my router as a DNS server instead.</p>
<p>So finally, here is the <strong>Solution:</strong></p>
<p>I checked my /etc/resolv.conf file and found that Ubuntu automatically fetched my ISP&#8217;s DNS server IPs and saved it here every time the network was getting the IP address from the DHCP server on the router. There is useless just to change the /etc/resolv.conf file because then it is overwritten every time the network daemon  starts. If you are using Gnome interface, <strong>right click on network icon &gt; Edit Connections &gt; IPv4 (tab) &gt; Automatic (DHCP) addresses only (from the dropdown menu)</strong> and enter the IP address to your router in the <strong>DNS servers: </strong>field. The location may vary depending on which Ubuntu version you have and if you have wireless or wired connection, but you will find it if you look around the dialogue boxes.</p>
<p>On my headless server I used static DHCP on my router. I changed this to be a static IP on my server instead by editing /etc/network/interfaces using nano:</p>
<pre class="brush:shell">sudo nano /etc/network/interfaces</pre>
<p>Before:</p>
<pre class="brush:shell"># The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet dhcp</pre>
<p>After:</p>
<pre class="brush:shell"># The loopback network interface
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
address 192.168.10.2
netmask 255.255.255.0
gateway 192.168.10.1</pre>
<p>Change your /etc/network/interfaces according to your network configuration. Edit your /etc/resolv.conf  and add your router as nameserver:</p>
<pre class="brush:shell">nameserver 192.168.10.1</pre>
<p>Feel free to comment if you find errors or have any questions.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://arton.no/2012/02/18/if-linux-cannot-resolve-hostname/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nynorskens siste hjertesukk</title>
		<link>http://arton.no/2012/01/28/nynorskens-siste-hjertesukk/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nynorskens-siste-hjertesukk</link>
		<comments>http://arton.no/2012/01/28/nynorskens-siste-hjertesukk/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 14:39:36 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Norwegian]]></category>
		<category><![CDATA[Språk]]></category>
		<category><![CDATA[bokmål]]></category>
		<category><![CDATA[dansketiden]]></category>
		<category><![CDATA[nasjonalromantikk]]></category>
		<category><![CDATA[Norsk]]></category>
		<category><![CDATA[nynorsk]]></category>

		<guid isPermaLink="false">http://arton.no/?p=581</guid>
		<description><![CDATA[Jeg forstår hjertesukket til nynorskbrukere om dagen. Dialekten vår er en veldig viktig del av identiteten vår. Jeg kommer fra Hurum i Buskerud og snakker breiere enn min samboer som er født og oppvokst på vestkanten i Oslo. Jeg har fått mye pepper for dialekten min, og jeg tar det personlig. På den måten forstår jeg [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Kjærleikens sørgereise" href="http://blogg.bt.no/sandvik/2012/01/28/kjaerleikens-sorgereise/" target="_blank">Jeg forstår hjertesukket til nynorskbrukere om dagen</a>. Dialekten vår er en veldig viktig del av identiteten vår. Jeg kommer fra Hurum i Buskerud og snakker breiere enn min samboer som er født og oppvokst på vestkanten i Oslo. Jeg har fått mye pepper for dialekten min, og jeg tar det personlig. På den måten forstår jeg hva nynorskbrukere føler, men jeg ville aldri drømme om å kjempe for at dialekten min skulle være et skriftspråk. Brukere av nynorsk har et tilleggsargument som er Ivar Aasens arbeid, men vi burde komme over nasjonalromantikken nå. <a title="Ivar Aasen på Wikipedia" href="http://no.wikipedia.org/wiki/Ivar_Aasen" target="_blank">Ivar Aasens</a> arbeid var omdiskutert, og det heller ikke vanskelig å høre at nynorsken er preget av at Ivar Aasen var fra vestlandet, nærmere bestemt <a title="Ørsta på Wikipedia" href="http://no.wikipedia.org/wiki/%C3%98rsta" target="_blank">Ørsta</a>. Han forteller i forordet til <em>Prøver af Landsmaalet</em> at de beste dialektene var de i <a title="Hardanger" href="http://no.wikipedia.org/wiki/Hardanger" target="_blank">Hardanger</a>, <a title="Voss" href="http://no.wikipedia.org/wiki/Voss" target="_blank">Voss</a> og <a title="Sogn" href="http://no.wikipedia.org/wiki/Sogn" target="_blank">Sogn</a>, mens «de nordenfjeldske dialekter er blant de slettere eller mere forvanskede». Aasen var med andre ord ikke særlig nådig i sin utvelgelse av dialekter.</p>
<p>Norsk er under hardt angrep fra engelsk og vi står sterkere sammen hvis vi skal beholde gode norske ord og uttrykk. Hva som er gode norske ord og uttrykk kan selvsagt diskuteres ihjel, men det er lite fruktbart. Det er alltid litt trist å høre folk bruke engelske ord eller fraser i stedet for det jeg vil kvalifisere som gode norske ord og uttrykk.</p>
<p>Det er på mange måter resurskrevende å ha to skriftspråk. Det koster penger, selv om dette er det dårligste argumentet så gjør det nå en gang det. Den resursbruken som bekymrer meg mest er norskundervisningen hvor norsk ungdom stiller med et handikap når de må lære to variasjoner av morsmålet sitt. Det blir mindre tid til lek og øvelse på rettskrivning av den enkle grunn at det er krevende for ungdom å lære to skriftspråk. Det jeg ønsker meg er en større toleranse for dialekter og ett skriftspråk. Mange vil nok argumentere for at det er lett for meg å si som kommer fra en del av landet hvor dialekten er veldig lik bokmål, og det er selvsagt et poeng, men ikke et godt argument i debatten om to skriftspråk av den enkle grunn at det er bokmål som er det skriftspråket 85–90% velger å bruke. Vi er rett og slett et for lite land til å skulle holde liv i to skriftspråk.</p>
<p>Det er på tide å komme over dansketiden, den er en del av historien vår enten vi liker det eller ikke. Wergeland var en klok mann, og han kommer til å få viljen sin i denne saken også. Det er bare et tidsspørsmål, i mellomtiden er norsk skoleungdom taperne for nynorskens kunstige åndedrett.</p>
]]></content:encoded>
			<wfw:commentRss>http://arton.no/2012/01/28/nynorskens-siste-hjertesukk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open letter to Livescribe</title>
		<link>http://arton.no/2012/01/27/open-letter-to-livescribe/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=open-letter-to-livescribe</link>
		<comments>http://arton.no/2012/01/27/open-letter-to-livescribe/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 09:17:09 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Livescribe]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://arton.no/?p=572</guid>
		<description><![CDATA[Hi I am a student at University of Oslo and a happy and proud user of a Livescribe pen. At the university we are trained to use Linux. Which distro we choose does not matter, so we are free to use Ubuntu which provide us a great community where Ubuntu users can get fantastic support [...]]]></description>
			<content:encoded><![CDATA[<p>Hi</p>
<p>I am a student at University of Oslo and a happy and proud user of a Livescribe pen. At the university we are trained to use Linux. Which distro we choose does not matter, so we are free to use Ubuntu which provide us a great community where Ubuntu users can get fantastic support and much more. Ubuntu also comes with a good software package handlers called &#8220;Software Center&#8221; or &#8220;Synaptic&#8221;. I have Windows installed side by side with Ubuntu on my computers, but the only reason for booting into Windows for me now is to synchronize my livescribe pen or watch and hear recorded lectures. The fact that there is no Linux version of LD is starting to get more and more time consuming, because I always do my exercises in Ubuntu. I will urge you to make a port for Linux, and if you do, Debian/Ubuntu would be a good place to start. Because Linux is very common on universities around the world I think this extra expenses porting LD to linux will pay off because Livescribe will (I believe) reach a much broader range of your target group. I hope you will take this into consideration and create a Linux version of LD. I do not have the programming skills to make a port myself, but if I could I would have done it for free. So my solicitation to Livescribe is to contact the community at e.g. Ubuntu (www.ubuntuforums.com) and ask if anybody is interested in cooperate with Livescribe to create a Linux port.</p>
<p>I will post this message on different forums to see if I can get some response from the community, and if I do I will let you know. In the mean time I would love to hear Livescribes plans on this subject.</p>
<p>Thank you!</p>
<p>Thomas Gabrielsen</p>
]]></content:encoded>
			<wfw:commentRss>http://arton.no/2012/01/27/open-letter-to-livescribe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla&#8217;s Robert O&#8217;Callahan MediaStream Processing demos</title>
		<link>http://arton.no/2012/01/21/mozillas-robert-ocallahan-mediastream-processing-demos/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mozillas-robert-ocallahan-mediastream-processing-demos</link>
		<comments>http://arton.no/2012/01/21/mozillas-robert-ocallahan-mediastream-processing-demos/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 21:37:50 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[experimental]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://arton.no/?p=543</guid>
		<description><![CDATA[Check out Mozilla&#8217;s Robert O&#8217;Callahan MediaStream Processing demos: https://ftp.mozilla.org/pub/mozilla.org/firefox/try-builds/rocallahan@mozilla.com-6ac1418daa2e/ You need Firefox experimental nightly build: http://people.mozilla.org/~roc/stream-demos/ You should try them, it is worth spending some time playing around with these demos. Start at the top of the list, and work yourself down, one at the time.]]></description>
			<content:encoded><![CDATA[<p>Check out Mozilla&#8217;s Robert O&#8217;Callahan MediaStream Processing demos:<br />
<a href="https://ftp.mozilla.org/pub/mozilla.org/firefox/try-builds/rocallahan@mozilla.com-6ac1418daa2e/">https://ftp.mozilla.org/pub/mozilla.org/firefox/try-builds/rocallahan@mozilla.com-6ac1418daa2e/</a></p>
<p>You need Firefox experimental nightly build:<br />
<a title="Download page for the demos" href="http://people.mozilla.org/~roc/stream-demos/" target="_blank">http://people.mozilla.org/~roc/stream-demos/</a></p>
<p>You should try them, it is worth spending some time playing around with these demos. Start at the top of the list, and work yourself down, one at the time.</p>
]]></content:encoded>
			<wfw:commentRss>http://arton.no/2012/01/21/mozillas-robert-ocallahan-mediastream-processing-demos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View shared calendars for free Google Apps accounts</title>
		<link>http://arton.no/2012/01/21/view-shared-calendars-for-free-google-apps-accounts/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=view-shared-calendars-for-free-google-apps-accounts</link>
		<comments>http://arton.no/2012/01/21/view-shared-calendars-for-free-google-apps-accounts/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 12:46:48 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[synchronize]]></category>

		<guid isPermaLink="false">http://arton.no/?p=533</guid>
		<description><![CDATA[I have for a long been a Google Apps user and synchronizing e-mail, calendars and contacts with my iPhone works flawlessly. My partner and I are sharing calendars but until today it has been impossible to view my partner’s calendar on my iPhone. The reason for this is that the “administer security controls” where you [...]]]></description>
			<content:encoded><![CDATA[<p>I have for a long been a Google Apps user and synchronizing e-mail, calendars and contacts with my iPhone works flawlessly. My partner and I are <a title="How to share calendars with Google Apps or Gmail" href="http://support.google.com/calendar/bin/answer.py?hl=en&amp;answer=37082" target="_blank">sharing calendars</a> but until today it has been impossible to view my partner’s calendar on my iPhone. The reason for this is that the “administer security controls” where you can add shared calendars is <a title="are only available for Google Apps Premier and Education customers" href="http://www.google.com/mobile/sync/" target="_blank">“are only available for Google Apps Premier and Education customers”</a> (look at the bottom of the page).  Today I found a workaround, at least for iPhone users but I guess it will work for every smart phone that support <a title="CalDAV on Wikipedia" href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDav</a> calendar synchronization. This is how I did it:</p>
<ol>
<li>Go to <a title="CalDAV setup for iPhone" href="http://support.google.com/mobile/bin/answer.py?hl=en&amp;answer=151674" target="_blank">http://support.google.com/mobile/bin/answer.py?hl=en&amp;answer=151674</a> and follow the instructions on how set up your (i)phone&#8217;s CalDAV synch.</li>
<li>Open up <a title="Select calendars" href="https://www.google.com/calendar/hosted/ditt_domene/iphoneselec" target="_blank">https://www.google.com/calendar/hosted/<em>ditt_domene</em>/iphoneselec</a> and select the calendars you want to synch</li>
<li>Go to your phone&#8217;s calendar settings and select the calendars you want to view. On an iPhone: Open up your calendar, click on the &#8220;Calendars&#8221;  button in the upper left corner, select the calendars you want to view.</li>
</ol>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://arton.no/2012/01/21/view-shared-calendars-for-free-google-apps-accounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Norsk bokbransje: Våkn opp for helvete!</title>
		<link>http://arton.no/2012/01/09/norsk-bokbransje-vakn-opp-for-helvete/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=norsk-bokbransje-vakn-opp-for-helvete</link>
		<comments>http://arton.no/2012/01/09/norsk-bokbransje-vakn-opp-for-helvete/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 12:17:45 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[digitalisering]]></category>
		<category><![CDATA[Norwegian]]></category>
		<category><![CDATA[e-bok]]></category>
		<category><![CDATA[forlagsbransjen]]></category>
		<category><![CDATA[napster]]></category>
		<category><![CDATA[platebransjen]]></category>

		<guid isPermaLink="false">http://arton.no/?p=511</guid>
		<description><![CDATA[Herodes Falsk ga de norske forlagshusene en verbal ørefik i Aftenposten 5 januar. Nok et herlig ballespark til sirompa, og som Falsk selv skriver, rett og slett dumme forretningsfolk i forlagshusene, platebransjen, etc. Det virker som alle andre enn de selv forstår at verden går videre, enten man vil eller ikke. Det er 13 år [...]]]></description>
			<content:encoded><![CDATA[<p>Herodes Falsk ga de norske forlagshusene <a href="http://www.aftenposten.no/meninger/kronikker/Forlag-i-fosterstilling-6734496.html" target="_blank">en verbal ørefik i Aftenposten 5 januar</a>. Nok et herlig ballespark til sirompa, og som Falsk selv skriver, rett og slett dumme forretningsfolk i forlagshusene, platebransjen, etc. Det virker som alle andre enn de selv forstår at verden går videre, enten man vil eller ikke. Det er 13 år siden en guttunge lagde det platebransjen brukte 10 år på å akseptere. De norske forlagene har ifølge den høyest oppegående mannen Eirik Newth laget <a href="http://newth.net/eirik/2011/11/20/digikort/" target="_blank">&#8220;En iPod med påklistret kassettspiller&#8221;</a> - .</p>
<p>Jeg tviler ikke et sekund &#8230;</p>
<p><a href="http://arton.no/2012/01/09/norsk-bokbransje-vakn-opp-for-helvete/napster-logo/" rel="attachment wp-att-512"><img class="alignnone size-full wp-image-512" title="napster-logo" src="http://arton.no/wp-content/uploads/2012/01/napster-logo.jpg" alt="" width="500" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://arton.no/2012/01/09/norsk-bokbransje-vakn-opp-for-helvete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Login from hell</title>
		<link>http://arton.no/2012/01/07/login-from-hell/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=login-from-hell</link>
		<comments>http://arton.no/2012/01/07/login-from-hell/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 20:56:26 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Brukervennlighet]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Norwegian]]></category>
		<category><![CDATA[consistency]]></category>
		<category><![CDATA[constraints]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://arton.no/?p=501</guid>
		<description><![CDATA[My internet provider Viken Fiber, and the service provider partnership Altibox has a great TV Guide service which allows their customers to remotely administer their PVR, including start recordings, schedule recordings, and less useful features like set up alerts or change channel when their favourite shows starts. Anyway, the service has a login page with a usability from hell! [...]]]></description>
			<content:encoded><![CDATA[<p>My internet provider <a href="http://www.vikenfiber.no/" target="_blank">Viken Fiber</a>, and the service provider partnership <a href="http://en.wikipedia.org/wiki/Altibox" target="_blank">Altibox</a> has a great <a href="https://tvguide.altibox.no/login.html" target="_blank">TV Guide</a> service which allows their customers to remotely administer their PVR, including start recordings, schedule recordings, and less useful features like set up alerts or change channel when their favourite shows starts. Anyway, the service has a login page with a usability from hell!</p>
<p>The first thing you as a customer have to do is to choose your distribution partner from a drop  down list which currently holds 35 distribution partners:</p>
<div id="attachment_503" class="wp-caption alignnone" style="width: 475px"><a href="http://arton.no/2012/01/07/login-from-hell/login_service_provider_list/" rel="attachment wp-att-503"><img class="size-full wp-image-503" title="Service provider drop down list" src="http://arton.no/wp-content/uploads/2012/01/login_service_provider_list.png" alt="Service provider drop down list" width="465" height="546" /></a><p class="wp-caption-text">Service provider drop down list</p></div>
<ul>
<li><em><em>Altiboxleverandør: Altibox service providers</em></em></li>
<li><em><em>Kundenumer = customer number</em></em></li>
<li><em>Husk meg = Remember me</em></li>
</ul>
<p>Next you have to type in your customer number. This is a eight (8) digit long number which is not used anywhere else, and if the customer has forgotten it, it is very hard to find. They have even removed it from the profile page. And to make things even more difficult, they have <strong>disabled <a href="http://en.wikipedia.org/wiki/Autocomplete" target="_blank">autocomplete</a>!</strong></p>
<div id="attachment_506" class="wp-caption alignnone" style="width: 610px"><a href="http://arton.no/2012/01/07/login-from-hell/login_deaktivert_automatisk_utfylling/" rel="attachment wp-att-506"><img class="size-medium wp-image-506" title="Disabled autocomplete" src="http://arton.no/wp-content/uploads/2012/01/login_deaktivert_automatisk_utfylling-600x464.png" alt="Disabled autocomplete" width="600" height="464" /></a><p class="wp-caption-text">Disabled autocomplete</p></div>
<p><em>It is written in Norwegian, but Chrome users will recognize the label. It says: &#8220;This website has deactivated autocomplete for this form&#8221;.</em></p>
<p>Finally you have to add a pin code, which is different from the password used to log in to the customer page.  It feels like they do not want the customers to use this service, but this is of course not true. My suspicion is that this is just laziness and ignorance of <strong>usability</strong> in general and a very important design principle: <strong>consistency</strong>, and  a total misunderstanding of  the design principle <strong>constraints.</strong></p>
<p>Come on guys, you can do better than this!</p>
]]></content:encoded>
			<wfw:commentRss>http://arton.no/2012/01/07/login-from-hell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook må snu etter norsk klage &#8211; Aftenposten</title>
		<link>http://arton.no/2011/12/24/facebook-ma-snu-etter-norsk-klage-aftenposten/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=facebook-ma-snu-etter-norsk-klage-aftenposten</link>
		<comments>http://arton.no/2011/12/24/facebook-ma-snu-etter-norsk-klage-aftenposten/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 00:14:31 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://arton.no/?p=498</guid>
		<description><![CDATA[Endelig får det, i hvert fall tilsynelatende, maktesløse Datatilsynet gjennom en klage. De har sammen med sin irske søsterorganisasjon klart å få til et møte med Facebook i Oslo i januar 2012 hvor de skal diskutere Facebooks nye personvernavtale. Facebook må snu etter norsk klage &#8211; Aftenposten.]]></description>
			<content:encoded><![CDATA[<p>Endelig får det, i hvert fall tilsynelatende, maktesløse Datatilsynet gjennom en klage. De har sammen med sin irske søsterorganisasjon klart å få til et møte med Facebook i Oslo i januar 2012 hvor de skal diskutere Facebooks nye personvernavtale.</p>
<p><a href="http://www.aftenposten.no/nyheter/iriks/Facebook-m-snu-etter-norsk-klage-6727425.html">Facebook må snu etter norsk klage &#8211; Aftenposten</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://arton.no/2011/12/24/facebook-ma-snu-etter-norsk-klage-aftenposten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Er du i mot datalagringsdirektivet?</title>
		<link>http://arton.no/2011/12/08/er-du-i-mot-datalagringsdirektivet/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=er-du-i-mot-datalagringsdirektivet</link>
		<comments>http://arton.no/2011/12/08/er-du-i-mot-datalagringsdirektivet/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 22:39:19 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Norwegian]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[Datalagringsdirektivet]]></category>
		<category><![CDATA[datatilsynet]]></category>
		<category><![CDATA[Digitalt Personvern]]></category>
		<category><![CDATA[DLD]]></category>
		<category><![CDATA[Georg Apenes]]></category>

		<guid isPermaLink="false">http://arton.no/?p=474</guid>
		<description><![CDATA[Er du imot datalagringsdirektivet? Tidligere direktør i Datatilsynet Georg Apenes har startet en foreningen Digitalt Personvern. Digitalt Personvern mål (DP) er (sitat): Foreningens mål er at de prinsipielle spørsmålene som implementeringen av datalagringsdirektivet reiser i en demokratisk rettsstat, får en ordentlig og uavhengig behandling i uavhengige domstoler. Om nødvendig, med Den Europeiske Menneskerettsdomstolen (EMK) som [...]]]></description>
			<content:encoded><![CDATA[<p>Er du imot <a href="http://en.wikipedia.org/wiki/Data_Retention_Directive">datalagringsdirektivet</a>? Tidligere direktør i <a href="http://www.datatilsynet.no/">Datatilsynet</a> <a href="http://no.wikipedia.org/wiki/Georg_Apenes">Georg Apenes</a> har startet en foreningen <a href="http://www.digitaltpersonvern.no/">Digitalt Personvern</a>. Digitalt Personvern mål (DP) er (sitat):</p>
<blockquote><p>Foreningens mål er at de prinsipielle spørsmålene som implementeringen av datalagringsdirektivet reiser i en demokratisk rettsstat, får en ordentlig og uavhengig behandling i uavhengige domstoler. Om nødvendig, med Den Europeiske Menneskerettsdomstolen (EMK) som siste instans.</p></blockquote>
<p>Dette vil de gjøre ved å saksøke staten, og om så prøve saken for <a href="http://no.wikipedia.org/wiki/Den_europeiske_menneskerettsdomstol">Den Europeiske Menneskerettsdomstolen</a>. De regner med å trenge minst to millioner for å gjennomføre dette, og har startet en <a href="http://www.digitaltpersonvern.no/bidra/">kronerulling</a> hvor alle kan bidra med små eller store beløp. Georg Apenes sier i et <a href="http://www.digi.no/884666/mangler-17-millioner-til-dld-rettssak">intervju</a> med digi.no at til tross for &#8220;høflige anmodninger til ressurssterke organisasjoner og individer&#8221; har responsen vært lunken og har fått avslag fra omtrent halvparten av de politiske partiene han har kontaktet. Det virker som noen har tatt av håndjerna på  Georg Apenes, for det virker som han har mer politisk slagkraft nå enn da han var direktør for Datatilsynet. Bare sjekk hvem han har med seg på laget: <a href="http://www.digitaltpersonvern.no/kontakt/">http://www.digitaltpersonvern.no/kontakt/</a></p>
<p>Til tross for at pengene trillet inn i  starten, har det nå begynt å stoppe opp, men de vil få en julepresang fra meg! <img src='http://arton.no/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<div id="attachment_476" class="wp-caption alignnone" style="width: 510px"><a href="http://arton.no/2011/12/08/er-du-i-mot-datalagringsdirektivet/dp_kamanje/" rel="attachment wp-att-476"><img class="size-full wp-image-476" title="Digital Personvern" src="http://arton.no/wp-content/uploads/2011/12/DP_kamanje.png" alt="Digital Personvern" width="500" height="707" /></a><p class="wp-caption-text">En av plakatene fra Digital Personverns kampanje</p></div>
]]></content:encoded>
			<wfw:commentRss>http://arton.no/2011/12/08/er-du-i-mot-datalagringsdirektivet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Goodbye, Lists&#8221; another discontinued service from Google</title>
		<link>http://arton.no/2011/11/25/goodbye-lists-another-discontinued-service-from-google/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=goodbye-lists-another-discontinued-service-from-google</link>
		<comments>http://arton.no/2011/11/25/goodbye-lists-another-discontinued-service-from-google/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 19:16:16 +0000</pubDate>
		<dc:creator>Thomas</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[shutdown]]></category>
		<category><![CDATA[Wave]]></category>

		<guid isPermaLink="false">http://arton.no/?p=470</guid>
		<description><![CDATA[It looks like Google is doing some house cleaning these days. Today I got an email from Google about the shutdown of Google Wave. Quote: &#8230; [Google] Wave service will be turned off on April 30, 2012. Now I just found this page about Google Bookmarks: Goodbye, Lists: FAQ &#8211; Bookmarks Help. Quote: Lists is [...]]]></description>
			<content:encoded><![CDATA[<p>It looks like Google is doing some house cleaning these days. Today I got an email from Google about the shutdown of Google Wave.</p>
<p>Quote:</p>
<blockquote><p>&#8230; [Google] Wave service will be turned off on April 30, 2012.</p></blockquote>
<p>Now I just found this page about Google Bookmarks: <a href="http://www.google.com/support/bookmarks/bin/answer.py?answer=2365222" target="_blank">Goodbye, Lists: FAQ &#8211; Bookmarks Help</a>.</p>
<p>Quote:</p>
<blockquote><p>Lists is being discontinued on December 19th, 2011.</p></blockquote>
<p>Well, it makes sense that they shut down services that is barely used. I hope that Google now keeps up the good work and is putting all their resources making Google&#8217;s core services even better. And I hope Google+ is one of those services!</p>
]]></content:encoded>
			<wfw:commentRss>http://arton.no/2011/11/25/goodbye-lists-another-discontinued-service-from-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

