]> pere.pagekite.me Git - homepage.git/blobdiff - blog/index.rss
Add missing dot.
[homepage.git] / blog / index.rss
index 7e34d8315711bbe8b67f096daadb7f38f6708858..11a0f0d17747d200dfb09f7aab9e55a89082c339 100644 (file)
                 <atom:link href="http://people.skolelinux.org/pere/blog/index.rss" rel="self" type="application/rss+xml" />
        
        <item>
-               <title>Automatically upgrading server firmware on Dell PowerEdge</title>
-               <link>http://people.skolelinux.org/pere/blog/Automatically_upgrading_server_firmware_on_Dell_PowerEdge.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatically_upgrading_server_firmware_on_Dell_PowerEdge.html</guid>
-                <pubDate>Mon, 21 Nov 2011 12:00:00 +0100</pubDate>
-               <description>&lt;p&gt;At work we have heaps of servers.  I believe the total count is
-around 1000 at the moment.  To be able to get help from the vendors
-when something go wrong, we want to keep the firmware on the servers
-up to date.  If the firmware isn&#39;t the latest and greatest, the
-vendors typically refuse to start debugging any problems until the
-firmware is upgraded.  So before every reboot, we want to upgrade the
-firmware, and we would really like everyone handling servers at the
-university to do this themselves when they plan to reboot a machine.
-For that to happen we at the unix server admin group need to provide
-the tools to do so.&lt;/p&gt;
-
-&lt;p&gt;To make firmware upgrading easier, I am working on a script to
-fetch and install the latest firmware for the servers we got.  Most of
-our hardware are from Dell and HP, so I have focused on these servers
-so far.  This blog post is about the Dell part.&lt;/P&gt;
-
-&lt;p&gt;On the Dell FTP site I was lucky enough to find
-&lt;a href=&quot;ftp://ftp.us.dell.com/catalog/Catalog.xml.gz&quot;&gt;an XML file&lt;/a&gt;
-with firmware information for all 11th generation servers, listing
-which firmware should be used on a given model and where on the FTP
-site I can find it.  Using a simple perl XML parser I can then
-download the shell scripts Dell provides to do firmware upgrades from
-within Linux and reboot when all the firmware is primed and ready to
-be activated on the first reboot.&lt;/p&gt;
-
-&lt;p&gt;This is the Dell related fragment of the perl code I am working on.
-Are there anyone working on similar tools for firmware upgrading all
-servers at a site?  Please get in touch and lets share resources.&lt;/p&gt;
-
-&lt;p&gt;&lt;pre&gt;
-#!/usr/bin/perl
-use strict;
-use warnings;
-use File::Temp qw(tempdir);
-BEGIN {
-    # Install needed RHEL packages if missing
-    my %rhelmodules = (
-        &#39;XML::Simple&#39; =&gt; &#39;perl-XML-Simple&#39;,
-        );
-    for my $module (keys %rhelmodules) {
-        eval &quot;use $module;&quot;;
-        if ($@) {
-            my $pkg = $rhelmodules{$module};
-            system(&quot;yum install -y $pkg&quot;);
-            eval &quot;use $module;&quot;;
-        }
-    }
-}
-my $errorsto = &#39;pere@hungry.com&#39;;
-
-upgrade_dell();
-
-exit 0;
-
-sub run_firmware_script {
-    my ($opts, $script) = @_;
-    unless ($script) {
-        print STDERR &quot;fail: missing script name\n&quot;;
-        exit 1
-    }
-    print STDERR &quot;Running $script\n\n&quot;;
-
-    if (0 == system(&quot;sh $script $opts&quot;)) { # FIXME correct exit code handling
-        print STDERR &quot;success: firmware script ran succcessfully\n&quot;;
-    } else {
-        print STDERR &quot;fail: firmware script returned error\n&quot;;
-    }
-}
-
-sub run_firmware_scripts {
-    my ($opts, @dirs) = @_;
-    # Run firmware packages
-    for my $dir (@dirs) {
-        print STDERR &quot;info: Running scripts in $dir\n&quot;;
-        opendir(my $dh, $dir) or die &quot;Unable to open directory $dir: $!&quot;;
-        while (my $s = readdir $dh) {
-            next if $s =~ m/^\.\.?/;
-            run_firmware_script($opts, &quot;$dir/$s&quot;);
-        }
-        closedir $dh;
-    }
-}
-
-sub download {
-    my $url = shift;
-    print STDERR &quot;info: Downloading $url\n&quot;;
-    system(&quot;wget --quiet \&quot;$url\&quot;&quot;);
-}
-
-sub upgrade_dell {
-    my @dirs;
-    my $product = `dmidecode -s system-product-name`;
-    chomp $product;
-
-    if ($product =~ m/PowerEdge/) {
-
-        # on RHEL, these pacakges are needed by the firwmare upgrade scripts
-        system(&#39;yum install -y compat-libstdc++-33.i686 libstdc++.i686 libxml2.i686 procmail&#39;);
-
-        my $tmpdir = tempdir(
-            CLEANUP =&gt; 1
-            );
-        chdir($tmpdir);
-        fetch_dell_fw(&#39;catalog/Catalog.xml.gz&#39;);
-        system(&#39;gunzip Catalog.xml.gz&#39;);
-        my @paths = fetch_dell_fw_list(&#39;Catalog.xml&#39;);
-        # -q is quiet, disabling interactivity and reducing console output
-        my $fwopts = &quot;-q&quot;;
-        if (@paths) {
-            for my $url (@paths) {
-                fetch_dell_fw($url);
-            }
-            run_firmware_scripts($fwopts, $tmpdir);
-        } else {
-            print STDERR &quot;error: Unsupported Dell model &#39;$product&#39;.\n&quot;;
-            print STDERR &quot;error: Please report to $errorsto.\n&quot;;
-        }
-        chdir(&#39;/&#39;);
-    } else {
-        print STDERR &quot;error: Unsupported Dell model &#39;$product&#39;.\n&quot;;
-        print STDERR &quot;error: Please report to $errorsto.\n&quot;;
-    }
-}
-
-sub fetch_dell_fw {
-    my $path = shift;
-    my $url = &quot;ftp://ftp.us.dell.com/$path&quot;;
-    download($url);
-}
-
-# Using ftp://ftp.us.dell.com/catalog/Catalog.xml.gz, figure out which
-# firmware packages to download from Dell.  Only work for Linux
-# machines and 11th generation Dell servers.
-sub fetch_dell_fw_list {
-    my $filename = shift;
-
-    my $product = `dmidecode -s system-product-name`;
-    chomp $product;
-    my ($mybrand, $mymodel) = split(/\s+/, $product);
-
-    print STDERR &quot;Finding firmware bundles for $mybrand $mymodel\n&quot;;
-
-    my $xml = XMLin($filename);
-    my @paths;
-    for my $bundle (@{$xml-&gt;{SoftwareBundle}}) {
-        my $brand = $bundle-&gt;{TargetSystems}-&gt;{Brand}-&gt;{Display}-&gt;{content};
-        my $model = $bundle-&gt;{TargetSystems}-&gt;{Brand}-&gt;{Model}-&gt;{Display}-&gt;{content};
-        my $oscode;
-        if (&quot;ARRAY&quot; eq ref $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}) {
-            $oscode = $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}[0]-&gt;{osCode};
-        } else {
-            $oscode = $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}-&gt;{osCode};
-        }
-        if ($mybrand eq $brand &amp;&amp; $mymodel eq $model &amp;&amp; &quot;LIN&quot; eq $oscode)
-        {
-            @paths = map { $_-&gt;{path} } @{$bundle-&gt;{Contents}-&gt;{Package}};
-        }
-    }
-    for my $component (@{$xml-&gt;{SoftwareComponent}}) {
-        my $componenttype = $component-&gt;{ComponentType}-&gt;{value};
-
-        # Drop application packages, only firmware and BIOS
-        next if &#39;APAC&#39; eq $componenttype;
-
-        my $cpath = $component-&gt;{path};
-        for my $path (@paths) {
-            if ($cpath =~ m%/$path$%) {
-                push(@paths, $cpath);
-            }
-        }
-    }
-    return @paths;
-}
-&lt;/pre&gt;
-
-&lt;p&gt;The code is only tested on RedHat Enterprise Linux, but I suspect
-it could work on other platforms with some tweaking.  Anyone know a
-index like Catalog.xml is available from HP for HP servers?  At the
-moment I maintain a similar list manually and it is quickly getting
-outdated.&lt;/p&gt;
-</description>
-       </item>
-       
-       <item>
-               <title>Støtt Digitalt Personvern!</title>
-               <link>http://people.skolelinux.org/pere/blog/St_tt_Digitalt_Personvern_.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/St_tt_Digitalt_Personvern_.html</guid>
-                <pubDate>Wed, 9 Nov 2011 22:10:00 +0100</pubDate>
-               <description>&lt;p&gt;Datalagringsdirektivet er et grotesk angrep på rettsstaten og da
-det ble vedtatt i Stortinget ble det klart at alle som mener det
-liberale demokrati bør forsvares måtte stå sammen for å kjempe tilbake
-de totalitære strømninger i landet.  Jeg ble derfor glad over å se at
-den nyopprettede foreningen Digitalt Personvern startet innsamling
-2011-10-18 for å gå til sak for å få prøvd lovligheten av direktivet.
-Direktivet er så langt prøvd for retten i flere land, blant annet
-Tsjekkia, Romania og Tyskland, og så vidt jeg vet har det hver gang
-blitt kjent ulovlig av høyesterett eller forfatningsdomstolen i
-landene.  Jeg håper og tror det samme vil skje her i Norge.&lt;/p&gt;
-
-&lt;p&gt;Men for å finne ut av det må det finansiering til.  Foreningen
-Digitalt Personvern tror det trengs minst 2 millioner kroner for å gå
-til sak og følge saken helt til ende, og i går fikk jeg endelig tid
-til å overføre min skjerv.  Jeg har overført 3000,- til kampanjen, og
-oppfordrer hver og en av mine lesere å overføre minst like mye.&lt;/p&gt;
-
-&lt;p&gt;Besøk
-&lt;a href=&quot;http://www.digitaltpersonvern.no/bidra/&quot;&gt;donasjonssiden&lt;/a&gt;
-til Digitalt Personvern for å finne kontonummer som kan brukes for å
-bidra.&lt;/p&gt;
-
-&lt;p&gt;Jeg rekker ikke skrive så mye om hvorfor datalagringsdirektivet må
-stoppes, så jeg nøyer meg denne gangen med en liten liste med lenker
-til aktuelle artikler og innlegg om temaet.&lt;/p&gt;
-
-&lt;ul&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.uhuru.biz/?p=662&quot;&gt;Skal Telenor forsvare statens
-  bevisregister i retten?&lt;/a&gt; - bloggen til Jon Wessel-Aas,
-  bidragsyter til foreningen Digitalt Personvern&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://voxpublica.no/2011/10/varslere-bør-støtte-kampanjen-digital-personvern/&quot;&gt;Varslere
-  bør støtte kampanjen Digitalt Personvern&lt;/a&gt; - Vox Publica&lt;/li&gt;
+               <title>HTC One X - Your video?  What do you mean?</title>
+               <link>http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html</guid>
+                <pubDate>Thu, 26 Apr 2012 13:20:00 +0200</pubDate>
+               <description>&lt;p&gt;In &lt;a href=&quot;http://www.idg.no/computerworld/article243690.ece&quot;&gt;an
+article today&lt;/a&gt; published by Computerworld Norway, the photographer
+&lt;a href=&quot;http://www.urke.com/eirik/&quot;&gt;Eirik Helland Urke&lt;/a&gt; reports
+that the video editor application included with
+&lt;a href=&quot;http://www.htc.com/www/smartphones/htc-one-x/#specs&quot;&gt;HTC One
+X&lt;/a&gt; have some quite surprising terms of use.  The article is mostly
+based on the twitter message from mister Urke, stating:
 
-&lt;li&gt;&lt;a href=&quot;http://www.digi.no/880520/georg-apenes-starter-%ABdigitalt-personvern%BB&quot;&gt;Georg
-  Apenes starter «Digitalt personvern»&lt;/a&gt; - Digi.no&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://blogg.abrenna.com/foredrag-om-digitalt-personvern/&quot;&gt;Foredrag
-  om Digitalt Personvern&lt;/a&gt; - bloggen til Anders Brenna, styremedlem
-  i foreningen Digitalt Personvern&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.nationen.no/2011/10/17/politikk/datalagringsdirektivet/eu/eu-direktiv/regjeringen/6990171/&quot;&gt;Organisasjon
-  vil prøve datalagringsdirektivet for retten&lt;/a&gt; - artikkel i Nationen&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://people.skolelinux.org/pere/blog/Martin_Bekkelund__En_stille_b_nn_om_Datalagringsdirektivet.html&quot;&gt;Martin
-  Bekkelund: En stille bønn om Datalagringsdirektivet&lt;/a&gt; - min
-  blogg&lt;/li&gt;
+&lt;p&gt;&lt;blockquote&gt;
+&quot;&lt;a href=&quot;http://twitter.com/urke/status/194062269724897280&quot;&gt;Drøy
+brukeravtale: HTC kan bruke MINE redigerte videoer kommersielt. Selv
+kan jeg KUN bruke dem privat&lt;/a&gt;&quot;
+&lt;/blockquote&gt;&lt;/p&gt;
 
-&lt;li&gt;&lt;a href=&quot;http://tversover.wordpress.com/2011/10/21/digitalt-personvern-i-praksis/&quot;&gt;Digitalt
-  personvern i praksis&lt;/a&gt; - bloggen til Espen Andersen&lt;/li&gt;
+&lt;p&gt;I quickly translated it to this English message:&lt;/p&gt;
 
-&lt;li&gt;&lt;a href=&quot;http://www.dagbladet.no/2011/10/22/kultur/data_og_teknologi/datalagringsdirektivet/tekno/personvern/18692696/&quot;&gt;Tar
-  kampen for personvernet til rettsalen&lt;/a&gt; - Dagbladet&lt;/li&gt;
+&lt;p&gt;&lt;blockquote&gt;
+&quot;Arrogant user agreement: HTC can use MY edited videos
+commercially.  Although I can ONLY use them privately.&quot;
+&lt;/blockquote&gt;&lt;/p&gt;
 
-&lt;/ul&gt;
+&lt;p&gt;I&#39;ve been unable to find the text of the license term myself, but
+suspect it is a variation of the MPEG-LA terms I
+&lt;a href=&quot;http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html&quot;&gt;discovered
+with my Canon IXUS 130&lt;/a&gt;.  The HTC One X specification specifies that
+the recording format of the phone is .amr for audio and .mp3 for
+video.  AMR is
+&lt;a href=&quot;http://en.wikipedia.org/wiki/Adaptive_Multi-Rate_audio_codec#Licensing_and_patent_issues&quot;&gt;Adaptive
+Multi-Rate audio codec&lt;/a&gt; with patents which according to the
+Wikipedia article require an license agreement with
+&lt;a href=&quot;http://www.voiceage.com/&quot;&gt;VoiceAge&lt;/a&gt;.  MP4 is
+&lt;a href=&quot;http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Patent_licensing&quot;&gt;MPEG4 with
+H.264&lt;/a&gt;, which according to Wikipedia require a licence agreement
+with &lt;a href=&quot;http://www.mpegla.com/&quot;&gt;MPEG-LA&lt;/a&gt;.&lt;/p&gt;
+
+&lt;p&gt;I know why I prefer
+&lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and open
+standards&lt;/a&gt; also for video.&lt;/p&gt;
 </description>
        </item>
        
        <item>
-               <title>Hvordan enkelt laste ned filmer fra NRK</title>
-               <link>http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK.html</guid>
-                <pubDate>Sat, 5 Nov 2011 15:20:00 +0100</pubDate>
-               <description>&lt;p&gt;Ofte har jeg lyst til å laste ned et innslag fra NRKs nettsted for
-å se det senere når jeg ikke er på nett, eller for å ha det
-tilgjengelig når jeg en gang i fremtiden ønsker å referere til
-innslaget selv om NRK har fjernet det fra sine nettsider.  I dag fant
-jeg et lite script som fikser jobben.&lt;/p&gt;
-
-&lt;p&gt;Scriptet er laget av Jan Henning Thorsen og tilgjengelig fra
-&lt;a href=&quot;http://jhthorsen.github.com/snippets/nrk-downloader/&quot;&gt;github&lt;/a&gt;,
-og gjør det veldig enkelt å laste ned.  Kjør &lt;tt&gt;nrk-downloader.sh
-http://www1.nrk.no/nett-tv/klipp/582810&lt;/tt&gt; for å hente ned et enkelt
-innslag eller &lt;tt&gt;nrk-downloader.sh
-http://www1.nrk.no/nett-tv/kategori/3521&lt;/tt&gt; for å laste ned alle
-episodene i en serie.&lt;/p&gt;
-
-&lt;p&gt;Det er ikke rakettforskning å laste ned NRK-&quot;strømmer&quot;, og
-tidligere gjorde jeg dette manuelt med mplayer.  Scriptet til
-Hr. Thorsen gjør det raskere og enklere for meg, men jeg vil ikke si
-at det er en revolusjonerende løsning.  Jeg mener jo fortsatt at
-påstanden fra NRKs ansatte om at det er
-&lt;a href=&quot;http://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html&quot;&gt;vesensforskjellig
-å legge tilgjengelig for nedlasting og for streaming&lt;/a&gt; er
-meningsløs.&lt;/p&gt;
+               <title>Holder de ord og NUUG lanserer testtjeneste med stortingsinformasjon</title>
+               <link>http://people.skolelinux.org/pere/blog/Holder_de_ord_og_NUUG_lanserer_testtjeneste_med_stortingsinformasjon.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Holder_de_ord_og_NUUG_lanserer_testtjeneste_med_stortingsinformasjon.html</guid>
+                <pubDate>Sun, 22 Apr 2012 15:45:00 +0200</pubDate>
+               <description>&lt;p&gt;I
+&lt;a href=&quot;http://people.skolelinux.org/pere/blog/Hva_har_mine_representanter_stemt_i_Storinget_.html&quot;&gt;januar
+i fjor&lt;/a&gt; startet vi i NUUG arbeid med å gjøre informasjon om hvem
+som har stemt hva på &lt;a href=&quot;http://www.stortinget.no/&quot;&gt;Stortinget&lt;/a&gt;
+enklere tilgjengelig.  I løpet av få måneder fant vi sammen med
+organisasjonen &lt;a href=&quot;http://www.holderdeord.no/&quot;&gt;Holder de ord&lt;/a&gt;
+som arbeidet mot et lignende mål.&lt;/p&gt;
+
+&lt;p&gt;Siden den gang har vi fått tak i maskinelt lesbart informasjon om
+hvem som stemte hva mellom 1990 og våren 2010, og tilgang til
+stortingets nye datatjeneste som har informasjon fra høsten 2011 til i
+dag.  Det gjenstår litt arbeid med det første datasettet, men
+datasettet fra høsten 2011 er klart til bruk.  Begge datasettene er
+tilgjengelig &lt;a href=&quot;https://gitorious.org/nuug/folketingparser&quot;&gt;via
+git&lt;/a&gt;.&lt;/p&gt;
+
+&lt;p&gt;På
+&lt;a href=&quot;http://www.goopen.no/holder-de-ord-datadrevet-oppfolging-av-politiske-lofter/&quot;&gt;Go Open&lt;/a&gt; i morgen lanserer
+NUUG sammen med Holder de ord &lt;a href=&quot;http://beta.holderdeord.no/&quot;&gt;en
+test-tjeneste&lt;/a&gt; som viser hva som er og blir behandlet på Stortinget og
+hvem som har stemt hva siden oktober i fjor.  Du får herved mulighet
+til å ta en sniktitt.&lt;/p&gt;
 </description>
        </item>
        
        <item>
-               <title>40 kommuner lenker nå til FiksGataMi fra sine nettsider - gjør din?</title>
-               <link>http://people.skolelinux.org/pere/blog/40_kommuner_lenker_n__til_FiksGataMi_fra_sine_nettsider___gj_r_din_.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/40_kommuner_lenker_n__til_FiksGataMi_fra_sine_nettsider___gj_r_din_.html</guid>
-                <pubDate>Fri, 28 Oct 2011 10:00:00 +0200</pubDate>
-               <description>&lt;p&gt;Siden lansering av NUUGs tjeneste
-&lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt;, en tjeneste for å
-gjøre det enkelt for innbyggerne og rapportere og holde rede på status
-for rapporter om problemer med offentlig infrastruktur, har tusenvis
-av innbyggere bidratt med meldinger.  Og spesielt gledelig er det at
-det at de fleste i offentlige selv ser verdien av tjenesten.  For noen
-dager siden oppdaget jeg nok en kommune som hadde lagt inn lenke til
-FiksGataMi fra forsiden sine nettsider, og slik omfavnet tjenesten som
-sin egen.  Det er dermed 40 kommuner som lenker til FiksGataMi, og det
-utgjør nesten 10 prosent av kommunene i Norge. :)&lt;/p&gt;
-
-&lt;p&gt;Det gjelder så langt Askøy kommune, Audnedal kommune, Aure kommune,
-Bærum kommune, Farsund kommune, Flekkefjord kommune, Folldal kommune,
-Grue kommune, Hadsel kommune, Hamar, Hægebostad kommune, Kongsberg
-kommune, Kristiansund kommune, Kvinesdal kommune, Kviteseid kommune,
-Levanger kommune, Lindesnes kommune, Lyngdal kommune, Lørenskog
-kommune, Løten kommune, Mandal kommune, Marnardal kommune, Moss
-kommune, Namsos kommune, Nissedal kommune, Sirdal kommune, Spydeberg
-kommune, Stjørdal kommune, Stord kommune, Søgne kommune, Sør-Odal
-kommune, Tolga kommune, Tynset kommune, Tysvær kommune, Ullensvang
-Herad, Vennesla kommune, Verdal kommune, Vågan kommune, Vågå kommune
-og Åseral kommune.  Hvis din kommune ikke er på listen, hva med å
-sende dem en epost og foreslå at de også lenker til FiksGataMi?&lt;/p&gt;
-
-&lt;p&gt;Her er et generalisert eksempel til meldingen kan sende til sin
-kommune basert på en epost utvikleren Ørjan Vøllestad sendte til sin
-kommune og som fikk kommunen til å lenke til FiksGataMi:&lt;/p&gt;
-
-&lt;p&gt;&lt;blockquote&gt;
-&lt;pre&gt;
-Subject: Gjøre FiksGataMi tilgjengelig fra kommune websiden
-To: kontakt@min.kommune.no
-
-Hei,
-
-Jeg bor i Min kommune og lurte på om Min kommune kunne lagt en link
-til FiksGataMi på forsiden, lett tilgjengelig slik andre kommuner har
-gjort. Se eksempler under på hvordan det er gjort tilgjengelig og en
-liste over kommuner som har tilgjengeliggjort fiksgatami.no fra
-kommune-siden.
-
-Hvis det ikke er ønskelig, ønsker jeg en tilbakemelding på hvorfor
-ikke. Jeg liker fiksgatami og synes tjenesten er super og gjør det
-lettere for kommuner å følge opp innmeldte saker fra innbyggerne.
-
-Se &lt;a href=&quot;http://wiki.nuug.no/grupper/fiksgatami/tips&quot;&gt;http://wiki.nuug.no/grupper/fiksgatami/tips&lt;/a&gt; for spørsmål og svar mellom
-andre kommuner og fiksgatami.
-Se hovedsiden for tjenesten, &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;http://www.fiksgatami.no/&lt;/a&gt;
-De har allerede en Android applikasjon som kan promoteres,
-&lt;a href=&quot;https://market.android.com/details?id=no.fiksgatami&quot;&gt;https://market.android.com/details?id=no.fiksgatami&lt;/a&gt;
-
-F.eks. &lt;a href=&quot;http://www.mandal.kommune.no/&quot;&gt;Mandal&lt;/a&gt; har lenke til FiksGataMi på alle sine sider under
-overskriften &quot;Min side / Selvbetjening&quot;.
-
-Mange andre kommuner har også omfavnet FiksGataMi, og lenket inn til
-tjenesten fra sine sider. Det gjelder så langt:
-
-   1. Askøy kommune, https://www.askoy.kommune.no/
-   2. Audnedal kommune, http://www.audnedal.kommune.no/
-   3. Aure kommune, http://www.aure.kommune.no/
-   4. Bærum kommune, https://www.baerum.kommune.no/
-   5. Farsund kommune, http://www.farsund.kommune.no/
-   6. Flekkefjord kommune, http://www.flekkefjord.kommune.no/
-   7. Folldal kommune, http://folldal.kommune.no/
-   8. Grue kommune, http://www.grue.kommune.no/
-   9. Hadsel kommune, http://www.hadsel.kommune.no/
-  10. Hamar, http://www.hamar.kommune.no/category.php?categoryID=1198
-  11. Hægebostad kommune, http://www.haegebostad.kommune.no/
-  12. Kongsberg kommune, http://www.kongsberg.kommune.no/
-  13. Kristiansund kommune, http://www.kristiansund.kommune.no/
-  14. Kvinesdal kommune, http://www.kvinesdal.kommune.no/
-  15. Kviteseid kommune, http://www.kviteseid.kommune.no/
-  16. Levanger kommune, http://www.levanger.kommune.no/
-  17. Lindesnes kommune, http://www.lindesnes.kommune.no/
-  18. Lyngdal kommune, http://www.lyngdal.kommune.no/
-  19. Lørenskog kommune, http://www.lorenskog.kommune.no/
-  20. Løten kommune, http://www.loten.kommune.no/
-  21. Mandal kommune, http://www.mandal.kommune.no/
-  22. Marnardal kommune, http://www.marnardal.kommune.no/
-  23. Moss kommune, http://www.moss.kommune.no/
-  24. Namsos kommune, http://www.namsos.kommune.no/
-  25. Nissedal kommune,
-      http://www.nissedal.kommune.no/Tenester/Lokalt/Trygge%20Nissedal.aspx
-  26. Sirdal kommune, http://sirdal.kommune.be/
-  27. Spydeberg kommune, http://www.spydeberg.kommune.no/
-  28. Stjørdal kommune, https://www.stjordal.kommune.no/
-  29. Stord kommune, http://www.stord.kommune.no/
-  30. Søgne kommune, http://www.sogne.kommune.no/
-  31. Sør-Odal kommune, http://www.sor-odal.kommune.no/
-  32. Tolga kommune, http://tolga.kommune.no/
-  33. Tynset kommune, http://www.tynset.kommune.no/
-  34. Tysvær kommune, http://www.tysver.kommune.no/
-  35. Ullensvang Herad,
-      http://www.ullensvang.herad.no/index.php?option=com_content&amp;view=article&amp;id=184:fiksgatami&amp;catid=1:naering-og-utvikling&amp;Itemid=174
-  36. Vennesla kommune, http://www.vennesla.kommune.no/
-  37. Verdal kommune, http://www.verdal.kommune.no/
-  38. Vågan kommune, http://www.vagan.kommune.no/
-  39. Vågå kommune, http://www.vaga.kommune.no/
-  40. Åseral kommune, http://www.aseral.kommune.no/
-&lt;/pre&gt;
-&lt;/blockquote&gt;&lt;/p&gt;
-
-&lt;p&gt;Ellers kan jeg melde at FiksGataMi har fått støtte for å rapportere
-inn via &lt;a href=&quot;http://www.open311.org/&quot;&gt;Open311&lt;/a&gt;-grensesnittet i
-tillegg til å bruke epost.  Det betyr at hvis det offentlige
-implementerer Open311-grensesnitt på sin interne database for å
-håndtere henvendelser, så kan FiksGataMi-rapporterer sendes direkte
-dit uten å gå via epost.  Det kan spare litt arbeidstid hos kommuner,
-fylker og vegvesen.  Støtten er utviklet av
-&lt;a href=&quot;http://www.mysociety.org/&quot;&gt;mySociety&lt;/a&gt; i England og allerede
-i bruk der.  Vi håper en norsk etat melder sin interesse for å bruke
-Open311 og dermed slippe å håndtere meldingene som epost.&lt;/p&gt;
+               <title>RAND terms - non-reasonable and discriminatory</title>
+               <link>http://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html</guid>
+                <pubDate>Thu, 19 Apr 2012 22:20:00 +0200</pubDate>
+               <description>&lt;p&gt;Here in Norway, the
+&lt;a href=&quot;http://www.regjeringen.no/nb/dep/fad.html?id=339&quot;&gt; Ministry of
+Government Administration, Reform and Church Affairs&lt;/a&gt; is behind
+a &lt;a href=&quot;http://standard.difi.no/forvaltningsstandarder&quot;&gt;directory of
+standards&lt;/a&gt; that are recommended or mandatory for use by the
+government.  When the directory was created, the people behind it made
+an effort to ensure that everyone would be able to implement the
+standards and compete on equal terms to supply software and solutions
+to the government.  Free software and non-free software could compete
+on the same level.&lt;/p&gt;
+
+&lt;p&gt;But recently, some standards with RAND
+(&lt;a href=&quot;http://en.wikipedia.org/wiki/Reasonable_and_non-discriminatory_licensing&quot;&gt;Reasonable
+And Non-Discriminatory&lt;/a&gt;) terms have made their way into the
+directory.  And while this might not sound too bad, the fact is that
+standard specifications with RAND terms often block free software from
+implementing them.  The reasonable part of RAND mean that the cost per
+user/unit is low,and the non-discriminatory part mean that everyone
+willing to pay will get a license.  Both sound great in theory.  In
+practice, to get such license one need to be able to count users, and
+be able to pay a small amount of money per unit or user.  By
+definition, users of free software do not need to register their use.
+So counting users or units is not possible for free software projects.
+And given that people will use the software without handing any money
+to the author, it is not really economically possible for a free
+software author to pay a small amount of money to license the rights
+to implement a standard when the income available is zero.  The result
+in these situations is that free software are locked out from
+implementing standards with RAND terms.&lt;/p&gt;
+
+&lt;p&gt;Because of this, when I see someone claiming the terms of a
+standard is reasonable and non-discriminatory, all I can think of is
+how this really is non-reasonable and discriminatory.  Because free
+software developers are working in a global market, it does not really
+help to know that software patents are not supposed to be enforceable
+in Norway.  The patent regimes in other countries affect us even here.
+I really hope the people behind the standard directory will pay more
+attention to these issues in the future.&lt;/p&gt;
+
+&lt;p&gt;You can find more on the issues with RAND, FRAND and RAND-Z terms
+from Simon Phipps
+(&lt;a href=&quot;http://blogs.computerworlduk.com/simon-says/2010/11/rand-not-so-reasonable/&quot;&gt;RAND:
+Not So Reasonable?&lt;/a&gt;).&lt;/p&gt;
+
+&lt;p&gt;Update 2012-04-21: Just came across a
+&lt;a href=&quot;http://blogs.computerworlduk.com/open-enterprise/2012/04/of-microsoft-netscape-patents-and-open-standards/index.htm&quot;&gt;blog
+post from Glyn Moody&lt;/a&gt; over at Computer World UK warning about the
+same issue, and urging people to speak out to the UK government.  I
+can only urge Norwegian users to do the same for
+&lt;a href=&quot;http://www.standard.difi.no/hoyring/hoyring-om-nye-anbefalte-it-standarder&quot;&gt;the
+hearing taking place at the moment&lt;/a&gt; (respond before 2012-04-27).
+It proposes to require video conferencing standards including
+specifications with RAND terms.&lt;/p&gt;
 </description>
        </item>
        
        <item>
-               <title>Free e-book kiosk for the public libraries?</title>
-               <link>http://people.skolelinux.org/pere/blog/Free_e_book_kiosk_for_the_public_libraries_.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_e_book_kiosk_for_the_public_libraries_.html</guid>
-                <pubDate>Fri, 7 Oct 2011 19:20:00 +0200</pubDate>
-               <description>&lt;p&gt;Here in Norway the public libraries are debating with the
-publishing houses how to handle electronic books.  Surprisingly, the
-libraries seem to be willing to accept digital restriction mechanisms
-(DRM) on books and renting e-books with artificial scarcity from the
-publishing houses.  Time limited renting (2-3 years) is one proposed
-model, and only allowing X borrowers for each book is another.
-Personally I find it amazing that libraries are even considering such
-models.&lt;/p&gt;
-
-&lt;p&gt;Anyway, while reading &lt;a href=&quot;http://boklaben.no/?p=220&quot;&gt;part of
-this debate&lt;/a&gt;, it occurred to me that someone should present a more
-sensible approach to the libraries, to allow its borrowers to get used
-to a better model.  The idea is simple:&lt;/p&gt;
-
-&lt;p&gt;Create a computer system for the libraries, either in the form of a
-Live DVD or a installable distribution, that provide a simple kiosk
-solution to hand out free e-books.  As a start, the books distributed
-by &lt;a href=&quot;http://www.gutenberg.org/&quot;&gt;Project Gutenberg&lt;/a&gt; (abount
-36,000 books), &lt;a href=&quot;http://runeberg.org/&quot;&gt;Project Runenberg&lt;/a&gt;
-(1149 books) and &lt;a href=&quot;http://www.archive.org/details/texts&quot;&gt;The
-Internet Archive&lt;/a&gt; (3,033,748 books) could be included, but any book
-where the copyright has expired or with a free licence could be
-distributed.&lt;/p&gt;
-
-&lt;p&gt;The computer system would make it easy to:&lt;/p&gt;
-
-&lt;ul&gt;
+               <title>Forskning: &quot;GPL gir lokal frihet og kontroll gjennom omfordeling av makt fra produsent til bruker&quot;</title>
+               <link>http://people.skolelinux.org/pere/blog/Forskning___GPL_gir_lokal_frihet_og_kontroll_gjennom_omfordeling_av_makt_fra_produsent_til_bruker_.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Forskning___GPL_gir_lokal_frihet_og_kontroll_gjennom_omfordeling_av_makt_fra_produsent_til_bruker_.html</guid>
+                <pubDate>Sun, 15 Apr 2012 13:00:00 +0200</pubDate>
+               <description>&lt;p&gt;Da jeg googlet etter noe annet kom jeg tilfeldigvis over
+&lt;a href=&quot;http://www.duo.uio.no/sok/work.html?WORKID=58309&quot;&gt;en
+hovedfagsoppgave&lt;/a&gt; ved Universitetet i Oslo som diskuterer verdien
+av GPLs fire friheter for brukerne av IT-systemer.  Jeg ble fascinert
+over det som presenteres der.  Her er sammendraget:&lt;/p&gt;
 
