]> pere.pagekite.me Git - homepage.git/blobdiff - blog/tags/sikkerhet/index.html
Generated.
[homepage.git] / blog / tags / sikkerhet / index.html
index 3c71534516629125b882b37a87b06c7c76604d3d..ccdca7ab805479cc213605ef996b08c2cf231502 100644 (file)
@@ -4,14 +4,14 @@
   <head>
     <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
     <title>Petter Reinholdtsen: Entries Tagged sikkerhet</title>
   <head>
     <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
     <title>Petter Reinholdtsen: Entries Tagged sikkerhet</title>
-    <link rel="stylesheet" type="text/css" media="screen" href="https://people.skolelinux.org/pere/blog/style.css" />
-    <link rel="stylesheet" type="text/css" media="screen" href="https://people.skolelinux.org/pere/blog/vim.css" />
+    <link rel="stylesheet" type="text/css" media="screen" href="http://www.hungry.com/~pere/blog/style.css" />
+    <link rel="stylesheet" type="text/css" media="screen" href="http://www.hungry.com/~pere/blog/vim.css" />
     <link rel="alternate" title="RSS Feed" href="sikkerhet.rss" type="application/rss+xml" />
   </head>
   <body>
     <div class="title">
  <h1>
     <link rel="alternate" title="RSS Feed" href="sikkerhet.rss" type="application/rss+xml" />
   </head>
   <body>
     <div class="title">
  <h1>
-     <a href="https://people.skolelinux.org/pere/blog/">Petter Reinholdtsen</a>
+     <a href="http://www.hungry.com/~pere/blog/">Petter Reinholdtsen</a>
      
  </h1>
  
      
  </h1>
  
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Latest_Jami_back_in_Debian_Testing__and_scriptable_using_dbus.html">Latest Jami back in Debian Testing, and scriptable using dbus</a>
+        <a href="http://www.hungry.com/~pere/blog/New_and_improved_sqlcipher_in_Debian_for_accessing_Signal_database.html">New and improved sqlcipher in Debian for accessing Signal database</a>
+      </div>
+      <div class="date">
+        12th November 2023
+      </div>
+      <div class="body">
+        <p>For a while now I wanted to have direct access to the
+<a href="https://signal.org/">Signal</a> database of messages and
+channels of my Desktop edition of Signal.  I prefer the enforced end
+to end encryption of Signal these days for my communication with
+friends and family, to increase the level of safety and privacy as
+well as raising the cost of the mass surveillance government and
+non-government entities practice these days.  In August I came across
+a nice
+<a href="https://www.yoranbrondsema.com/post/the-guide-to-extracting-statistics-from-your-signal-conversations/">recipe
+on how to use sqlcipher to extract statistics from the Signal
+database</a> explaining how to do this.  Unfortunately this did not
+work with the version of sqlcipher in Debian.  The
+<a href="http://tracker.debian.org/sqlcipher/">sqlcipher</a>
+package is a "fork" of the sqlite package with added support for
+encrypted databases.  Sadly the current Debian maintainer
+<a href="https://bugs.debian.org/961598">announced more than three
+years ago that he did not have time to maintain sqlcipher</a>, so it
+seemed unlikely to be upgraded by the maintainer.  I was reluctant to
+take on the job myself, as I have very limited experience maintaining
+shared libraries in Debian.  After waiting and hoping for a few
+months, I gave up the last  week, and set out to update the package.  In
+the process I orphaned it to make it more obvious for the next person
+looking at it that the package need proper maintenance.</p>
+
+<p>The version in Debian was around five years old, and quite a lot of
+changes had taken place upstream into the Debian maintenance git
+repository.  After spending a few days importing the new upstream
+versions, realising that upstream did not care much for SONAME
+versioning as I saw library symbols being both added and removed with
+minor version number changes to the project, I concluded that I had to
+do a SONAME bump of the library package to avoid surprising the
+reverse dependencies.  I even added a simple
+autopkgtest script to ensure the package work as intended.  Dug deep
+into the hole of learning shared library maintenance, I set out a few
+days ago to upload the new version to Debian experimental to see what
+the quality assurance framework in Debian had to say about the result.
+The feedback told me the pacakge was not too shabby, and yesterday I
+uploaded the latest version to Debian unstable.  It should enter
+testing today or tomorrow, perhaps delayed by
+<a href="https://bugs.debian.org/1055812">a small library
+transition</a>.</p>
+
+<p>Armed with a new version of sqlcipher, I can now have a look at the
+SQL database in ~/.config/Signal/sql/db.sqlite.  First, one need to
+fetch the encryption key from the Signal configuration using this
+simple JSON extraction command:</p>
+
+<pre>/usr/bin/jq -r '."key"' ~/.config/Signal/config.json</pre>
+
+<p>Assuming the result from that command is 'secretkey', which is a
+hexadecimal number representing the key used to encrypt the database.
+Next, one can now connect to the database and inject the encryption
+key for access via SQL to fetch information from the database.  Here
+is an example dumping the database structure:</p>
+
+<pre>
+% sqlcipher ~/.config/Signal/sql/db.sqlite
+sqlite> PRAGMA key = "x'secretkey'";
+sqlite> .schema
+CREATE TABLE sqlite_stat1(tbl,idx,stat);
+CREATE TABLE conversations(
+      id STRING PRIMARY KEY ASC,
+      json TEXT,
+
+      active_at INTEGER,
+      type STRING,
+      members TEXT,
+      name TEXT,
+      profileName TEXT
+    , profileFamilyName TEXT, profileFullName TEXT, e164 TEXT, serviceId TEXT, groupId TEXT, profileLastFetchedAt INTEGER);
+CREATE TABLE identityKeys(
+      id STRING PRIMARY KEY ASC,
+      json TEXT
+    );
+CREATE TABLE items(
+      id STRING PRIMARY KEY ASC,
+      json TEXT
+    );
+CREATE TABLE sessions(
+      id TEXT PRIMARY KEY,
+      conversationId TEXT,
+      json TEXT
+    , ourServiceId STRING, serviceId STRING);
+CREATE TABLE attachment_downloads(
+    id STRING primary key,
+    timestamp INTEGER,
+    pending INTEGER,
+    json TEXT
+  );
+CREATE TABLE sticker_packs(
+    id TEXT PRIMARY KEY,
+    key TEXT NOT NULL,
+
+    author STRING,
+    coverStickerId INTEGER,
+    createdAt INTEGER,
+    downloadAttempts INTEGER,
+    installedAt INTEGER,
+    lastUsed INTEGER,
+    status STRING,
+    stickerCount INTEGER,
+    title STRING
+  , attemptedStatus STRING, position INTEGER DEFAULT 0 NOT NULL, storageID STRING, storageVersion INTEGER, storageUnknownFields BLOB, storageNeedsSync
+      INTEGER DEFAULT 0 NOT NULL);
+CREATE TABLE stickers(
+    id INTEGER NOT NULL,
+    packId TEXT NOT NULL,
+
+    emoji STRING,
+    height INTEGER,
+    isCoverOnly INTEGER,
+    lastUsed INTEGER,
+    path STRING,
+    width INTEGER,
+
+    PRIMARY KEY (id, packId),
+    CONSTRAINT stickers_fk
+      FOREIGN KEY (packId)
+      REFERENCES sticker_packs(id)
+      ON DELETE CASCADE
+  );
+CREATE TABLE sticker_references(
+    messageId STRING,
+    packId TEXT,
+    CONSTRAINT sticker_references_fk
+      FOREIGN KEY(packId)
+      REFERENCES sticker_packs(id)
+      ON DELETE CASCADE
+  );
+CREATE TABLE emojis(
+    shortName TEXT PRIMARY KEY,
+    lastUsage INTEGER
+  );
+CREATE TABLE messages(
+        rowid INTEGER PRIMARY KEY ASC,
+        id STRING UNIQUE,
+        json TEXT,
+        readStatus INTEGER,
+        expires_at INTEGER,
+        sent_at INTEGER,
+        schemaVersion INTEGER,
+        conversationId STRING,
+        received_at INTEGER,
+        source STRING,
+        hasAttachments INTEGER,
+        hasFileAttachments INTEGER,
+        hasVisualMediaAttachments INTEGER,
+        expireTimer INTEGER,
+        expirationStartTimestamp INTEGER,
+        type STRING,
+        body TEXT,
+        messageTimer INTEGER,
+        messageTimerStart INTEGER,
+        messageTimerExpiresAt INTEGER,
+        isErased INTEGER,
+        isViewOnce INTEGER,
+        sourceServiceId TEXT, serverGuid STRING NULL, sourceDevice INTEGER, storyId STRING, isStory INTEGER
+        GENERATED ALWAYS AS (type IS 'story'), isChangeCreatedByUs INTEGER NOT NULL DEFAULT 0, isTimerChangeFromSync INTEGER
+        GENERATED ALWAYS AS (
+          json_extract(json, '$.expirationTimerUpdate.fromSync') IS 1
+        ), seenStatus NUMBER default 0, storyDistributionListId STRING, expiresAt INT
+        GENERATED ALWAYS
+        AS (ifnull(
+          expirationStartTimestamp + (expireTimer * 1000),
+          9007199254740991
+        )), shouldAffectActivity INTEGER
+        GENERATED ALWAYS AS (
+          type IS NULL
+          OR
+          type NOT IN (
+            'change-number-notification',
+            'contact-removed-notification',
+            'conversation-merge',
+            'group-v1-migration',
+            'keychange',
+            'message-history-unsynced',
+            'profile-change',
+            'story',
+            'universal-timer-notification',
+            'verified-change'
+          )
+        ), shouldAffectPreview INTEGER
+        GENERATED ALWAYS AS (
+          type IS NULL
+          OR
+          type NOT IN (
+            'change-number-notification',
+            'contact-removed-notification',
+            'conversation-merge',
+            'group-v1-migration',
+            'keychange',
+            'message-history-unsynced',
+            'profile-change',
+            'story',
+            'universal-timer-notification',
+            'verified-change'
+          )
+        ), isUserInitiatedMessage INTEGER
+        GENERATED ALWAYS AS (
+          type IS NULL
+          OR
+          type NOT IN (
+            'change-number-notification',
+            'contact-removed-notification',
+            'conversation-merge',
+            'group-v1-migration',
+            'group-v2-change',
+            'keychange',
+            'message-history-unsynced',
+            'profile-change',
+            'story',
+            'universal-timer-notification',
+            'verified-change'
+          )
+        ), mentionsMe INTEGER NOT NULL DEFAULT 0, isGroupLeaveEvent INTEGER
+        GENERATED ALWAYS AS (
+          type IS 'group-v2-change' AND
+          json_array_length(json_extract(json, '$.groupV2Change.details')) IS 1 AND
+          json_extract(json, '$.groupV2Change.details[0].type') IS 'member-remove' AND
+          json_extract(json, '$.groupV2Change.from') IS NOT NULL AND
+          json_extract(json, '$.groupV2Change.from') IS json_extract(json, '$.groupV2Change.details[0].aci')
+        ), isGroupLeaveEventFromOther INTEGER
+        GENERATED ALWAYS AS (
+          isGroupLeaveEvent IS 1
+          AND
+          isChangeCreatedByUs IS 0
+        ), callId TEXT
+        GENERATED ALWAYS AS (
+          json_extract(json, '$.callId')
+        ));
+CREATE TABLE sqlite_stat4(tbl,idx,neq,nlt,ndlt,sample);
+CREATE TABLE jobs(
+        id TEXT PRIMARY KEY,
+        queueType TEXT STRING NOT NULL,
+        timestamp INTEGER NOT NULL,
+        data STRING TEXT
+      );
+CREATE TABLE reactions(
+        conversationId STRING,
+        emoji STRING,
+        fromId STRING,
+        messageReceivedAt INTEGER,
+        targetAuthorAci STRING,
+        targetTimestamp INTEGER,
+        unread INTEGER
+      , messageId STRING);
+CREATE TABLE senderKeys(
+        id TEXT PRIMARY KEY NOT NULL,
+        senderId TEXT NOT NULL,
+        distributionId TEXT NOT NULL,
+        data BLOB NOT NULL,
+        lastUpdatedDate NUMBER NOT NULL
+      );
+CREATE TABLE unprocessed(
+        id STRING PRIMARY KEY ASC,
+        timestamp INTEGER,
+        version INTEGER,
+        attempts INTEGER,
+        envelope TEXT,
+        decrypted TEXT,
+        source TEXT,
+        serverTimestamp INTEGER,
+        sourceServiceId STRING
+      , serverGuid STRING NULL, sourceDevice INTEGER, receivedAtCounter INTEGER, urgent INTEGER, story INTEGER);
+CREATE TABLE sendLogPayloads(
+        id INTEGER PRIMARY KEY ASC,
+
+        timestamp INTEGER NOT NULL,
+        contentHint INTEGER NOT NULL,
+        proto BLOB NOT NULL
+      , urgent INTEGER, hasPniSignatureMessage INTEGER DEFAULT 0 NOT NULL);
+CREATE TABLE sendLogRecipients(
+        payloadId INTEGER NOT NULL,
+
+        recipientServiceId STRING NOT NULL,
+        deviceId INTEGER NOT NULL,
+
+        PRIMARY KEY (payloadId, recipientServiceId, deviceId),
+
+        CONSTRAINT sendLogRecipientsForeignKey
+          FOREIGN KEY (payloadId)
+          REFERENCES sendLogPayloads(id)
+          ON DELETE CASCADE
+      );
+CREATE TABLE sendLogMessageIds(
+        payloadId INTEGER NOT NULL,
+
+        messageId STRING NOT NULL,
+
+        PRIMARY KEY (payloadId, messageId),
+
+        CONSTRAINT sendLogMessageIdsForeignKey
+          FOREIGN KEY (payloadId)
+          REFERENCES sendLogPayloads(id)
+          ON DELETE CASCADE
+      );
+CREATE TABLE preKeys(
+        id STRING PRIMARY KEY ASC,
+        json TEXT
+      , ourServiceId NUMBER
+        GENERATED ALWAYS AS (json_extract(json, '$.ourServiceId')));
+CREATE TABLE signedPreKeys(
+        id STRING PRIMARY KEY ASC,
+        json TEXT
+      , ourServiceId NUMBER
+        GENERATED ALWAYS AS (json_extract(json, '$.ourServiceId')));
+CREATE TABLE badges(
+        id TEXT PRIMARY KEY,
+        category TEXT NOT NULL,
+        name TEXT NOT NULL,
+        descriptionTemplate TEXT NOT NULL
+      );
+CREATE TABLE badgeImageFiles(
+        badgeId TEXT REFERENCES badges(id)
+          ON DELETE CASCADE
+          ON UPDATE CASCADE,
+        'order' INTEGER NOT NULL,
+        url TEXT NOT NULL,
+        localPath TEXT,
+        theme TEXT NOT NULL
+      );
+CREATE TABLE storyReads (
+        authorId STRING NOT NULL,
+        conversationId STRING NOT NULL,
+        storyId STRING NOT NULL,
+        storyReadDate NUMBER NOT NULL,
+
+        PRIMARY KEY (authorId, storyId)
+      );
+CREATE TABLE storyDistributions(
+        id STRING PRIMARY KEY NOT NULL,
+        name TEXT,
+
+        senderKeyInfoJson STRING
+      , deletedAtTimestamp INTEGER, allowsReplies INTEGER, isBlockList INTEGER, storageID STRING, storageVersion INTEGER, storageUnknownFields BLOB, storageNeedsSync INTEGER);
+CREATE TABLE storyDistributionMembers(
+        listId STRING NOT NULL REFERENCES storyDistributions(id)
+          ON DELETE CASCADE
+          ON UPDATE CASCADE,
+        serviceId STRING NOT NULL,
+
+        PRIMARY KEY (listId, serviceId)
+      );
+CREATE TABLE uninstalled_sticker_packs (
+        id STRING NOT NULL PRIMARY KEY,
+        uninstalledAt NUMBER NOT NULL,
+        storageID STRING,
+        storageVersion NUMBER,
+        storageUnknownFields BLOB,
+        storageNeedsSync INTEGER NOT NULL
+      );
+CREATE TABLE groupCallRingCancellations(
+        ringId INTEGER PRIMARY KEY,
+        createdAt INTEGER NOT NULL
+      );
+CREATE TABLE IF NOT EXISTS 'messages_fts_data'(id INTEGER PRIMARY KEY, block BLOB);
+CREATE TABLE IF NOT EXISTS 'messages_fts_idx'(segid, term, pgno, PRIMARY KEY(segid, term)) WITHOUT ROWID;
+CREATE TABLE IF NOT EXISTS 'messages_fts_content'(id INTEGER PRIMARY KEY, c0);
+CREATE TABLE IF NOT EXISTS 'messages_fts_docsize'(id INTEGER PRIMARY KEY, sz BLOB);
+CREATE TABLE IF NOT EXISTS 'messages_fts_config'(k PRIMARY KEY, v) WITHOUT ROWID;
+CREATE TABLE edited_messages(
+        messageId STRING REFERENCES messages(id)
+          ON DELETE CASCADE,
+        sentAt INTEGER,
+        readStatus INTEGER
+      , conversationId STRING);
+CREATE TABLE mentions (
+        messageId REFERENCES messages(id) ON DELETE CASCADE,
+        mentionAci STRING,
+        start INTEGER,
+        length INTEGER
+      );
+CREATE TABLE kyberPreKeys(
+        id STRING PRIMARY KEY NOT NULL,
+        json TEXT NOT NULL, ourServiceId NUMBER
+        GENERATED ALWAYS AS (json_extract(json, '$.ourServiceId')));
+CREATE TABLE callsHistory (
+        callId TEXT PRIMARY KEY,
+        peerId TEXT NOT NULL, -- conversation id (legacy) | uuid | groupId | roomId
+        ringerId TEXT DEFAULT NULL, -- ringer uuid
+        mode TEXT NOT NULL, -- enum "Direct" | "Group"
+        type TEXT NOT NULL, -- enum "Audio" | "Video" | "Group"
+        direction TEXT NOT NULL, -- enum "Incoming" | "Outgoing
+        -- Direct: enum "Pending" | "Missed" | "Accepted" | "Deleted"
+        -- Group: enum "GenericGroupCall" | "OutgoingRing" | "Ringing" | "Joined" | "Missed" | "Declined" | "Accepted" | "Deleted"
+        status TEXT NOT NULL,
+        timestamp INTEGER NOT NULL,
+        UNIQUE (callId, peerId) ON CONFLICT FAIL
+      );
+[ dropped all indexes to save space in this blog post ]
+CREATE TRIGGER messages_on_view_once_update AFTER UPDATE ON messages
+      WHEN
+        new.body IS NOT NULL AND new.isViewOnce = 1
+      BEGIN
+        DELETE FROM messages_fts WHERE rowid = old.rowid;
+      END;
+CREATE TRIGGER messages_on_insert AFTER INSERT ON messages
+      WHEN new.isViewOnce IS NOT 1 AND new.storyId IS NULL
+      BEGIN
+        INSERT INTO messages_fts
+          (rowid, body)
+        VALUES
+          (new.rowid, new.body);
+      END;
+CREATE TRIGGER messages_on_delete AFTER DELETE ON messages BEGIN
+        DELETE FROM messages_fts WHERE rowid = old.rowid;
+        DELETE FROM sendLogPayloads WHERE id IN (
+          SELECT payloadId FROM sendLogMessageIds
+          WHERE messageId = old.id
+        );
+        DELETE FROM reactions WHERE rowid IN (
+          SELECT rowid FROM reactions
+          WHERE messageId = old.id
+        );
+        DELETE FROM storyReads WHERE storyId = old.storyId;
+      END;
+CREATE VIRTUAL TABLE messages_fts USING fts5(
+        body,
+        tokenize = 'signal_tokenizer'
+      );
+CREATE TRIGGER messages_on_update AFTER UPDATE ON messages
+      WHEN
+        (new.body IS NULL OR old.body IS NOT new.body) AND
+         new.isViewOnce IS NOT 1 AND new.storyId IS NULL
+      BEGIN
+        DELETE FROM messages_fts WHERE rowid = old.rowid;
+        INSERT INTO messages_fts
+          (rowid, body)
+        VALUES
+          (new.rowid, new.body);
+      END;
+CREATE TRIGGER messages_on_insert_insert_mentions AFTER INSERT ON messages
+      BEGIN
+        INSERT INTO mentions (messageId, mentionAci, start, length)
+        
+    SELECT messages.id, bodyRanges.value ->> 'mentionAci' as mentionAci,
+      bodyRanges.value ->> 'start' as start,
+      bodyRanges.value ->> 'length' as length
+    FROM messages, json_each(messages.json ->> 'bodyRanges') as bodyRanges
+    WHERE bodyRanges.value ->> 'mentionAci' IS NOT NULL
+  
+        AND messages.id = new.id;
+      END;
+CREATE TRIGGER messages_on_update_update_mentions AFTER UPDATE ON messages
+      BEGIN
+        DELETE FROM mentions WHERE messageId = new.id;
+        INSERT INTO mentions (messageId, mentionAci, start, length)
+        
+    SELECT messages.id, bodyRanges.value ->> 'mentionAci' as mentionAci,
+      bodyRanges.value ->> 'start' as start,
+      bodyRanges.value ->> 'length' as length
+    FROM messages, json_each(messages.json ->> 'bodyRanges') as bodyRanges
+    WHERE bodyRanges.value ->> 'mentionAci' IS NOT NULL
+  
+        AND messages.id = new.id;
+      END;
+sqlite>
+</pre>
+
+<p>Finally I have the tool needed to inspect and process Signal
+messages that I need, without using the vendor provided client.  Now
+on to transforming it to a more useful format.</p>
+
+<p>As usual, if you use Bitcoin and want to show your support of my
+activities, please send Bitcoin donations to my address
+<b><a href="bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b</a></b>.</p>
+
+      </div>
+      <div class="tags">
+        
+        
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
+        
+        
+      </div>
+    </div>
+    <div class="padding"></div>
+    
+    <div class="entry">
+      <div class="title">
+        <a href="http://www.hungry.com/~pere/blog/Latest_Jami_back_in_Debian_Testing__and_scriptable_using_dbus.html">Latest Jami back in Debian Testing, and scriptable using dbus</a>
       </div>
       <div class="date">
         12th January 2021
       </div>
       <div class="date">
         12th January 2021
@@ -139,7 +625,7 @@ activities, please send Bitcoin donations to my address
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -148,7 +634,7 @@ activities, please send Bitcoin donations to my address
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Secure_Socket_API___a_simple_and_powerful_approach_for_TLS_support_in_software.html">Secure Socket API - a simple and powerful approach for TLS support in software</a>
+        <a href="http://www.hungry.com/~pere/blog/Secure_Socket_API___a_simple_and_powerful_approach_for_TLS_support_in_software.html">Secure Socket API - a simple and powerful approach for TLS support in software</a>
       </div>
       <div class="date">
          6th June 2020
       </div>
       <div class="date">
          6th June 2020
@@ -219,7 +705,7 @@ activities, please send Bitcoin donations to my address
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/sysadmin">sysadmin</a>.
         
         
       </div>
         
         
       </div>
@@ -228,14 +714,14 @@ activities, please send Bitcoin donations to my address
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Jami_as_a_Zoom_client__a_trick_for_password_protected_rooms___.html">Jami as a Zoom client, a trick for password protected rooms...</a>
+        <a href="http://www.hungry.com/~pere/blog/Jami_as_a_Zoom_client__a_trick_for_password_protected_rooms___.html">Jami as a Zoom client, a trick for password protected rooms...</a>
       </div>
       <div class="date">
          8th May 2020
       </div>
       <div class="body">
         <p>Half a year ago,
       </div>
       <div class="date">
          8th May 2020
       </div>
       <div class="body">
         <p>Half a year ago,