-&lt;li&gt;Copy e-books into a USB stick, reading tablets, cell phones and
-  other relevant equipment.&lt;/li&gt;
+&lt;p&gt;&lt;blockquote&gt;
 
-&lt;li&gt;Show the books for reading on the the screen in the library.&lt;/li&gt;
+&lt;p&gt;Motivasjonen til å skrive denne oppgaven er en personlig undring
+over hvorfor det primært, og ofte eksklusivt, fokuseres på det
+økonomiske aspektet ved utredninger om fri programvare er et godt valg
+for det offentlige. Fri og produsenteid programvare bygger på
+fundamentalt forskjellige ideologier som kan ha implikasjoner utover
+økonomiske kostnader. Kunnskapskulturen som er med på å definere fri
+programvare er basert på åpenhet, og er en verdi i seg selv.&lt;/p&gt;
+
+&lt;p&gt;Oppgavens tema er programvarelisensen GPL og frihet. GPL-lisensiert
+programvare gir visse friheter i forhold til produsenteid
+programvare. Mitt spørsmål er om, og eventuelt i hvilken utstrekning,
+disse frihetene blir benyttet av ulike brukere og hvordan de
+manifesterer seg for disse brukerne. Sentrale spørsmål i oppgaven
+er:&lt;/p&gt;
 