-<a href="http://people.skolelinux.org/pere/blog/Jami_Ring__finally_functioning_peer_to_peer_communication_client.html">I
+<a href="http://www.hungry.com/~pere/blog/Jami_Ring__finally_functioning_peer_to_peer_communication_client.html">I
 wrote</a> about <a href="https://jami.net/">the Jami communication
 client</a>, capable of peer-to-peer encrypted communication.  It
 handle both messages, audio and video.  It uses distributed hash
 wrote</a> about <a href="https://jami.net/">the Jami communication
 client</a>, capable of peer-to-peer encrypted communication.  It
 handle both messages, audio and video.  It uses distributed hash
@@ -301,7 +787,7 @@ activities, please send Bitcoin donations to my address
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -310,14 +796,14 @@ activities, please send Bitcoin donations to my address
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Jami_Ring__finally_functioning_peer_to_peer_communication_client.html">Jami/Ring, finally functioning peer to peer communication client</a>
+        <a href="http://www.hungry.com/~pere/blog/Jami_Ring__finally_functioning_peer_to_peer_communication_client.html">Jami/Ring, finally functioning peer to peer communication client</a>
       </div>
       <div class="date">
         19th June 2019
       </div>
       <div class="body">
         <p>Some years ago, in 2016, I
       </div>
       <div class="date">
         19th June 2019
       </div>
       <div class="body">
         <p>Some years ago, in 2016, I
-<a href="http://people.skolelinux.org/pere/blog/Experience_and_updated_recipe_for_using_the_Signal_app_without_a_mobile_phone.html">wrote
+<a href="http://www.hungry.com/~pere/blog/Experience_and_updated_recipe_for_using_the_Signal_app_without_a_mobile_phone.html">wrote
 for the first time about</a> the Ring peer to peer messaging system.
 It would provide messaging without any central server coordinating the
 system and without requiring all users to register a phone number or
 for the first time about</a> the Ring peer to peer messaging system.
 It would provide messaging without any central server coordinating the
 system and without requiring all users to register a phone number or
@@ -381,7 +867,7 @@ activities, please send Bitcoin donations to my address
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -390,7 +876,7 @@ activities, please send Bitcoin donations to my address
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Fetching_trusted_timestamps_using_the_rfc3161ng_python_module.html">Fetching trusted timestamps using the rfc3161ng python module</a>
+        <a href="http://www.hungry.com/~pere/blog/Fetching_trusted_timestamps_using_the_rfc3161ng_python_module.html">Fetching trusted timestamps using the rfc3161ng python module</a>
       </div>
       <div class="date">
          8th October 2018
       </div>
       <div class="date">
          8th October 2018
@@ -398,10 +884,10 @@ activities, please send Bitcoin donations to my address
       <div class="body">
         <p>I have  earlier covered the basics of trusted timestamping using the
 'openssl ts' client.  See blog post for
       <div class="body">
         <p>I have  earlier covered the basics of trusted timestamping using the
 'openssl ts' client.  See blog post for
-<a href="http://people.skolelinux.org/pere/blog/Public_Trusted_Timestamping_services_for_everyone.html">2014</a>,
-<a href="http://people.skolelinux.org/pere/blog/syslog_trusted_timestamp___chain_of_trusted_timestamps_for_your_syslog.html">2016</a>
+<a href="http://www.hungry.com/~pere/blog/Public_Trusted_Timestamping_services_for_everyone.html">2014</a>,
+<a href="http://www.hungry.com/~pere/blog/syslog_trusted_timestamp___chain_of_trusted_timestamps_for_your_syslog.html">2016</a>
 and
 and
-<a href="http://people.skolelinux.org/pere/blog/Idea_for_storing_trusted_timestamps_in_a_Noark_5_archive.html">2017</a>
+<a href="http://www.hungry.com/~pere/blog/Idea_for_storing_trusted_timestamps_in_a_Noark_5_archive.html">2017</a>
 for those stories.  But some times I want to integrate the timestamping
 in other code, and recently I needed to integrate it into Python.
 After searching a bit, I found
 for those stories.  But some times I want to integrate the timestamping
 in other code, and recently I needed to integrate it into Python.
 After searching a bit, I found
@@ -499,7 +985,7 @@ activities, please send Bitcoin donations to my address
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/noark5">noark5</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/noark5">noark5</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -508,7 +994,7 @@ activities, please send Bitcoin donations to my address
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Stortingsflertallet_g_r_inn_for_ny_IP_basert_sensurinfrastruktur_i_Norge.html">Stortingsflertallet gÃ¥r inn for ny IP-basert sensurinfrastruktur i Norge</a>
+        <a href="http://www.hungry.com/~pere/blog/Stortingsflertallet_g_r_inn_for_ny_IP_basert_sensurinfrastruktur_i_Norge.html">Stortingsflertallet gÃ¥r inn for ny IP-basert sensurinfrastruktur i Norge</a>
       </div>
       <div class="date">
         24th April 2018
       </div>
       <div class="date">
         24th April 2018
@@ -533,7 +1019,7 @@ endrer seg.  Det er ingen betryggende tanke.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -542,7 +1028,7 @@ endrer seg.  Det er ingen betryggende tanke.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/_Rapporten_ser_ikke_p__informasjonssikkerhet_knyttet_til_personlig_integritet_.html">«Rapporten ser ikke pÃ¥ informasjonssikkerhet knyttet til personlig integritet»</a>
+        <a href="http://www.hungry.com/~pere/blog/_Rapporten_ser_ikke_p__informasjonssikkerhet_knyttet_til_personlig_integritet_.html">«Rapporten ser ikke pÃ¥ informasjonssikkerhet knyttet til personlig integritet»</a>
       </div>
       <div class="date">
         27th June 2017
       </div>
       <div class="date">
         27th June 2017
@@ -590,7 +1076,7 @@ gevist og samfunnsnytte.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -599,7 +1085,7 @@ gevist og samfunnsnytte.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/How_to_talk_with_your_loved_ones_in_private.html">How to talk with your loved ones in private</a>
+        <a href="http://www.hungry.com/~pere/blog/How_to_talk_with_your_loved_ones_in_private.html">How to talk with your loved ones in private</a>
       </div>
       <div class="date">
          7th November 2016
       </div>
       <div class="date">
          7th November 2016
@@ -726,7 +1212,7 @@ less invaded.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -735,7 +1221,7 @@ less invaded.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Aktivitetsb_nd_som_beskytter_privatsf_ren.html">AktivitetsbÃ¥nd som beskytter privatsfæren</a>
+        <a href="http://www.hungry.com/~pere/blog/Aktivitetsb_nd_som_beskytter_privatsf_ren.html">AktivitetsbÃ¥nd som beskytter privatsfæren</a>
       </div>
       <div class="date">
          3rd November 2016
       </div>
       <div class="date">
          3rd November 2016
@@ -760,7 +1246,7 @@ inngrep i privatsfæren og sender informasjonen ut av huset til folk og
 organisasjoner jeg ikke Ã¸nsker Ã¥ dele aktivitets- og helseinformasjon
 med.  Jeg Ã¸nsker et alternativ som <em>ikke</em> sender informasjon til
 skyen, men derimot bruker
 organisasjoner jeg ikke Ã¸nsker Ã¥ dele aktivitets- og helseinformasjon
 med.  Jeg Ã¸nsker et alternativ som <em>ikke</em> sender informasjon til
 skyen, men derimot bruker
-<a href="http://people.skolelinux.org/pere/blog/Fri_og__pen_standard__slik_Digistan_ser_det.html">en
+<a href="http://www.hungry.com/~pere/blog/Fri_og__pen_standard__slik_Digistan_ser_det.html">en
 fritt og Ã¥pent standardisert</a> protokoll (eller i det minste en
 dokumentert protokoll uten patent- og opphavsrettslige
 bruksbegrensinger) til Ã¥ kommunisere med datautstyr jeg kontrollerer.
 fritt og Ã¥pent standardisert</a> protokoll (eller i det minste en
 dokumentert protokoll uten patent- og opphavsrettslige
 bruksbegrensinger) til Ã¥ kommunisere med datautstyr jeg kontrollerer.
@@ -802,7 +1288,7 @@ dele sine personopplysninger med leverandøren.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -811,14 +1297,14 @@ dele sine personopplysninger med leverandøren.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Experience_and_updated_recipe_for_using_the_Signal_app_without_a_mobile_phone.html">Experience and updated recipe for using the Signal app without a mobile phone</a>
+        <a href="http://www.hungry.com/~pere/blog/Experience_and_updated_recipe_for_using_the_Signal_app_without_a_mobile_phone.html">Experience and updated recipe for using the Signal app without a mobile phone</a>
       </div>
       <div class="date">
         10th October 2016
       </div>
       <div class="body">
         <p>In July
       </div>
       <div class="date">
         10th October 2016
       </div>
       <div class="body">
         <p>In July
-<a href="http://people.skolelinux.org/pere/blog/How_to_use_the_Signal_app_if_you_only_have_a_land_line__ie_no_mobile_phone_.html">I
+<a href="http://www.hungry.com/~pere/blog/How_to_use_the_Signal_app_if_you_only_have_a_land_line__ie_no_mobile_phone_.html">I
 wrote how to get the Signal Chrome/Chromium app working</a> without
 the ability to receive SMS messages (aka without a cell phone).  It is
 time to share some experiences and provide an updated setup.</p>
 wrote how to get the Signal Chrome/Chromium app working</a> without
 the ability to receive SMS messages (aka without a cell phone).  It is
 time to share some experiences and provide an updated setup.</p>
@@ -998,7 +1484,7 @@ activities, please send Bitcoin donations to my address
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -1007,7 +1493,7 @@ activities, please send Bitcoin donations to my address
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/NRKs_kildevern_n_r_NRK_epost_deles_med_utenlands_etterretning_.html">NRKs kildevern nÃ¥r NRK-epost deles med utenlands etterretning?</a>
+        <a href="http://www.hungry.com/~pere/blog/NRKs_kildevern_n_r_NRK_epost_deles_med_utenlands_etterretning_.html">NRKs kildevern nÃ¥r NRK-epost deles med utenlands etterretning?</a>
       </div>
       <div class="date">
          8th October 2016
       </div>
       <div class="date">
          8th October 2016
@@ -1134,7 +1620,7 @@ slik flombelysning pÃ¥ sitt privatliv.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/betalkontant">betalkontant</a>, <a href="https://people.skolelinux.org/pere/blog/tags/dld">dld</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/betalkontant">betalkontant</a>, <a href="http://www.hungry.com/~pere/blog/tags/dld">dld</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -1143,7 +1629,7 @@ slik flombelysning pÃ¥ sitt privatliv.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Unlocking_HTC_Desire_HD_on_Linux_using_unruu_and_fastboot.html">Unlocking HTC Desire HD on Linux using unruu and fastboot</a>
+        <a href="http://www.hungry.com/~pere/blog/Unlocking_HTC_Desire_HD_on_Linux_using_unruu_and_fastboot.html">Unlocking HTC Desire HD on Linux using unruu and fastboot</a>
       </div>
       <div class="date">
          7th July 2016
       </div>
       <div class="date">
          7th July 2016
@@ -1231,7 +1717,7 @@ install <a href="https://www.debian.org/">Debian</a> on it. :)</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/bootsystem">bootsystem</a>, <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/bootsystem">bootsystem</a>, <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -1240,7 +1726,7 @@ install <a href="https://www.debian.org/">Debian</a> on it. :)</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/How_to_use_the_Signal_app_if_you_only_have_a_land_line__ie_no_mobile_phone_.html">How to use the Signal app if you only have a land line (ie no mobile phone)</a>
+        <a href="http://www.hungry.com/~pere/blog/How_to_use_the_Signal_app_if_you_only_have_a_land_line__ie_no_mobile_phone_.html">How to use the Signal app if you only have a land line (ie no mobile phone)</a>
       </div>
       <div class="date">
          3rd July 2016
       </div>
       <div class="date">
          3rd July 2016
@@ -1348,7 +1834,7 @@ using them, so I am stuck with Signal for now.</p>
 
 <p><strong>Update 2017-01-10</strong>: There is an updated blog post
 on this topic in
 
 <p><strong>Update 2017-01-10</strong>: There is an updated blog post
 on this topic in
-<a href="http://people.skolelinux.org/pere/blog/Experience_and_updated_recipe_for_using_the_Signal_app_without_a_mobile_phone.html">Experience
+<a href="http://www.hungry.com/~pere/blog/Experience_and_updated_recipe_for_using_the_Signal_app_without_a_mobile_phone.html">Experience
 and updated recipe for using the Signal app without a mobile
 phone</a>.</p>
 
 and updated recipe for using the Signal app without a mobile
 phone</a>.</p>
 
@@ -1356,7 +1842,7 @@ phone</a>.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -1365,14 +1851,14 @@ phone</a>.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/syslog_trusted_timestamp___chain_of_trusted_timestamps_for_your_syslog.html">syslog-trusted-timestamp - chain of trusted timestamps for your syslog</a>
+        <a href="http://www.hungry.com/~pere/blog/syslog_trusted_timestamp___chain_of_trusted_timestamps_for_your_syslog.html">syslog-trusted-timestamp - chain of trusted timestamps for your syslog</a>
       </div>
       <div class="date">
          2nd April 2016
       </div>
       <div class="body">
         <p>Two years ago, I had
       </div>
       <div class="date">
          2nd April 2016
       </div>
       <div class="body">
         <p>Two years ago, I had
-<a href="http://people.skolelinux.org/pere/blog/Public_Trusted_Timestamping_services_for_everyone.html">a
+<a href="http://www.hungry.com/~pere/blog/Public_Trusted_Timestamping_services_for_everyone.html">a
 look at trusted timestamping options available</a>, and among
 other things noted a still open
 <a href="https://bugs.debian.org/742553">bug in the tsget script</a>
 look at trusted timestamping options available</a>, and among
 other things noted a still open
 <a href="https://bugs.debian.org/742553">bug in the tsget script</a>
@@ -1483,7 +1969,7 @@ activities, please send Bitcoin donations to my address
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -1492,7 +1978,7 @@ activities, please send Bitcoin donations to my address
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Always_download_Debian_packages_using_Tor___the_simple_recipe.html">Always download Debian packages using Tor - the simple recipe</a>
+        <a href="http://www.hungry.com/~pere/blog/Always_download_Debian_packages_using_Tor___the_simple_recipe.html">Always download Debian packages using Tor - the simple recipe</a>
       </div>
       <div class="date">
         15th January 2016
       </div>
       <div class="date">
         15th January 2016
@@ -1562,7 +2048,7 @@ system.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -1571,7 +2057,7 @@ system.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/PGP_key_transition_statement_for_key_EE4E02F9.html">PGP key transition statement for key EE4E02F9</a>
+        <a href="http://www.hungry.com/~pere/blog/PGP_key_transition_statement_for_key_EE4E02F9.html">PGP key transition statement for key EE4E02F9</a>
       </div>
       <div class="date">
         17th November 2015
       </div>
       <div class="date">
         17th November 2015
@@ -1584,7 +2070,7 @@ smart card</a> for daily use, and learning how to do it and finding
 time to sit down with an offline machine almost took forever.  But
 finally I've been able to complete the process, and have now moved
 from my old GPG key to a new GPG key.  See
 time to sit down with an offline machine almost took forever.  But
 finally I've been able to complete the process, and have now moved
 from my old GPG key to a new GPG key.  See
-<a href="http://people.skolelinux.org/pere/blog/images/2015-11-17-new-gpg-key-transition.txt">the
+<a href="http://www.hungry.com/~pere/blog/images/2015-11-17-new-gpg-key-transition.txt">the
 full transition statement, signed with both my old and new key</a> for
 the details.  This is my new key:</p>
 
 full transition statement, signed with both my old and new key</a> for
 the details.  This is my new key:</p>
 
@@ -1611,7 +2097,7 @@ you have a similarly signed transition statement to present.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -1620,7 +2106,7 @@ you have a similarly signed transition statement to present.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Lawrence_Lessig_interviewed_Edward_Snowden_a_year_ago.html">Lawrence Lessig interviewed Edward Snowden a year ago</a>
+        <a href="http://www.hungry.com/~pere/blog/Lawrence_Lessig_interviewed_Edward_Snowden_a_year_ago.html">Lawrence Lessig interviewed Edward Snowden a year ago</a>
       </div>
       <div class="date">
         19th October 2015
       </div>
       <div class="date">
         19th October 2015
@@ -1652,7 +2138,7 @@ that this is the political leadership we have here in Norway.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -1661,7 +2147,7 @@ that this is the political leadership we have here in Norway.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Alle_Stortingets_mobiltelefoner_kontrolleres_fra_USA___.html">Alle Stortingets mobiltelefoner kontrolleres fra USA...</a>
+        <a href="http://www.hungry.com/~pere/blog/Alle_Stortingets_mobiltelefoner_kontrolleres_fra_USA___.html">Alle Stortingets mobiltelefoner kontrolleres fra USA...</a>
       </div>
       <div class="date">
          7th October 2015
       </div>
       <div class="date">
          7th October 2015
@@ -1727,7 +2213,7 @@ hvordan ting konkret fungerer der.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/offentlig innsyn">offentlig innsyn</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/stortinget">stortinget</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/offentlig innsyn">offentlig innsyn</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/stortinget">stortinget</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -1736,7 +2222,7 @@ hvordan ting konkret fungerer der.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Good_bye_subkeys_pgp_net__welcome_pool_sks_keyservers_net.html">Good bye subkeys.pgp.net, welcome pool.sks-keyservers.net</a>
+        <a href="http://www.hungry.com/~pere/blog/Good_bye_subkeys_pgp_net__welcome_pool_sks_keyservers_net.html">Good bye subkeys.pgp.net, welcome pool.sks-keyservers.net</a>
       </div>
       <div class="date">
         10th September 2014
       </div>
       <div class="date">
         10th September 2014
@@ -1796,7 +2282,7 @@ for a future version of the protocol?</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -1805,7 +2291,7 @@ for a future version of the protocol?</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/FreedomBox_milestone___all_packages_now_in_Debian_Sid.html">FreedomBox milestone - all packages now in Debian Sid</a>
+        <a href="http://www.hungry.com/~pere/blog/FreedomBox_milestone___all_packages_now_in_Debian_Sid.html">FreedomBox milestone - all packages now in Debian Sid</a>
       </div>
       <div class="date">
         15th April 2014
       </div>
       <div class="date">
         15th April 2014
@@ -1891,7 +2377,7 @@ mailing list</a> if you want to help make this vision come true.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/freedombox">freedombox</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>, <a href="https://people.skolelinux.org/pere/blog/tags/web">web</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/freedombox">freedombox</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>, <a href="http://www.hungry.com/~pere/blog/tags/web">web</a>.
         
         
       </div>
         
         
       </div>
@@ -1900,7 +2386,7 @@ mailing list</a> if you want to help make this vision come true.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/S3QL__a_locally_mounted_cloud_file_system___nice_free_software.html">S3QL, a locally mounted cloud file system - nice free software</a>
+        <a href="http://www.hungry.com/~pere/blog/S3QL__a_locally_mounted_cloud_file_system___nice_free_software.html">S3QL, a locally mounted cloud file system - nice free software</a>
       </div>
       <div class="date">
          9th April 2014
       </div>
       <div class="date">
          9th April 2014
@@ -2164,7 +2650,7 @@ and Pamela Smith.  Please  have a look.</p>
 check out the mounted S3QL file system to see if it would be usable as
 a home directory (in other word, that it provided POSIX semantics when
 it come to locking and umask handling etc).  Running
 check out the mounted S3QL file system to see if it would be usable as
 a home directory (in other word, that it provided POSIX semantics when
 it come to locking and umask handling etc).  Running
-<a href="http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html">my
+<a href="http://www.hungry.com/~pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html">my
 test code to check file system semantics</a>, I was happy to discover that
 no error was found.  So the file system can be used for home
 directories, if one chooses to do so.</p>
 test code to check file system semantics</a>, I was happy to discover that
 no error was found.  So the file system can be used for home
 directories, if one chooses to do so.</p>
@@ -2185,7 +2671,7 @@ activities, please send Bitcoin donations to my address
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nice free software">nice free software</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/nice free software">nice free software</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -2194,7 +2680,7 @@ activities, please send Bitcoin donations to my address
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/EU_domstolen_bekreftet_i_dag_at_datalagringsdirektivet_er_ulovlig.html">EU-domstolen bekreftet i dag at datalagringsdirektivet er ulovlig</a>
+        <a href="http://www.hungry.com/~pere/blog/EU_domstolen_bekreftet_i_dag_at_datalagringsdirektivet_er_ulovlig.html">EU-domstolen bekreftet i dag at datalagringsdirektivet er ulovlig</a>
       </div>
       <div class="date">
          8th April 2014
       </div>
       <div class="date">
          8th April 2014
@@ -2206,7 +2692,7 @@ strid med borgernes grunnleggende rettigheter.  Hvis du lurer pÃ¥ hva
 datalagringsdirektivet er for noe, sÃ¥ er det
 <a href="http://tv.nrk.no/program/koid75005313/tema-dine-digitale-spor-datalagringsdirektivet">en
 flott dokumentar tilgjengelig hos NRK</a> som jeg tidligere
 datalagringsdirektivet er for noe, sÃ¥ er det
 <a href="http://tv.nrk.no/program/koid75005313/tema-dine-digitale-spor-datalagringsdirektivet">en
 flott dokumentar tilgjengelig hos NRK</a> som jeg tidligere
-<a href="http://people.skolelinux.org/pere/blog/Dokumentaren_om_Datalagringsdirektivet_sendes_endelig_p__NRK.html">har
+<a href="http://www.hungry.com/~pere/blog/Dokumentaren_om_Datalagringsdirektivet_sendes_endelig_p__NRK.html">har
 anbefalt</a> alle Ã¥ se.</p>
 
 <p>Her er et liten knippe nyhetsoppslag om saken, og jeg regner med at
 anbefalt</a> alle Ã¥ se.</p>
 
 <p>Her er et liten knippe nyhetsoppslag om saken, og jeg regner med at
@@ -2278,7 +2764,7 @@ de ord</a>.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/dld">dld</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/dld">dld</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -2287,7 +2773,7 @@ de ord</a>.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Dokumentaren_om_Datalagringsdirektivet_sendes_endelig_p__NRK.html">Dokumentaren om Datalagringsdirektivet sendes endelig pÃ¥ NRK</a>
+        <a href="http://www.hungry.com/~pere/blog/Dokumentaren_om_Datalagringsdirektivet_sendes_endelig_p__NRK.html">Dokumentaren om Datalagringsdirektivet sendes endelig pÃ¥ NRK</a>
       </div>
       <div class="date">
         26th March 2014
       </div>
       <div class="date">
         26th March 2014
@@ -2324,7 +2810,7 @@ side om filmen om datalagringsdirektivet</a> om fem dager.  Hold et
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/dld">dld</a>, <a href="https://people.skolelinux.org/pere/blog/tags/freedombox">freedombox</a>, <a href="https://people.skolelinux.org/pere/blog/tags/mesh network">mesh network</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/dld">dld</a>, <a href="http://www.hungry.com/~pere/blog/tags/freedombox">freedombox</a>, <a href="http://www.hungry.com/~pere/blog/tags/mesh network">mesh network</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -2333,7 +2819,7 @@ side om filmen om datalagringsdirektivet</a> om fem dager.  Hold et
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Public_Trusted_Timestamping_services_for_everyone.html">Public Trusted Timestamping services for everyone</a>
+        <a href="http://www.hungry.com/~pere/blog/Public_Trusted_Timestamping_services_for_everyone.html">Public Trusted Timestamping services for everyone</a>
       </div>
       <div class="date">
         25th March 2014
       </div>
       <div class="date">
         25th March 2014