+&lt;ul&gt;
+&lt;li&gt;Hvordan fordeles handlekraft gjennom lisensieringen av programvaren?&lt;/li&gt;
+&lt;li&gt;Hvilke konsekvenser har programvarelisensen for de ulike brukere? &lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;p&gt;In addition to such kiosk solution, there should probably be a web
-site as well to allow people easy access to these books without
-visiting the library.  The site would be the distribution point for
-the kiosk systems, which would connect regularly to fetch any new
-books available.&lt;/p&gt;
+&lt;p&gt;Fri programvare gir blant annet brukeren mulighet til å studere og
+modifisere kildekoden. Denne formen for frihet erverves gjennom
+kunnskap og krever at brukeren også er en ekspert. Hva skjer med
+frihetene til GPL når sluttbrukeren er en annen? Dette diskuteres i
+dialog med informantene.&lt;/p&gt;
+
+&lt;p&gt;Jeg har i denne oppgaven samlet inn intervjudata fra IKT-ansvarlige
+ved grunnskolene i Nittedal kommune, driftsansvarlig og IKT-veilederen
+for skolene i kommunen, samt IKT-koordinator for utdanning i Akershus
+fylkeskommune og bokmåloversettere av OpenOffice.org. Den empiriske
+delen av oppgaven er delt inn i to seksjoner; den første omhandler
+operativsystemet Skolelinux, den andre kontorprogrampakken
+OpenOffice.org.&lt;/p&gt;
+
+&lt;p&gt;Som vi vil se gir GPL lokal frihet og kontroll gjennom omfordeling
+av makt fra produsent til bruker. Brukerens makt analyseres gjennom
+begrepene brukermedvirkning og handlingsfrihet. Det blir også lagt
+vekt på strukturelle forhold rundt bruken av teknologi, og spesielt de
+økonomiske begrepene nettverkseksternaliteter, innlåsing og
+stiavhengighet. Dette er begreper av spesiell nytte når objektet som
+omsettes eller distribueres er et kommunikasjonsprodukt, fordi verdien
+til et slikt gode for en potensiell bruker avhenger av antall
+eksisterende brukere av godet. I tilknytning til denne problematikken
+inneholder oppgaven også en diskusjon rundt åpne standarder og
+formater.&lt;/p&gt;
+
+&lt;p&gt;Oppgaven konkluderer med at de «fire frihetene» som GPL-lisensen er
+laget for å beskytte er av avgjørende betydning for bruken av
+OpenOffice.org og Skolelinux, i Akershus fylkeskommune såvel som i
+skolene i Nittedal. Distribusjonen av handlekraft er ikke helt
+symmetrisk. Det er først og fremst de profesjonelle utviklerne i
+Skolelinux som direkte kan nyttiggjøre seg friheten til å endre kode,
+mens en sluttbruker som Nittedal kommune nyttiggjør seg den økonomiske
+friheten til å kunne distribuere programmene. Det er imidlertid også
+slik at ingen aktør klarer seg uten alle disse «frihetene».&lt;/p&gt;
+&lt;/blockquote&gt;&lt;/p&gt;
+
+&lt;p&gt;Jeg fant også en masteroppgave fra 2006, men der ligger ikke
+komplett oppgave tilgjengelig.  På tide å holde et øye med
+&lt;a href=&quot;http://www.duo.uio.no/sok/search.html?q=skolelinux&quot;&gt;Skolelinux-søket&lt;/a&gt;
+til DUO...&lt;/p&gt;
 