@@ -2433,7 +2919,7 @@ to set up?</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -2442,7 +2928,7 @@ to set up?</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Freedombox_on_Dreamplug__Raspberry_Pi_and_virtual_x86_machine.html">Freedombox on Dreamplug, Raspberry Pi and virtual x86 machine</a>
+        <a href="http://www.hungry.com/~pere/blog/Freedombox_on_Dreamplug__Raspberry_Pi_and_virtual_x86_machine.html">Freedombox on Dreamplug, Raspberry Pi and virtual x86 machine</a>
       </div>
       <div class="date">
         14th March 2014
       </div>
       <div class="date">
         14th March 2014
@@ -2510,7 +2996,7 @@ mailing list</a> if you want to help make this vision come true.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/freedombox">freedombox</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>, <a href="https://people.skolelinux.org/pere/blog/tags/web">web</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/freedombox">freedombox</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>, <a href="http://www.hungry.com/~pere/blog/tags/web">web</a>.
         
         
       </div>
         
         
       </div>
@@ -2519,7 +3005,7 @@ mailing list</a> if you want to help make this vision come true.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/A_fist_full_of_non_anonymous_Bitcoins.html">A fist full of non-anonymous Bitcoins</a>
+        <a href="http://www.hungry.com/~pere/blog/A_fist_full_of_non_anonymous_Bitcoins.html">A fist full of non-anonymous Bitcoins</a>
       </div>
       <div class="date">
         29th January 2014
       </div>
       <div class="date">
         29th January 2014
@@ -2607,7 +3093,7 @@ activities, please send Bitcoin donations to my address
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/usenix">usenix</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/bitcoin">bitcoin</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/usenix">usenix</a>.
         
         
       </div>
         
         
       </div>
@@ -2616,7 +3102,7 @@ activities, please send Bitcoin donations to my address
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/All_drones_should_be_radio_marked_with_what_they_do_and_who_they_belong_to.html">All drones should be radio marked with what they do and who they belong to</a>
+        <a href="http://www.hungry.com/~pere/blog/All_drones_should_be_radio_marked_with_what_they_do_and_who_they_belong_to.html">All drones should be radio marked with what they do and who they belong to</a>
       </div>
       <div class="date">
         21st November 2013
       </div>
       <div class="date">
         21st November 2013
@@ -2670,7 +3156,7 @@ should not have privacy.  It is people who need privacy.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/robot">robot</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/robot">robot</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -2679,7 +3165,7 @@ should not have privacy.  It is people who need privacy.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Det_er_jo_makta_som_er_mest_s_rbar_ved_massiv_overv_kning_av_Internett.html">Det er jo makta som er mest sÃ¥rbar ved massiv overvÃ¥kning av Internett</a>
+        <a href="http://www.hungry.com/~pere/blog/Det_er_jo_makta_som_er_mest_s_rbar_ved_massiv_overv_kning_av_Internett.html">Det er jo makta som er mest sÃ¥rbar ved massiv overvÃ¥kning av Internett</a>
       </div>
       <div class="date">
         26th October 2013
       </div>
       <div class="date">
         26th October 2013
@@ -2728,7 +3214,7 @@ over.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/stortinget">stortinget</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/stortinget">stortinget</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -2737,7 +3223,7 @@ over.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html">Videos about the Freedombox project - for inspiration and learning</a>
+        <a href="http://www.hungry.com/~pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html">Videos about the Freedombox project - for inspiration and learning</a>
       </div>
       <div class="date">
         27th September 2013
       </div>
       <div class="date">
         27th September 2013
@@ -2807,7 +3293,7 @@ mailing list</a> if you want to help make this vision come true.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/freedombox">freedombox</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>, <a href="https://people.skolelinux.org/pere/blog/tags/web">web</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/freedombox">freedombox</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>, <a href="http://www.hungry.com/~pere/blog/tags/web">web</a>.
         
         
       </div>
         
         
       </div>
@@ -2816,7 +3302,7 @@ mailing list</a> if you want to help make this vision come true.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html">Recipe to test the Freedombox project on amd64 or Raspberry Pi</a>
+        <a href="http://www.hungry.com/~pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html">Recipe to test the Freedombox project on amd64 or Raspberry Pi</a>
       </div>
       <div class="date">
         10th September 2013
       </div>
       <div class="date">
         10th September 2013
@@ -2949,7 +3435,7 @@ default password is 'secret'.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/freedombox">freedombox</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>, <a href="https://people.skolelinux.org/pere/blog/tags/web">web</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/freedombox">freedombox</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>, <a href="http://www.hungry.com/~pere/blog/tags/web">web</a>.
         
         
       </div>
         
         
       </div>
@@ -2958,7 +3444,7 @@ default password is 'secret'.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Dr__Richard_Stallman__founder_of_Free_Software_Foundation__give_a_talk_in_Oslo_March_1st_2013.html">Dr. Richard Stallman, founder of Free Software Foundation, give a talk in Oslo March 1st 2013</a>
+        <a href="http://www.hungry.com/~pere/blog/Dr__Richard_Stallman__founder_of_Free_Software_Foundation__give_a_talk_in_Oslo_March_1st_2013.html">Dr. Richard Stallman, founder of Free Software Foundation, give a talk in Oslo March 1st 2013</a>
       </div>
       <div class="date">
         27th February 2013
       </div>
       <div class="date">
         27th February 2013
@@ -2991,7 +3477,7 @@ page</a> for the location details.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -3000,7 +3486,7 @@ page</a> for the location details.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/1_4_millioner_potensielle_journalistsamtaler_i_politiets_hender.html">1.4 millioner potensielle journalistsamtaler i politiets hender</a>
+        <a href="http://www.hungry.com/~pere/blog/1_4_millioner_potensielle_journalistsamtaler_i_politiets_hender.html">1.4 millioner potensielle journalistsamtaler i politiets hender</a>
       </div>
       <div class="date">
         27th November 2012
       </div>
       <div class="date">
         27th November 2012
@@ -3064,7 +3550,7 @@ mange Ã¥r nÃ¥.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/dld">dld</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/dld">dld</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -3073,14 +3559,14 @@ mange Ã¥r nÃ¥.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/FAD_tvinger_igjennom_BankID_tilgang_til_personsensitiv_informasjon_om_meg.html">FAD tvinger igjennom BankID-tilgang til personsensitiv informasjon om meg</a>
+        <a href="http://www.hungry.com/~pere/blog/FAD_tvinger_igjennom_BankID_tilgang_til_personsensitiv_informasjon_om_meg.html">FAD tvinger igjennom BankID-tilgang til personsensitiv informasjon om meg</a>
       </div>
       <div class="date">
         21st November 2012
       </div>
       <div class="body">
         <p>I dag fikk jeg svar fra fornyingsdepartementet pÃ¥ min
       </div>
       <div class="date">
         21st November 2012
       </div>
       <div class="body">
         <p>I dag fikk jeg svar fra fornyingsdepartementet pÃ¥ min
-<a href="http://people.skolelinux.org/pere/blog/BankID_skal_ikke_gi_tilgang_til_min_personsensitive_informasjon.html">forespørsel
+<a href="http://www.hungry.com/~pere/blog/BankID_skal_ikke_gi_tilgang_til_min_personsensitive_informasjon.html">forespørsel
 om Ã¥ reservere meg mot at BankID</a> brukes til Ã¥ fÃ¥ tilgang til
 informasjon om meg via ID-porten.  Like etter at svaret kom fikk jeg
 beskjed om at min henvendelse har fÃ¥tt
 om Ã¥ reservere meg mot at BankID</a> brukes til Ã¥ fÃ¥ tilgang til
 informasjon om meg via ID-porten.  Like etter at svaret kom fikk jeg
 beskjed om at min henvendelse har fÃ¥tt
@@ -3170,7 +3656,7 @@ pÃ¥ mine vegne.  BankID er ikke en slik.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/bankid">bankid</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/bankid">bankid</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -3179,7 +3665,7 @@ pÃ¥ mine vegne.  BankID er ikke en slik.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/BankID_skal_ikke_gi_tilgang_til_min_personsensitive_informasjon.html">BankID skal ikke gi tilgang til min personsensitive informasjon</a>
+        <a href="http://www.hungry.com/~pere/blog/BankID_skal_ikke_gi_tilgang_til_min_personsensitive_informasjon.html">BankID skal ikke gi tilgang til min personsensitive informasjon</a>
       </div>
       <div class="date">
         16th November 2012
       </div>
       <div class="date">
         16th November 2012
@@ -3190,7 +3676,7 @@ pÃ¥ mine vegne.  BankID er ikke en slik.</p>
 inngÃ¥tt kontrakt med BankID Norge om bruk av BankID for Ã¥ la borgerne
 logge inn pÃ¥ offentlige nettsider der en kan fÃ¥ tilgang til
 personsensitiv informasjon.  Jeg skrev i 2009 litt om
 inngÃ¥tt kontrakt med BankID Norge om bruk av BankID for Ã¥ la borgerne
 logge inn pÃ¥ offentlige nettsider der en kan fÃ¥ tilgang til
 personsensitiv informasjon.  Jeg skrev i 2009 litt om
-<a href="http://people.skolelinux.org/pere/blog/Jeg_vil_ikke_ha_BankID.html">hvorfor
+<a href="http://www.hungry.com/~pere/blog/Jeg_vil_ikke_ha_BankID.html">hvorfor
 jeg ikke vil ha BankID</a> &mdash; jeg stoler ikke nok pÃ¥ en bank til
 Ã¥ gi dem mulighet til Ã¥ inngÃ¥ avtaler pÃ¥ mine vegne.  Jeg forlanger at
 jeg skal være involvert nÃ¥r det skal inngÃ¥s avtaler pÃ¥ mine vegne.</p>
 jeg ikke vil ha BankID</a> &mdash; jeg stoler ikke nok pÃ¥ en bank til
 Ã¥ gi dem mulighet til Ã¥ inngÃ¥ avtaler pÃ¥ mine vegne.  Jeg forlanger at
 jeg skal være involvert nÃ¥r det skal inngÃ¥s avtaler pÃ¥ mine vegne.</p>
@@ -3277,7 +3763,7 @@ pÃ¥ bÃ¥de "min" offentlige og private nøkkel.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/bankid">bankid</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/bankid">bankid</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -3286,7 +3772,7 @@ pÃ¥ bÃ¥de "min" offentlige og private nøkkel.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/The_European_Central_Bank__ECB__take_a_look_at_bitcoin.html">The European Central Bank (ECB) take a look at bitcoin</a>
+        <a href="http://www.hungry.com/~pere/blog/The_European_Central_Bank__ECB__take_a_look_at_bitcoin.html">The European Central Bank (ECB) take a look at bitcoin</a>
       </div>
       <div class="date">
          4th November 2012
       </div>
       <div class="date">
          4th November 2012
@@ -3319,7 +3805,7 @@ wealth is available.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/bitcoin">bitcoin</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -3328,7 +3814,7 @@ wealth is available.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/The_fight_for_freedom_and_privacy.html">The fight for freedom and privacy</a>
+        <a href="http://www.hungry.com/~pere/blog/The_fight_for_freedom_and_privacy.html">The fight for freedom and privacy</a>
       </div>
       <div class="date">
         18th October 2012
       </div>
       <div class="date">
         18th October 2012
@@ -3360,7 +3846,7 @@ transforming our society to a huge Panopticon on our own.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -3369,7 +3855,7 @@ transforming our society to a huge Panopticon on our own.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Using_NVD_and_CPE_to_track_CVEs_in_locally_maintained_software.html">Using NVD and CPE to track CVEs in locally maintained software</a>
+        <a href="http://www.hungry.com/~pere/blog/Using_NVD_and_CPE_to_track_CVEs_in_locally_maintained_software.html">Using NVD and CPE to track CVEs in locally maintained software</a>
       </div>
       <div class="date">
         28th January 2011
       </div>
       <div class="date">
         28th January 2011
@@ -3450,7 +3936,7 @@ for their packages.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -3459,7 +3945,7 @@ for their packages.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Some_thoughts_on_BitCoins.html">Some thoughts on BitCoins</a>
+        <a href="http://www.hungry.com/~pere/blog/Some_thoughts_on_BitCoins.html">Some thoughts on BitCoins</a>
       </div>
       <div class="date">
         11th December 2010
       </div>
       <div class="date">
         11th December 2010
@@ -3546,7 +4032,7 @@ equally valid for gold, which was used as a currency for many years.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin</a>, <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/bitcoin">bitcoin</a>, <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -3555,7 +4041,7 @@ equally valid for gold, which was used as a currency for many years.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Pornoskannerne_p__flyplassene_bedrer_visst_ikke_sikkerheten.html">Pornoskannerne pÃ¥ flyplassene bedrer visst ikke sikkerheten</a>
+        <a href="http://www.hungry.com/~pere/blog/Pornoskannerne_p__flyplassene_bedrer_visst_ikke_sikkerheten.html">Pornoskannerne pÃ¥ flyplassene bedrer visst ikke sikkerheten</a>
       </div>
       <div class="date">
         11th December 2010
       </div>
       <div class="date">
         11th December 2010
@@ -3584,7 +4070,7 @@ kan.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -3593,7 +4079,7 @@ kan.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html">Now accepting bitcoins - anonymous and distributed p2p crypto-money</a>
+        <a href="http://www.hungry.com/~pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html">Now accepting bitcoins - anonymous and distributed p2p crypto-money</a>
       </div>
       <div class="date">
         10th December 2010
       </div>
       <div class="date">
         10th December 2010
@@ -3646,7 +4132,7 @@ donations to the address
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin</a>, <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/bitcoin">bitcoin</a>, <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -3655,7 +4141,7 @@ donations to the address
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/DND_hedrer_overv_kning_av_barn_med_Rosingsprisen.html">DND hedrer overvÃ¥kning av barn med Rosingsprisen</a>
+        <a href="http://www.hungry.com/~pere/blog/DND_hedrer_overv_kning_av_barn_med_Rosingsprisen.html">DND hedrer overvÃ¥kning av barn med Rosingsprisen</a>
       </div>
       <div class="date">
         23rd November 2010
       </div>
       <div class="date">
         23rd November 2010
@@ -3703,7 +4189,7 @@ lese alle de tre bøkene.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -3712,7 +4198,7 @@ lese alle de tre bøkene.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Datatilsynet_mangler_verkt_yet_som_trengs_for___kontrollere_kameraoverv_kning.html">Datatilsynet mangler verktøyet som trengs for Ã¥ kontrollere kameraovervÃ¥kning</a>
+        <a href="http://www.hungry.com/~pere/blog/Datatilsynet_mangler_verkt_yet_som_trengs_for___kontrollere_kameraoverv_kning.html">Datatilsynet mangler verktøyet som trengs for Ã¥ kontrollere kameraovervÃ¥kning</a>
       </div>
       <div class="date">
          9th November 2010
       </div>
       <div class="date">
          9th November 2010
@@ -3744,7 +4230,7 @@ søke pÃ¥ i &lt;URL:
 <a href="http://hetti.datatilsynet.no/melding/report_search.pl">http://hetti.datatilsynet.no/melding/report_search.pl</a> &gt;.
 Kartreferanse for kameraet er tilgjengelig fra
 &lt;URL:
 <a href="http://hetti.datatilsynet.no/melding/report_search.pl">http://hetti.datatilsynet.no/melding/report_search.pl</a> &gt;.
 Kartreferanse for kameraet er tilgjengelig fra
 &lt;URL:
-<a href="http://people.skolelinux.no/pere/surveillance-norway/?zoom=17&lat=59.94918&lon=10.76962&layers=B0T">http://people.skolelinux.no/pere/surveillance-norway/?zoom=17&lat=59.94918&lon=10.76962&layers=B0T</a> &gt;.
+<a href="http://www.hungry.com/~pere/surveillance-norway/?zoom=17&lat=59.94918&lon=10.76962&layers=B0T">https://people.skolelinux.no/pere/surveillance-norway/?zoom=17&lat=59.94918&lon=10.76962&layers=B0T</a> &gt;.
 
 <p>Kan dere fortelle meg om dette kameraet er registrert hos
 Datatilsynet som det skal være i henhold til lovverket?</p>
 
 <p>Kan dere fortelle meg om dette kameraet er registrert hos
 Datatilsynet som det skal være i henhold til lovverket?</p>
@@ -3835,7 +4321,7 @@ ting, sÃ¥ et slikt lovverk i Norge tror jeg hadde vært nyttig.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance</a>.
         
         
       </div>
         
         
       </div>
@@ -3844,7 +4330,7 @@ ting, sÃ¥ et slikt lovverk i Norge tror jeg hadde vært nyttig.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Datatilsynet_svarer_om_Bilkollektivets__nske_om_GPS_sporing.html">Datatilsynet svarer om Bilkollektivets Ã¸nske om GPS-sporing</a>
+        <a href="http://www.hungry.com/~pere/blog/Datatilsynet_svarer_om_Bilkollektivets__nske_om_GPS_sporing.html">Datatilsynet svarer om Bilkollektivets Ã¸nske om GPS-sporing</a>
       </div>
       <div class="date">
         14th October 2010
       </div>
       <div class="date">
         14th October 2010
@@ -3852,7 +4338,7 @@ ting, sÃ¥ et slikt lovverk i Norge tror jeg hadde vært nyttig.</p>
       <div class="body">
         <p>I forbindelse med Bilkollektivets plan om Ã¥ skaffe seg mulighet til
 Ã¥ GPS-spore sine medlemmers bevegelser
       <div class="body">
         <p>I forbindelse med Bilkollektivets plan om Ã¥ skaffe seg mulighet til
 Ã¥ GPS-spore sine medlemmers bevegelser
-(<a href="http://people.skolelinux.org/pere/blog/Bilkollektivet_vil_ha_retten_til____se_hvor_jeg_kj__rer___.html">omtalt
+(<a href="http://www.hungry.com/~pere/blog/Bilkollektivet_vil_ha_retten_til____se_hvor_jeg_kj__rer___.html">omtalt
 tidligere</a>), sendte jeg avgÃ¥rde et spørsmÃ¥l til <a
 href="http://www.datatilsynet.no/">Datatilsynet</a> for Ã¥ gjøre dem
 oppmerksom pÃ¥ saken og høre hva de hadde Ã¥ si.  Her er korrespondansen
 tidligere</a>), sendte jeg avgÃ¥rde et spørsmÃ¥l til <a
 href="http://www.datatilsynet.no/">Datatilsynet</a> for Ã¥ gjøre dem
 oppmerksom pÃ¥ saken og høre hva de hadde Ã¥ si.  Her er korrespondansen
@@ -3954,7 +4440,7 @@ dagene, eller om jeg bare finner et annet alternativ.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -3963,7 +4449,7 @@ dagene, eller om jeg bare finner et annet alternativ.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Bilkollektivet_vil_ha_retten_til___se_hvor_jeg_kj_rer___.html">Bilkollektivet vil ha retten til Ã¥ se hvor jeg kjører...</a>
+        <a href="http://www.hungry.com/~pere/blog/Bilkollektivet_vil_ha_retten_til___se_hvor_jeg_kj_rer___.html">Bilkollektivet vil ha retten til Ã¥ se hvor jeg kjører...</a>
       </div>
       <div class="date">
         23rd September 2010
       </div>
       <div class="date">
         23rd September 2010
@@ -3982,7 +4468,7 @@ over til biler med "bilcomputer" og innebygget sporings-GPS som lar
 administrasjonen i bilkollektivet se hvor bilene er til en hver tid,
 noe som betyr at de ogsÃ¥ kan se hvor jeg kjører nÃ¥r jeg bruker
 Bilkollektivet.
 administrasjonen i bilkollektivet se hvor bilene er til en hver tid,
 noe som betyr at de ogsÃ¥ kan se hvor jeg kjører nÃ¥r jeg bruker
 Bilkollektivet.
-<a href="http://people.skolelinux.org/pere/blog/Anonym_ferdsel_er_en_menneskerett.html">Retten
+<a href="http://www.hungry.com/~pere/blog/Anonym_ferdsel_er_en_menneskerett.html">Retten
 til Ã¥ ferdes anonymt</a> er som tidligere nevnt viktig for meg, og jeg
 finner det uakseptabelt Ã¥ mÃ¥tte godta Ã¥ bli radiomerket for Ã¥ kunne
 bruke bil.  Har ikke satt meg inn i hva som er historien for denne
 til Ã¥ ferdes anonymt</a> er som tidligere nevnt viktig for meg, og jeg
 finner det uakseptabelt Ã¥ mÃ¥tte godta Ã¥ bli radiomerket for Ã¥ kunne
 bruke bil.  Har ikke satt meg inn i hva som er historien for denne
@@ -4006,7 +4492,7 @@ eller bare ser meg om etter alternativer.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4015,7 +4501,7 @@ eller bare ser meg om etter alternativer.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Anonym_ferdsel_er_en_menneskerett.html">Anonym ferdsel er en menneskerett</a>
+        <a href="http://www.hungry.com/~pere/blog/Anonym_ferdsel_er_en_menneskerett.html">Anonym ferdsel er en menneskerett</a>
       </div>
       <div class="date">
         15th September 2010
       </div>
       <div class="date">
         15th September 2010
@@ -4055,7 +4541,7 @@ kollektivtrafikken i Oslo.  Jeg synes det er hÃ¥rreisende.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/betalkontant">betalkontant</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/ruter">ruter</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/betalkontant">betalkontant</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/ruter">ruter</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4064,7 +4550,7 @@ kollektivtrafikken i Oslo.  Jeg synes det er hÃ¥rreisende.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Forslag_i_stortinget_om___stoppe_elektronisk_stemmegiving_i_Norge.html">Forslag i stortinget om Ã¥ stoppe elektronisk stemmegiving i Norge</a>
+        <a href="http://www.hungry.com/~pere/blog/Forslag_i_stortinget_om___stoppe_elektronisk_stemmegiving_i_Norge.html">Forslag i stortinget om Ã¥ stoppe elektronisk stemmegiving i Norge</a>
       </div>
       <div class="date">
         31st August 2010
       </div>
       <div class="date">
         31st August 2010
@@ -4083,7 +4569,7 @@ er fremmet av Erna Solberg, Michael Tetzschner og Trond Helleland.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/valg">valg</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/valg">valg</a>.
         
         
       </div>
         
         
       </div>
@@ -4092,14 +4578,14 @@ er fremmet av Erna Solberg, Michael Tetzschner og Trond Helleland.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Sikkerhetsteateret_p__flyplassene_fortsetter.html">Sikkerhetsteateret pÃ¥ flyplassene fortsetter</a>
+        <a href="http://www.hungry.com/~pere/blog/Sikkerhetsteateret_p__flyplassene_fortsetter.html">Sikkerhetsteateret pÃ¥ flyplassene fortsetter</a>
       </div>
       <div class="date">
         28th August 2010
       </div>
       <div class="body">
         <p>Jeg skrev for et halvt Ã¥r siden hvordan
       </div>
       <div class="date">
         28th August 2010
       </div>
       <div class="body">
         <p>Jeg skrev for et halvt Ã¥r siden hvordan
-<a href="http://people.skolelinux.org/pere/blog/Sikkerhet__teater__og_hvordan_gj__re_verden_sikrere.html">samfunnet
+<a href="http://www.hungry.com/~pere/blog/Sikkerhet__teater__og_hvordan_gj__re_verden_sikrere.html">samfunnet
 kaster bort ressurser pÃ¥ sikkerhetstiltak som ikke fungerer</a>.  Kom
 nettopp over en
 <a href="http://www.askthepilot.com/essays-and-stories/terrorism-tweezers-and-terminal-madness-an-essay-on-security/">historie
 kaster bort ressurser pÃ¥ sikkerhetstiltak som ikke fungerer</a>.  Kom
 nettopp over en
 <a href="http://www.askthepilot.com/essays-and-stories/terrorism-tweezers-and-terminal-madness-an-essay-on-security/">historie