-&lt;p&gt;Are there anyone working on a system like this?  I guess it would
-fit any library in the world, and not just the Norwegian public
-libraries. :)&lt;/p&gt;
 </description>
        </item>
        
        <item>
-               <title>Ripping problematic DVDs using dvdbackup and genisoimage</title>
-               <link>http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html</guid>
-                <pubDate>Sat, 17 Sep 2011 20:20:00 +0200</pubDate>
-               <description>&lt;p&gt;For convenience, I want to store copies of all my DVDs on my file
-server.  It allow me to save shelf space flat while still having my
-movie collection easily available.  It also make it possible to let
-the kids see their favourite DVDs without wearing the physical copies
-down.  I prefer to store the DVDs as ISOs to keep the DVD menu and
-subtitle options intact.  It also ensure that the entire film is one
-file on the disk.  As this is for personal use, the ripping is
-perfectly legal here in Norway.&lt;/p&gt;
-
-&lt;p&gt;Normally I rip the DVDs using dd like this:&lt;/p&gt;
-
-&lt;blockquote&gt;&lt;pre&gt;
-#!/bin/sh
-# apt-get install lsdvd
-title=$(lsdvd 2&gt;/dev/null|awk &#39;/Disc Title: / {print $3}&#39;)
-dd if=/dev/dvd of=/storage/dvds/$title.iso bs=1M
-&lt;/pre&gt;&lt;/blockquote&gt;
-
-&lt;p&gt;But some DVDs give a input/output error when I read it, and I have
-been looking for a better alternative.  I have no idea why this I/O
-error occur, but suspect my DVD drive, the Linux kernel driver or
-something fishy with the DVDs in question.  Or perhaps all three.&lt;/p&gt;
-
-&lt;p&gt;Anyway, I believe I found a solution today using dvdbackup and
-genisoimage.  This script gave me a working ISO for a problematic
-movie by first extracting the DVD file system and then re-packing it
-back as an ISO.
-
-&lt;blockquote&gt;&lt;pre&gt;
-#!/bin/sh
-# apt-get install lsdvd dvdbackup genisoimage
-set -e
-tmpdir=/storage/dvds/
-title=$(lsdvd 2&gt;/dev/null|awk &#39;/Disc Title: / {print $3}&#39;)
-dvdbackup -i /dev/dvd -M -o $tmpdir -n$title
-genisoimage -dvd-video -o $tmpdir/$title.iso $tmpdir/$title
-rm -rf $tmpdir/$title
-&lt;/pre&gt;&lt;/blockquote&gt;
-
-&lt;p&gt;Anyone know of a better way available in Debian/Squeeze?&lt;/p&gt;
-
-&lt;p&gt;Update 2011-09-18: I got a tip from Konstantin Khomoutov about the
-readom program from the wodim package.  It is specially written to
-read optical media, and is called like this: &lt;tt&gt;readom dev=/dev/dvd
-f=image.iso&lt;/tt&gt;.  It got 6 GB along with the problematic Cars DVD
-before it failed, and failed right away with a Timmy Time DVD.&lt;/p&gt;
-
-&lt;p&gt;Next, I got a tip from Bastian Blank about
-&lt;a href=&quot;http://bblank.thinkmo.de/blog/new-software-python-dvdvideo&quot;&gt;his
-program python-dvdvideo&lt;/a&gt;, which seem to be just what I am looking
-for.  Tested it with my problematic Timmy Time DVD, and it succeeded
-creating a ISO image.  The git source built and installed just fine in
-Squeeze, so I guess this will be my tool of choice in the future.&lt;/p&gt;
+               <title>Debian Edu interview: Andreas Mundt</title>
+               <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Andreas_Mundt.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Andreas_Mundt.html</guid>
+                <pubDate>Sun, 15 Apr 2012 12:10:00 +0200</pubDate>
+               <description>&lt;p&gt;Behind &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
+Skolelinux&lt;/a&gt; there are a lot of people doing the hard work of
+setting together all the pieces.  This time I present to you Andreas
+Mundt, who have been part of the technical development team several
+years.  He was also a key contributor in getting GOsa and Kerberos set
+up in the recently released
+&lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;Debian
+Edu Squeeze&lt;/a&gt; version.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;My name is Andreas Mundt, I grew up in south Germany.  After
+studying Physics I spent several years at university doing research in
+Quantum Optics.  After that I worked some years in an optics company.
+Finally I decided to turn over a new leaf in my life and started
+teaching 10 to 19 years old kids at school.  I teach math, physics,
+information technology and science/technology.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
+project?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;Already before I switched to teaching, I followed the Debian Edu
+project because of my interest in education and Debian.  Within the
+qualification/training period for the teaching, I started
+contributing.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
+Edu?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;The advantages of Debian Edu are the well known name, the
+out-of-the-box philosophy and of course the great free software of the
+Debian Project!&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
+Edu?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;As every coin has two sides, the out-of-the-box philosophy has its
+downside, too.  In my opinion, it is hard to modify and tweak the
+setup, if you need or want that.  Further more, it is not easily
+possible to upgrade the system to a new release.  It takes much too
+long after a Debian release to prepare the -Edu release, perhaps
+because the number of developers working on the core of the code is
+rather small and often busy elsewhere.&lt;/p&gt;
+
+&lt;p&gt;The &lt;a href=&quot;http://wiki.debian.org/DebianLAN&quot;&gt;Debian LAN&lt;/a&gt;
+project might fill the use case of a more flexible system.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;I am only using non-free software if I am forced to and run Debian
+on all my machines.  For documents I prefer LaTeX and PGF/TikZ, then
+mutt and iceweasel for email respectively web browsing.  At school I
+have Arduino and Fritzing in use for a micro controller project.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
+get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;One of the major problems is the vendor lock-in from top to bottom:
+Especially in combination with ignorant government employees and
+politicians, this works out great for the &quot;market-leader&quot;.  The school
+administration here in Baden-Wuerttemberg is occupied by that vendor.
+Documents have to be prepared in non-free, proprietary formats.  Even
+free browsers do not work for the school administration.  Publishers
+of school books provide software only for proprietary platforms.&lt;/p&gt;
+
+&lt;p&gt;To change this, political work is very important.  Parts of the
+political spectrum have become aware of the problem in the last years.
+However it takes quite some time and courageous politicians to &#39;free&#39;
+the system.  There is currently some discussion about &quot;Open Data&quot; and
+&quot;Free/Open Standards&quot;.  I am not sure if all the involved parties have
+a clue about the potential of these ideas, and probably only a
+fraction takes them seriously.  However it might slowly make free
+software and the philosophy behind it more known and popular.&lt;/p&gt;
+</description>
+       </item>
+       
+       <item>
+               <title>Jeg skal på konferansen Go Open 2012</title>
+               <link>http://people.skolelinux.org/pere/blog/Jeg_skal_p__konferansen_Go_Open_2012.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Jeg_skal_p__konferansen_Go_Open_2012.html</guid>
+                <pubDate>Fri, 13 Apr 2012 11:30:00 +0200</pubDate>
+               <description>&lt;p&gt;Jeg har tenkt meg på konferansen &lt;a href=&quot;http://www.goopen.no/&quot;&gt;Go
+Open 2012&lt;/a&gt; i Oslo 23. april.
+&lt;a href=&quot;http://www.nuug.no/&quot;&gt;Medlemsforeningen NUUG&lt;/a&gt; deler ut
+&lt;a href=&quot;http://www.nuug.no/prisen/&quot;&gt;prisen for fremme av fri
+programvare i Norge&lt;/a&gt; der i år.  Kommer du?&lt;/p&gt;
 </description>
        </item>
        
        <item>
-               <title>Kommunevalget må visst kontrollregnes på</title>
-               <link>http://people.skolelinux.org/pere/blog/Kommunevalget_m__visst_kontrollregnes_p_.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Kommunevalget_m__visst_kontrollregnes_p_.html</guid>
-                <pubDate>Wed, 14 Sep 2011 10:35:00 +0200</pubDate>
-               <description>&lt;p&gt;En artikkel i aftenbladet påstår at valgsystemet til EDB Ergogroup
-&lt;a href=&quot;http://www.aftenbladet.no/innenriks/politikk/valg/De-Grnne-regner-seg-inn-i-bystyret-2864487.html&quot;&gt;ikke
-regner riktig mandatfordeling&lt;/a&gt; i Stavanger.  Det høres for meg ut
-som om innbyggerne i Norge er nødt til å kontrollregne på
-mandatfordelingen for å sikre at valget går riktig for seg.  Det tar
-jeg som nok et argument for nøyere kontroll av det norske
-valgsystemet.&lt;/p&gt;
+               <title>Debian Edu interview: Justin B. Rye</title>
+               <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Justin_B__Rye.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Justin_B__Rye.html</guid>
+                <pubDate>Sun, 8 Apr 2012 10:50:00 +0200</pubDate>
+               <description>&lt;p&gt;It take all kind of contributions to create a Linux distribution
+like &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;,
+and this time I lend the ear to Justin B. Rye, who is listed as a big
+contributor to the
+&lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;Debian
+Edu Squeeze release manual&lt;/a&gt;.
+
+&lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;I&#39;m a 44-year-old linguistics graduate living in Edinburgh who has
+occasionally been employed as a sysadmin.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
+project?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;I&#39;m neither a developer nor a Skolelinux/Debian Edu user!  The only
+reason my name&#39;s in the credits for the documentation is that I hang
+around on debian-l10n-english waiting for people to mention things
+they&#39;d like a native English speaker to proofread...  So I did a sweep
+through the wiki for typos and Norglish and inconsistent spellings of
+&quot;localisation&quot;.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
+Edu?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
+Edu?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;These questions are too hard for me - I don&#39;t use it!  In fact I
+had hardly any contact with I.T. until long after I&#39;d got out of the
+education system.&lt;/p&gt;
+
+&lt;p&gt;I can tell you the advantages of Debian for me though: it soaks up
+as much of my free time as I want and no more, and lets me do
+everything I want a computer for without ever forcing me to spend
+money on the latest hardware.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;I&#39;ve been using Debian since Rex; popularity-contest says the
+software that I use most is xinit, xterm, and xulrunner (in other
+words, I use a distinctly retro sort of desktop).&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
+get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;Well, I don&#39;t know.  I suppose I&#39;d be inclined to try reasoning
+with the people who make the decisions, but obviously if that worked
+you would hardly need a strategy.&lt;/p&gt;
 </description>
        </item>
        
        <item>
-               <title>Noen problemer rundt unikt nummererte stemmesedler i norske valg</title>
-               <link>http://people.skolelinux.org/pere/blog/Noen_problemer_rundt_unikt_nummererte_stemmesedler_i_norske_valg.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Noen_problemer_rundt_unikt_nummererte_stemmesedler_i_norske_valg.html</guid>
-                <pubDate>Tue, 13 Sep 2011 16:00:00 +0200</pubDate>
-               <description>&lt;p&gt;I digi.no forklarer Ergo Group at gårdagens problemer med
-opptelling av stemmesedler ved kommunevalget var at
-&lt;a href=&quot;http://www.digi.no/877938/ikke-programmeringsshy%3Bfeil-i-valgshy%3Bsystemet&quot;&gt;noen
-stemmesedler ikke hadde unike løpenummer&lt;/a&gt;, og at programvaren som
-ble brukt til telling ikke var laget for å håndtere dette.  Jeg ble
-svært overrasket over å lese at norske stemmesedler har unike
-løpenummer, da min forståelse er at det går på bekostning av kravet om
-hemmelige valg.&lt;/p&gt;
-
-&lt;p&gt;Jeg har ikke god oversikt over hvilke problemer dette kan skape for
-hemmelig valg, men her er noen scenarier som virker problematiske for
-meg:&lt;/p&gt;
-
-&lt;p&gt;(1) Jomar og Bertil avtaler at Bertil skal stemme på Lurepartiet
-med stemmeseddelen som Bertil får utlevert fra Jomar, og belønnes for
-dette.  Stemmeseddelen har et unikt løpenummer, og ved opptellingen
-sjekker Jomar at stemmeseddelen til Lurepartiet det unike løpenummeret
-er med i stemmesedlene som ble talt opp før Bertil får sin belønning.
-Unike løpenummer legger så vidt jeg kan forstå opp til kjøp og salg av
-stemmer.&lt;/p&gt;
-
-&lt;p&gt;(2) Jomar har også jobb som valgobservatør, og har gått igjennom
-avlukkene og notert parti og løpenummer for alle stemmesedlene i
-avlukkene.  Har er i tillegg jevnlig innom og sjekker hvilke
-løpenummer som er igjen i avlukkene (lar seg ganske raskt og enkelt
-gjøre med en mobiltelefon med kamera som kan ta bilder av alle
-løpenumrene).  Når en person han vil vite hva stemmer kommer innom,
-sammenligner han stemmesedler i avlukkene før og etter at vedkommende
-har vært innom, og sjekker så om løpenummeret som var på stemmeseddel
-(eller sedlene) som forsvant fra avlukket dukker opp under
-opptellingen.  Det kan på den måten være mulig å finne ut hva en
-person stemte.  Hvis personen tar med seg en stemmeseddel fra alle
-partiene vil det fortsatt være mulig å finne ut hvilken av disse som
-ble talt opp, slik at en ikke kan beskytte seg på det viset.&lt;/p&gt;
-
-&lt;p&gt;Jeg er ikke sikker på hvor realistiske disse scenariene er i dag,
-dvs. hvilke andre prosedyrer som finnes i det norske valget for å
-hindre dette.&lt;/p&gt;
-
-&lt;p&gt;Det er dog ingen tvil om at det er lurt å nummerere stemmesedler
-ved opptelling for å sikre at ingen forsvinner i prosessen med å telle
-opp stemmer, men det må gjøres når stemmeurnene åpnes og ikke før
-innbyggerne avgir sin stemme.&lt;/p&gt;
-
-&lt;p&gt;Under Go Open 2009 presenterte Mitch Trachtenberg fra Humboldt
-County, California hvordan
-&lt;a href=&quot;http://goopen2009.friprog.no/program/48-freevalg&quot;&gt;de laget et
-system som kontrolltalte stemmene&lt;/a&gt; der ved hjelp av en scanner med
-arkmater og fri programvare.  Der ble stemmesedlene unikt nummerert
-før scanning, og det er laget en CD med bilder av alle stemmesedler
-slik at enhver kan kontrolltelle stemmene selv hvis de ønsker det.
-Kanskje en ide også for Norge?  Programvaren er så vidt jeg vet fri
-programvare, og tilgjengelig fra
-&lt;a href=&quot;http://www.tevsystems.com/&quot;&gt;hans nettsted&lt;/a&gt;&lt;/p&gt;
+               <title>Why the KDE menu is slow when /usr/ is NFS mounted - and a workaround</title>
+               <link>http://people.skolelinux.org/pere/blog/Why_the_KDE_menu_is_slow_when__usr__is_NFS_mounted___and_a_workaround.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_the_KDE_menu_is_slow_when__usr__is_NFS_mounted___and_a_workaround.html</guid>
+                <pubDate>Fri, 6 Apr 2012 22:40:00 +0200</pubDate>
+               <description>&lt;p&gt;Recently I have spent time with
+&lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux Drift AS&lt;/a&gt; on speeding
+up a &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
+Lenny installation using LTSP diskless workstations, and in the
+process I discovered something very surprising.  The reason the KDE
+menu was responding slow when using it for the first time, was mostly
+due to the way KDE find application icons.  I discovered that showing
+the Multimedia menu would cause more than 20 000 IP packages to be
+passed between the LTSP client and the NFS server.  Most of these were
+
+NFS LOOKUP calls, resulting in a NFS3ERR_NOENT response.  Because the
+ping times between the client and the server were in the range 2-20
+ms, the menus would be very slow.  Looking at the strace of kicker in
+Lenny (or plasma-desktop i Squeeze - same problem there), I see that
+the source of these NFS calls are access(2) system calls for
+non-existing files.  KDE can do hundreds of access(2) calls to find
+one icon file.  In my example, just finding the mplayer icon required
+around 230 access(2) calls.&lt;/p&gt;
+
+&lt;p&gt;The KDE code seem to search for icons using a list of icon
+directories, and the list of possible directories is large.  In
+(almost) each directory, it look for files ending in .png, .svgz, .svg
+and .xpm.  The result is a very slow KDE menu when /usr/ is NFS
+mounted.  Showing a single sub menu may result in thousands of NFS
+requests.  I am not the first one to discover this.  I found a
+&lt;a href=&quot;https://bugs.kde.org/show_bug.cgi?id=211416&quot;&gt;KDE bug report
+from 2009&lt;/a&gt; about this problem, and it is still unsolved.&lt;/p&gt;
+
+&lt;p&gt;My solution to speed up the KDE menu was to create a package
+kde-icon-cache that upon installation will look at all .desktop files
+used to generate the KDE menu, find their icons, search the icon paths
+for the file that KDE will end up finding at run time, and copying the
+icon file to /var/lib/kde-icon-cache/.  Finally, I add symlinks to
+these icon files in one of the first directories where KDE will look
+for them.  This cut down the number of file accesses required to find
+one icon from several hundred to less than 5, and make the KDE menu
+almost instantaneous.  I&#39;m not quite sure where to make the package
+publicly available, so for now it is only available on request.&lt;/p&gt;
+
+&lt;p&gt;The bug report mention that this do not only affect the KDE menu
+and icon handling, but also the login process.  Not quite sure how to
+speed up that part without replacing NFS with for example NBD, and
+that is not really an option at the moment.&lt;/p&gt;
+
+&lt;p&gt;If you got feedback on this issue, please let us know on debian-edu
+(at) lists.debian.org.&lt;/p&gt;
 </description>
        </item>
        
        <item>
-               <title>Mer løgnpropaganda fra BSA</title>
-               <link>http://people.skolelinux.org/pere/blog/Mer_l_gnpropaganda_fra_BSA.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Mer_l_gnpropaganda_fra_BSA.html</guid>
-                <pubDate>Fri, 9 Sep 2011 11:00:00 +0200</pubDate>
-               <description>&lt;p&gt;I år igjen er Microsoft-politiet BSA ute med løgnpropagandaen sin.
-Hvert år de siste årene har BSA, lobbyfronten til de store
-programvareselskapene som Microsoft og Apple, publisert en rapport der
-de gjetter på hvor mye piratkopiering påfører i tapte inntekter i
-ulike land rundt om i verden.  Resultatene er alltid tendensiøse.
-Den siste rapporten er tilgjengelig fra
-&lt;a href=&quot;http://portal.bsa.org/globalpiracy2010/downloads/opinionsurvey/survey_global.pdf&quot;&gt;deres
-nettsted&lt;/a&gt;.&lt;/p&gt;
-
-&lt;p&gt;Den har fått endel dekning av journalister som åpenbart ikke har
-tenkt på å stille kritiske spørsmål om resultatene.  Se f.eks.
-&lt;a href=&quot;http://www.digi.no/877642/halvparten-bruker-pirat-program&quot;&gt;digi.no&lt;/a&gt;,
-&lt;a href=&quot;http://www.hardware.no/artikler/halvparten_av_alle_pc-brukere_er_pirater/101791&quot;&gt;hardware.no&lt;/a&gt;
-og
-&lt;a href=&quot;http://www.aftenposten.no/forbruker/digital/article4220787.ece&quot;&gt;aftenposten.no&lt;/a&gt;.&lt;/p&gt;
-
-&lt;p&gt;BSA-undersøkelsene er søppel som inneholder oppblåste tall, og
-har gjentatte ganger blitt tatt for dette.  Her er noen interessante
-referanser med bakgrunnsinformasjon.&lt;/p&gt;
-
-&lt;p&gt;&lt;ul&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.idg.no/selskaper/article190966.ece&quot;&gt;Fnyser av
-  nye pirattall fra BSA&lt;/a&gt; Computerworld Norge 2011.&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.idg.se/2.1085/1.229795/bsa-hoftade-sverigesiffror&quot;&gt;BSA
-höftade Sverigesiffror&lt;/a&gt; Computerworld Sverige 2009.&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.v3.co.uk/v3-uk/opinion/1972843/bsa-piracy-figures-shot-reality&quot;&gt;BSA
-  piracy figures need a shot of reality&lt;/a&gt; v3.co.uk 2009&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.michaelgeist.ca/content/view/3958/125/&quot;&gt;Does The WIPO Copyright Treaty Work? The Business Software Association Piracy Data&lt;/a&gt; Michael Geist blogg 2009&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://torrentfreak.com/australian-govt-draft-says-piracy-stats-made-up/&quot;&gt;Australian
-  govt draft says piracy stats are made up&lt;/a&gt; Torrentfreak 2006.&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.boingboing.net/2006/05/19/is_one_months_piracy.html&quot;&gt;Is
-  one month&#39;s piracy worth more than France&#39;s GDP?&lt;/a&gt; Boing Boing
-  2006.&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.idg.no/bransje/bransjenyheter/article6603.ece&quot;&gt;Sviende
-  kritikk mot pirat-tall&lt;/a&gt; Computerworld Norge 2005.&lt;/li&gt;
-
-&lt;/ul&gt;&lt;/p&gt;
-
-&lt;p&gt;Personlig skulle jeg ønske BSA var enda mer ivrig og mer hardhendt
-i å håndheve de ikke-frie programvarelisensene (og de er ganske ivrige
-allerede), slik at brukerne av disse forsto vilkårene bedre.  Jeg tror
-nemlig ingen som forstår vilkårene vil akseptere dem og at det vil
-føre til at flere tar i bruk fri programvare.&lt;/p&gt;
+               <title>Debian Edu in the Linux Weekly News</title>
+               <link>http://people.skolelinux.org/pere/blog/Debian_Edu_in_the_Linux_Weekly_News.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_in_the_Linux_Weekly_News.html</guid>
+                <pubDate>Thu, 5 Apr 2012 08:00:00 +0200</pubDate>
+               <description>&lt;p&gt;About two weeks ago, I was interviewed via email about
+&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt; by
+Bruce Byfield in Linux Weekly News.  The result was made public for
+non-subscribers today.  I am pleased to see liked our Linux solution
+for schools.  Check out his article
+&lt;a href=&quot;https://lwn.net/Articles/488805/&quot;&gt;Debian Edu/Skolelinux: A
+distribution for education&lt;/a&gt; if you want to learn more.&lt;/p&gt;
 </description>
        </item>
        
        <item>
-               <title>Flytting er et tidssluk</title>
-               <link>http://people.skolelinux.org/pere/blog/Flytting_er_et_tidssluk.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Flytting_er_et_tidssluk.html</guid>
-                <pubDate>Tue, 23 Aug 2011 10:30:00 +0200</pubDate>
-               <description>&lt;p&gt;I sommer kom plutselig en veldig fint hus til salgs i Nydalen, så
-vi ble brått eier av et hus og skal
-&lt;a href=&quot;http://www.finn.no/finn/realestate/homes/object?finnkode=30237179&quot;&gt;selge
-vår leilighet i Nydalen Allé&lt;/a&gt; (visning 2011-08-28), pakke for
-flytting, fotografering og visning, og generelt omstrukturere alt vi
-holder på med i noen måneder.  Det har pågått siden i sommer, og er
-for øyeblikket forklaringen om hvorfor jeg er så lite aktiv med
-blogging, fri programvareutvikling, NUUG-foreningsarbeide og annet.
-Jeg håper det blir bedre etter flytting i oktober.&lt;/p&gt;
+               <title>Debian Edu interview: Wolfgang Schweer</title>
+               <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Wolfgang_Schweer.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Wolfgang_Schweer.html</guid>
+                <pubDate>Sun, 1 Apr 2012 23:00:00 +0200</pubDate>
+               <description>&lt;p&gt;Germany is a core area for the
+&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
+user community, and this time I managed to get hold of Wolfgang
+Schweer, a valuable contributor to the project from Germany.
+
+&lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;I&#39;ve studied Mathematics at the university &#39;Ruhr-Universität&#39; in
+Bochum, Germany. Since 1981 I&#39;m working as a teacher at the school
+&quot;&lt;a href=&quot;http://www.westfalenkolleg-dortmund.de/&quot;&gt;Westfalen-Kolleg
+Dortmund&lt;/a&gt;&quot;, a second chance school.  Here, young adults is given
+the opportunity to get further education in order to do the school
+examination &#39;Abitur&#39;, which will allow to study at a university. This
+second chance is of value for those who want a better job perspective
+or failed to get a higher school examination being teens.&lt;/p&gt;
+
+&lt;p&gt;Besides teaching I was involved in developing online courses for a
+blended learning project called &#39;abitur-online.nrw&#39; and in some other
+information technology related projects. For about ten years I&#39;ve been
+teacher and coordinator for the &#39;abitur-online&#39; project at my
+school. Being now in my early sixties, I&#39;ve decided to leave school at
+the end of April this year.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
+project?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;The first information about Skolelinux must have come to my
+attention years ago and somehow related to LTSP (Linux Terminal Server
+Project).  At school, we had set up a network at the beginning of 1997
+using Suse Linux on the desktop, replacing a Novell network. Since
+2002, we used old machines from the city council of Dortmund as thin
+clients (LTSP, later Ubuntu/Lessdisks) cause new hardware was out of
+reach. At home I&#39;m using Debian since years and - subscribed to the
+Debian news letter - heard from time to time about Skolelinux. About
+two years ago I proposed to replace the (somehow undocumented and only
+known to me) system at school by a well known Debian based system:
+Skolelinux.&lt;/p&gt;
+
+&lt;p&gt;Students and teachers appreciated the new system because of a
+better look and feel and an enhanced access to local media on thin
+clients.  The possibility to alter and/or reset passwords using a GUI
+was welcomed, too. Being able to do administrative tasks using a GUI
+and to easily set up workstations using PXE was of very high value for
+the admin teachers.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
+Edu?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;It&#39;s open source, easy to set up, stable and flexible due to it&#39;s
+Debian base. It integrates LTSP out-of-the-box. And it is documented!
+So it was a perfect choice.&lt;/p&gt;
+
+&lt;p&gt;Being open source, there are no license problems and so it&#39;s
+possible to point teachers and students to programs like
+OpenOffice.org, ViewYourMind (mind mapping) and The Gimp.  It&#39;s of
+high value to be able to adapt parts of the system to special needs of
+a school and to choose where to get support for this.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
+Edu?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;Nothing yet.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;At home (Debian Sid with Gnome Desktop): Iceweasel, LibreOffice,
+Mutt, Gedit, Document Viewer, Midnight Commander, flpsed (PDF
+Annotator).  At school (Skolelinux Lenny): Iceweasel, Gedit,
+LibreOffice.&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
+get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
+
+&lt;p&gt;Some time ago I thought it was enough to tell people about it. But
+that doesn&#39;t seem to work quite well. Now I concentrate on those more
+interested and hope to get multiplicators that way.&lt;/p&gt;
 </description>
        </item>