@@ -4132,7 +4618,7 @@ en god ting sett fra et miljøperspektiv, men det er en annen sak.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4141,7 +4627,7 @@ en god ting sett fra et miljøperspektiv, men det er en annen sak.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Elektronisk_stemmegiving_er_ikke_til___stole_p____heller_ikke_i_Norge.html">Elektronisk stemmegiving er ikke til Ã¥ stole pÃ¥ - heller ikke i Norge</a>
+        <a href="http://www.hungry.com/~pere/blog/Elektronisk_stemmegiving_er_ikke_til___stole_p____heller_ikke_i_Norge.html">Elektronisk stemmegiving er ikke til Ã¥ stole pÃ¥ - heller ikke i Norge</a>
       </div>
       <div class="date">
         23rd August 2010
       </div>
       <div class="date">
         23rd August 2010
@@ -4190,7 +4676,7 @@ elektronisk stemmegiving og unngÃ¥ begrepet "evalg".</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/valg">valg</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/valg">valg</a>.
         
         
       </div>
         
         
       </div>
@@ -4199,7 +4685,7 @@ elektronisk stemmegiving og unngÃ¥ begrepet "evalg".</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Rob_Weir__How_to_Crush_Dissent.html">Rob Weir: How to Crush Dissent</a>
+        <a href="http://www.hungry.com/~pere/blog/Rob_Weir__How_to_Crush_Dissent.html">Rob Weir: How to Crush Dissent</a>
       </div>
       <div class="date">
         15th August 2010
       </div>
       <div class="date">
         15th August 2010
@@ -4216,7 +4702,7 @@ long time.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/lenker">lenker</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/lenker">lenker</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4225,7 +4711,7 @@ long time.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/One_step_closer_to_single_signon_in_Debian_Edu.html">One step closer to single signon in Debian Edu</a>
+        <a href="http://www.hungry.com/~pere/blog/One_step_closer_to_single_signon_in_Debian_Edu.html">One step closer to single signon in Debian Edu</a>
       </div>
       <div class="date">
         25th July 2010
       </div>
       <div class="date">
         25th July 2010
@@ -4271,7 +4757,7 @@ please contact us on debian-edu@lists.debian.org.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian edu">debian edu</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian edu">debian edu</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4280,7 +4766,7 @@ please contact us on debian-edu@lists.debian.org.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/_pne_tr_dl_snett_er_et_samfunnsgode.html">Ã…pne trÃ¥dløsnett er et samfunnsgode</a>
+        <a href="http://www.hungry.com/~pere/blog/_pne_tr_dl_snett_er_et_samfunnsgode.html">Ã…pne trÃ¥dløsnett er et samfunnsgode</a>
       </div>
       <div class="date">
         12th June 2010
       </div>
       <div class="date">
         12th June 2010
@@ -4311,7 +4797,7 @@ anstrenge oss for Ã¥ beholde.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/fildeling">fildeling</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/fildeling">fildeling</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4320,7 +4806,7 @@ anstrenge oss for Ã¥ beholde.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Magnetstripeinnhold_i_billetter_fra_Flytoget_og_Hurtigruten.html">Magnetstripeinnhold i billetter fra Flytoget og Hurtigruten</a>
+        <a href="http://www.hungry.com/~pere/blog/Magnetstripeinnhold_i_billetter_fra_Flytoget_og_Hurtigruten.html">Magnetstripeinnhold i billetter fra Flytoget og Hurtigruten</a>
       </div>
       <div class="date">
         21st May 2010
       </div>
       <div class="date">
         21st May 2010
@@ -4385,7 +4871,7 @@ ser jeg mye korrespondanse mellom pÃ¥trykk og magnetstripe.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4394,7 +4880,7 @@ ser jeg mye korrespondanse mellom pÃ¥trykk og magnetstripe.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Forcing_new_users_to_change_their_password_on_first_login.html">Forcing new users to change their password on first login</a>
+        <a href="http://www.hungry.com/~pere/blog/Forcing_new_users_to_change_their_password_on_first_login.html">Forcing new users to change their password on first login</a>
       </div>
       <div class="date">
          2nd May 2010
       </div>
       <div class="date">
          2nd May 2010
@@ -4475,7 +4961,7 @@ change.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian edu">debian edu</a>, <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian edu">debian edu</a>, <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4484,7 +4970,7 @@ change.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Great_book___Content__Selected_Essays_on_Technology__Creativity__Copyright__and_the_Future_of_the_Future_.html">Great book: "Content: Selected Essays on Technology, Creativity, Copyright, and the Future of the Future"</a>
+        <a href="http://www.hungry.com/~pere/blog/Great_book___Content__Selected_Essays_on_Technology__Creativity__Copyright__and_the_Future_of_the_Future_.html">Great book: "Content: Selected Essays on Technology, Creativity, Copyright, and the Future of the Future"</a>
       </div>
       <div class="date">
         19th April 2010
       </div>
       <div class="date">
         19th April 2010
@@ -4507,7 +4993,7 @@ strongly recommend this book.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="https://people.skolelinux.org/pere/blog/tags/fildeling">fildeling</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/web">web</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/english">english</a>, <a href="http://www.hungry.com/~pere/blog/tags/fildeling">fildeling</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/web">web</a>.
         
         
       </div>
         
         
       </div>
@@ -4516,7 +5002,7 @@ strongly recommend this book.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Sikkerhet__teater__og_hvordan_gj_re_verden_sikrere.html">Sikkerhet, teater, og hvordan gjøre verden sikrere</a>
+        <a href="http://www.hungry.com/~pere/blog/Sikkerhet__teater__og_hvordan_gj_re_verden_sikrere.html">Sikkerhet, teater, og hvordan gjøre verden sikrere</a>
       </div>
       <div class="date">
         30th December 2009
       </div>
       <div class="date">
         30th December 2009
@@ -4538,7 +5024,7 @@ pÃ¥ flyplassene.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4547,7 +5033,7 @@ pÃ¥ flyplassene.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Jeg_vil_ikke_ha_BankID.html">Jeg vil ikke ha BankID</a>
+        <a href="http://www.hungry.com/~pere/blog/Jeg_vil_ikke_ha_BankID.html">Jeg vil ikke ha BankID</a>
       </div>
       <div class="date">
         30th October 2009
       </div>
       <div class="date">
         30th October 2009
@@ -4655,7 +5141,7 @@ omtalt over.  Anbefalt lesning.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/bankid">bankid</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/bankid">bankid</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4664,7 +5150,7 @@ omtalt over.  Anbefalt lesning.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Sikkerhet_til_sj_s_trenger_sj_kart_uten_bruksbegresninger.html">Sikkerhet til sjøs trenger sjøkart uten bruksbegresninger</a>
+        <a href="http://www.hungry.com/~pere/blog/Sikkerhet_til_sj_s_trenger_sj_kart_uten_bruksbegresninger.html">Sikkerhet til sjøs trenger sjøkart uten bruksbegresninger</a>
       </div>
       <div class="date">
         23rd August 2009
       </div>
       <div class="date">
         23rd August 2009
@@ -4728,7 +5214,7 @@ det viser at behovet for fribruks-sjøkart er til stedet.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/kart">kart</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/kart">kart</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
         
         
       </div>
@@ -4737,7 +5223,7 @@ det viser at behovet for fribruks-sjøkart er til stedet.</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Litt_om_valgfusk_og_problemet_med_elektronisk_stemmegiving.html">Litt om valgfusk og problemet med elektronisk stemmegiving</a>
+        <a href="http://www.hungry.com/~pere/blog/Litt_om_valgfusk_og_problemet_med_elektronisk_stemmegiving.html">Litt om valgfusk og problemet med elektronisk stemmegiving</a>
       </div>
       <div class="date">
         17th June 2009
       </div>
       <div class="date">
         17th June 2009
@@ -4777,7 +5263,7 @@ inneholdt i Iran hvis de ikke hadde hemmelige valg?</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="https://people.skolelinux.org/pere/blog/tags/valg">valg</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://www.hungry.com/~pere/blog/tags/valg">valg</a>.
         
         
       </div>
         
         
       </div>
@@ -4786,7 +5272,7 @@ inneholdt i Iran hvis de ikke hadde hemmelige valg?</p>
     
     <div class="entry">
       <div class="title">
     
     <div class="entry">
       <div class="title">
-        <a href="https://people.skolelinux.org/pere/blog/Kryptert_harddisk___naturligvis.html">Kryptert harddisk - naturligvis</a>
+        <a href="http://www.hungry.com/~pere/blog/Kryptert_harddisk___naturligvis.html">Kryptert harddisk - naturligvis</a>
       </div>
       <div class="date">
          2nd May 2009
       </div>
       <div class="date">
          2nd May 2009
@@ -4826,14 +5312,14 @@ betydelige.</p>
       <div class="tags">
         
         
       <div class="tags">
         
         
-        Tags: <a href="https://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>.
+        Tags: <a href="http://www.hungry.com/~pere/blog/tags/debian">debian</a>, <a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk</a>, <a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug</a>, <a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet</a>.
         
         
       </div>
     </div>
     <div class="padding"></div>
     
         
         
       </div>
     </div>
     <div class="padding"></div>
     
-    <p style="text-align: right;"><a href="sikkerhet.rss"><img src="https://people.skolelinux.org/pere/blog/xml.gif" alt="RSS Feed" width="36" height="14" /></a></p>
+    <p style="text-align: right;"><a href="sikkerhet.rss"><img src="http://www.hungry.com/~pere/blog/xml.gif" alt="RSS Feed" width="36" height="14" /></a></p>
     <div id="sidebar">
       
 
     <div id="sidebar">
       
 
@@ -4841,409 +5327,445 @@ betydelige.</p>
 <h2>Archive</h2>
 <ul>
 
 <h2>Archive</h2>
 <ul>
 
+<li>2025
+<ul>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2025/01/">January (4)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2025/02/">February (1)</a></li>
+
+</ul></li>
+
+<li>2024
+<ul>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2024/01/">January (1)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2024/02/">February (1)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2024/03/">March (2)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2024/04/">April (3)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2024/05/">May (1)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2024/06/">June (1)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2024/07/">July (2)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2024/12/">December (1)</a></li>
+
+</ul></li>
+
 <li>2023
 <ul>
 
 <li>2023
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2023/01/">January (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2023/01/">January (3)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2023/02/">February (1)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2023/04/">April (2)</a></li>
+
+<li><a href="http://www.hungry.com/~pere/blog/archive/2023/05/">May (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2023/02/">February (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2023/06/">June (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2023/04/">April (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2023/08/">August (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2023/05/">May (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2023/09/">September (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2023/06/">June (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2023/10/">October (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2023/08/">August (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2023/11/">November (4)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2023/09/">September (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2023/12/">December (1)</a></li>
 
 </ul></li>
 
 <li>2022
 <ul>
 
 
 </ul></li>
 
 <li>2022
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2022/02/">February (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2022/02/">February (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2022/03/">March (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2022/03/">March (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2022/04/">April (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2022/04/">April (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2022/06/">June (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2022/06/">June (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2022/07/">July (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2022/07/">July (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2022/09/">September (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2022/09/">September (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2022/10/">October (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2022/10/">October (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2022/12/">December (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2022/12/">December (1)</a></li>
 
 </ul></li>
 
 <li>2021
 <ul>
 
 
 </ul></li>
 
 <li>2021
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2021/01/">January (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2021/01/">January (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2021/02/">February (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2021/02/">February (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2021/05/">May (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2021/05/">May (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2021/06/">June (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2021/06/">June (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2021/07/">July (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2021/07/">July (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2021/08/">August (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2021/08/">August (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2021/09/">September (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2021/09/">September (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2021/10/">October (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2021/10/">October (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2021/12/">December (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2021/12/">December (1)</a></li>
 
 </ul></li>
 
 <li>2020
 <ul>
 
 
 </ul></li>
 
 <li>2020
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2020/02/">February (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2020/02/">February (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2020/03/">March (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2020/03/">March (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2020/04/">April (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2020/04/">April (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2020/05/">May (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2020/05/">May (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2020/06/">June (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2020/06/">June (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2020/07/">July (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2020/07/">July (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2020/09/">September (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2020/09/">September (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2020/10/">October (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2020/10/">October (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2020/11/">November (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2020/11/">November (1)</a></li>
 
 </ul></li>
 
 <li>2019
 <ul>
 
 
 </ul></li>
 
 <li>2019
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2019/01/">January (4)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2019/01/">January (4)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2019/02/">February (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2019/02/">February (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2019/03/">March (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2019/03/">March (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2019/05/">May (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2019/05/">May (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2019/06/">June (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2019/06/">June (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2019/07/">July (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2019/07/">July (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2019/08/">August (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2019/08/">August (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2019/09/">September (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2019/09/">September (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2019/11/">November (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2019/11/">November (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2019/12/">December (4)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2019/12/">December (4)</a></li>
 
 </ul></li>
 
 <li>2018
 <ul>
 
 
 </ul></li>
 
 <li>2018
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/01/">January (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/01/">January (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/02/">February (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/02/">February (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/03/">March (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/03/">March (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/04/">April (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/04/">April (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/06/">June (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/06/">June (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/07/">July (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/07/">July (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/08/">August (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/08/">August (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/09/">September (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/09/">September (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/10/">October (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/10/">October (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/11/">November (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/11/">November (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2018/12/">December (4)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2018/12/">December (4)</a></li>
 
 </ul></li>
 
 <li>2017
 <ul>
 
 
 </ul></li>
 
 <li>2017
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/01/">January (4)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/01/">January (4)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/02/">February (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/02/">February (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/03/">March (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/03/">March (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/04/">April (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/04/">April (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/06/">June (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/06/">June (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/07/">July (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/07/">July (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/08/">August (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/08/">August (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/09/">September (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/09/">September (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/10/">October (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/10/">October (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/11/">November (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/11/">November (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2017/12/">December (4)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2017/12/">December (4)</a></li>
 
 </ul></li>
 
 <li>2016
 <ul>
 
 
 </ul></li>
 
 <li>2016
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/01/">January (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/01/">January (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/02/">February (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/02/">February (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/03/">March (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/03/">March (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/04/">April (8)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/04/">April (8)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/05/">May (8)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/05/">May (8)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/06/">June (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/06/">June (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/07/">July (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/07/">July (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/08/">August (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/08/">August (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/09/">September (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/09/">September (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/10/">October (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/10/">October (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/11/">November (8)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/11/">November (8)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2016/12/">December (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2016/12/">December (5)</a></li>
 
 </ul></li>
 
 <li>2015
 <ul>
 
 
 </ul></li>
 
 <li>2015
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/01/">January (7)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/01/">January (7)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/02/">February (6)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/02/">February (6)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/03/">March (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/03/">March (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/04/">April (4)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/04/">April (4)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/05/">May (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/05/">May (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/06/">June (4)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/06/">June (4)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/07/">July (6)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/07/">July (6)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/08/">August (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/08/">August (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/09/">September (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/09/">September (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/10/">October (9)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/10/">October (9)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/11/">November (6)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/11/">November (6)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2015/12/">December (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2015/12/">December (3)</a></li>
 
 </ul></li>
 
 <li>2014
 <ul>
 
 
 </ul></li>
 
 <li>2014
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/01/">January (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/01/">January (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/02/">February (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/02/">February (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/03/">March (8)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/03/">March (8)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/04/">April (7)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/04/">April (7)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/05/">May (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/05/">May (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/06/">June (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/06/">June (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/07/">July (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/07/">July (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/08/">August (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/08/">August (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/09/">September (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/09/">September (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/10/">October (6)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/10/">October (6)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/11/">November (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/11/">November (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2014/12/">December (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2014/12/">December (5)</a></li>
 
 </ul></li>
 
 <li>2013
 <ul>
 
 
 </ul></li>
 
 <li>2013
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/01/">January (11)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/01/">January (11)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/02/">February (9)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/02/">February (9)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/03/">March (9)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/03/">March (9)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/04/">April (6)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/04/">April (6)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/05/">May (9)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/05/">May (9)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/06/">June (10)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/06/">June (10)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/07/">July (7)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/07/">July (7)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/08/">August (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/08/">August (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/09/">September (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/09/">September (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/10/">October (7)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/10/">October (7)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/11/">November (9)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/11/">November (9)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2013/12/">December (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2013/12/">December (3)</a></li>
 
 </ul></li>
 
 <li>2012
 <ul>
 
 
 </ul></li>
 
 <li>2012
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/01/">January (7)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/01/">January (7)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/02/">February (10)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/02/">February (10)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/03/">March (17)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/03/">March (17)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/04/">April (12)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/04/">April (12)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/05/">May (12)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/05/">May (12)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/06/">June (20)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/06/">June (20)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/07/">July (17)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/07/">July (17)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/08/">August (6)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/08/">August (6)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/09/">September (9)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/09/">September (9)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/10/">October (17)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/10/">October (17)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/11/">November (10)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/11/">November (10)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2012/12/">December (7)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2012/12/">December (7)</a></li>
 
 </ul></li>
 
 <li>2011
 <ul>
 
 
 </ul></li>
 
 <li>2011
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/01/">January (16)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/01/">January (16)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/02/">February (6)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/02/">February (6)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/03/">March (6)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/03/">March (6)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/04/">April (7)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/04/">April (7)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/05/">May (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/05/">May (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/06/">June (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/06/">June (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/07/">July (7)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/07/">July (7)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/08/">August (6)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/08/">August (6)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/09/">September (4)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/09/">September (4)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/10/">October (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/10/">October (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/11/">November (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/11/">November (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2011/12/">December (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2011/12/">December (1)</a></li>
 
 </ul></li>
 
 <li>2010
 <ul>
 
 
 </ul></li>
 
 <li>2010
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/01/">January (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/01/">January (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/02/">February (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/02/">February (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/03/">March (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/03/">March (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/04/">April (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/04/">April (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/05/">May (9)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/05/">May (9)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/06/">June (14)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/06/">June (14)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/07/">July (12)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/07/">July (12)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/08/">August (13)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/08/">August (13)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/09/">September (7)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/09/">September (7)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/10/">October (9)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/10/">October (9)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/11/">November (13)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/11/">November (13)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2010/12/">December (12)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2010/12/">December (12)</a></li>
 
 </ul></li>
 
 <li>2009
 <ul>
 
 
 </ul></li>
 
 <li>2009
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/01/">January (8)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/01/">January (8)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/02/">February (8)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/02/">February (8)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/03/">March (12)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/03/">March (12)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/04/">April (10)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/04/">April (10)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/05/">May (9)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/05/">May (9)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/06/">June (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/06/">June (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/07/">July (4)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/07/">July (4)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/08/">August (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/08/">August (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/09/">September (1)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/09/">September (1)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/10/">October (2)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/10/">October (2)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/11/">November (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/11/">November (3)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2009/12/">December (3)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2009/12/">December (3)</a></li>
 
 </ul></li>
 
 <li>2008
 <ul>
 
 
 </ul></li>
 
 <li>2008
 <ul>
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2008/11/">November (5)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2008/11/">November (5)</a></li>
 
 
-<li><a href="https://people.skolelinux.org/pere/blog/archive/2008/12/">December (7)</a></li>
+<li><a href="http://www.hungry.com/~pere/blog/archive/2008/12/">December (7)</a></li>
 
 </ul></li>
 
 
 </ul></li>
 
@@ -5254,139 +5776,139 @@ betydelige.</p>
 <h2>Tags</h2>
 <ul>
 
 <h2>Tags</h2>
 <ul>
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/3d-printer">3d-printer (19)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/3d-printer">3d-printer (19)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/amiga">amiga (1)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/amiga">amiga (1)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/aros">aros (1)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/aros">aros (1)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/bankid">bankid (4)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/bankid">bankid (4)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/betalkontant">betalkontant (9)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/betalkontant">betalkontant (9)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin (12)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/bitcoin">bitcoin (13)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/bootsystem">bootsystem (17)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/bootsystem">bootsystem (17)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/bsa">bsa (2)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/bsa">bsa (2)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/chrpath">chrpath (2)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/chrpath">chrpath (3)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/debian">debian (194)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/debian">debian (207)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/debian edu">debian edu (159)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/debian edu">debian edu (159)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/debian-handbook">debian-handbook (9)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/debian-handbook">debian-handbook (9)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/digistan">digistan (11)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/digistan">digistan (11)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/dld">dld (18)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/dld">dld (18)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/docbook">docbook (30)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/docbook">docbook (33)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/drivstoffpriser">drivstoffpriser (4)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/drivstoffpriser">drivstoffpriser (4)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/english">english (451)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/english">english (469)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/fiksgatami">fiksgatami (23)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/fiksgatami">fiksgatami (23)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/fildeling">fildeling (14)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/fildeling">fildeling (14)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/freeculture">freeculture (34)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/freeculture">freeculture (34)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/freedombox">freedombox (9)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/freedombox">freedombox (9)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/frikanalen">frikanalen (20)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/frikanalen">frikanalen (20)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/h264">h264 (20)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/h264">h264 (20)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/intervju">intervju (43)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/intervju">intervju (43)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/isenkram">isenkram (16)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/isenkram">isenkram (20)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/kart">kart (23)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/kart">kart (23)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/kodi">kodi (6)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/kodi">kodi (6)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/ldap">ldap (9)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/ldap">ldap (9)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/lego">lego (5)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/lego">lego (5)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/lenker">lenker (8)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/lenker">lenker (8)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/linuxcnc">linuxcnc (5)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/linuxcnc">linuxcnc (8)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/lsdvd">lsdvd (2)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/lsdvd">lsdvd (2)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/ltsp">ltsp (1)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/ltsp">ltsp (1)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/madewithcc">madewithcc (3)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/madewithcc">madewithcc (3)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/mesh network">mesh network (8)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/mesh network">mesh network (8)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/multimedia">multimedia (46)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/multimedia">multimedia (47)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/nice free software">nice free software (15)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/nice free software">nice free software (15)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/noark5">noark5 (23)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/noark5">noark5 (26)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/norsk">norsk (321)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/norsk">norsk (326)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/nuug">nuug (198)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/nuug">nuug (200)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/offentlig innsyn">offentlig innsyn (40)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/offentlig innsyn">offentlig innsyn (42)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/open311">open311 (2)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/open311">open311 (2)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/opensnitch">opensnitch (4)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/opensnitch">opensnitch (4)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett (75)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/opphavsrett">opphavsrett (76)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/personvern">personvern (114)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/personvern">personvern (114)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/raid">raid (2)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/raid">raid (4)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/reactos">reactos (1)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/reactos">reactos (1)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/reprap">reprap (11)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/reprap">reprap (11)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/rfid">rfid (3)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/rfid">rfid (3)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/robot">robot (17)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/robot">robot (17)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/rss">rss (1)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/rss">rss (1)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/ruter">ruter (7)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/ruter">ruter (7)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/scraperwiki">scraperwiki (2)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/scraperwiki">scraperwiki (2)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet (59)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/sikkerhet">sikkerhet (60)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/sitesummary">sitesummary (4)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/sitesummary">sitesummary (4)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/skepsis">skepsis (5)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/skepsis">skepsis (5)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/standard">standard (74)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/standard">standard (78)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/stavekontroll">stavekontroll (7)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/stavekontroll">stavekontroll (7)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/stortinget">stortinget (14)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/stortinget">stortinget (14)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/surveillance">surveillance (64)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/surveillance">surveillance (65)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin (5)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/sysadmin">sysadmin (5)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/usenix">usenix (2)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/usenix">usenix (2)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/valg">valg (9)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/valg">valg (9)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/verkidetfri">verkidetfri (20)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/verkidetfri">verkidetfri (22)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/video">video (79)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/video">video (81)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/vitenskap">vitenskap (4)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/vitenskap">vitenskap (4)</a></li>
 
 
- <li><a href="https://people.skolelinux.org/pere/blog/tags/web">web (42)</a></li>
+ <li><a href="http://www.hungry.com/~pere/blog/tags/web">web (42)</a></li>
 
 </ul>
 
 
 </ul>