<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Håvard Pedersen &#187; Programvare</title> <atom:link href="http://fuzzy76.net/category/programvare/feed/" rel="self" type="application/rss+xml" /><link>http://fuzzy76.net</link> <description>En blogg om vår digitale hverdag og andre pretensiøse temaer :)</description> <lastBuildDate>Fri, 30 Jul 2010 11:54:20 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0</generator> <item><title>A gameserver ping plugin for Munin</title><link>http://fuzzy76.net/250/a-gameserver-ping-plugin-for-munin/</link> <comments>http://fuzzy76.net/250/a-gameserver-ping-plugin-for-munin/#comments</comments> <pubDate>Thu, 22 Apr 2010 19:11:29 +0000</pubDate> <dc:creator>Håvard Pedersen</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[Programvare]]></category> <category><![CDATA[Utvikling]]></category><guid
isPermaLink="false">http://fuzzy76.net/?p=250</guid> <description><![CDATA[My personal server has been acting up lately, to be precise; the Call of Duty (1) gameserver that runs on it. I installed Munin for monitoring it, but really wanted something that would show the actual slowdown the players experienced. So I did a Munin plugin. In PHP ofcourse. ;) It&#8217;s my first Munin plugin, [...]]]></description> <content:encoded><![CDATA[<p>My personal server has been acting up lately, to be precise; the Call of Duty (1) gameserver that runs on it. I installed <a
href="http://munin-monitoring.org/">Munin</a> for monitoring it, but really wanted something that would show the actual slowdown the players experienced.</p><p>So I did a Munin plugin. In PHP ofcourse. ;) It&#8217;s my first Munin plugin, and I wouldn&#8217;t be surprised if it turns out to be the only one written in PHP. It&#8217;s available for download at <a
href="http://muninexchange.projects.linpro.no/?search&#038;cid=40&#038;pid=566">Munin Exchange</a>, and the code is here for those that just want a quick look.</p><p><strong>Update 27.04.10: </strong> Updated the plugin to v1.1.</p><p><span
id="more-250"></span></p><pre name="code" class="php">#!/usr/bin/php
&lt;?php
/*
#################################################################
# Title : Qstat ping plugin for Munin v1.1
# Author : H&aring;vard Pedersen
# Email : fuzzy76 @ fuzzy76 net
# Loosely based on the Qstat bash script plugin by Benjamin DUPUIS - Poil
#---------------------------------------------------------------#
# CHANGELOG
#
# v1.1 (23. april 2010)
#   - Added highest ping, lowest ping and query response time.
#   - Now supports being run for testing with ./ in front
#
# v1.0 (initial release 22. april 2010)
#   - Basic thing with average ping only
#
#%# family=manual
*/

$qstatloc = &quot;/usr/bin/quakestat&quot;;

function doHelp() {
  global $qstatloc;
	echo &quot;To test the script, just run qstatping_ GAMETYPE ADDRESS PORT
Run qstat to see the available gametypes (q3s, q4s, cods, etc)
To install for Munin you must ln -s /usr/share/munin/plugins/qstat_ /etc/munin/plugins/qstatping_GAMETYPE_ADDRESS_PORT
You might also have to set the path to qstat in $qstatloc
Have fun!
&quot;;
}

function doConfig() {
  global $argv;

  if ($argv[0] != &quot;qstatping_&quot;) {
    $parts = explode(&quot;_&quot;,$argv[0]);
    $gametype = $parts[1];
    $ip = $parts[2];
    $port = $parts[3];
  } else {
    $gametype = $argv[1];
    $ip = $argv[2];
    $port = $argv[3];
  }

  echo &quot;graph_title Ping on $gametype at $ip:$port
graph_vlabel Ping
graph_category games
minping.label Minimum ping
maxping.label Maximum ping
avgping.label Average ping
querytime.label Query time
&quot;;

}

function doFetch() {
  global $argv, $qstatloc;

  if (substr($argv[0],-(strlen(&quot;qstatping_&quot;))) != &quot;qstatping_&quot;) {
    $parts = explode(&quot;_&quot;,$argv[0]);
    $gametype = $parts[1];
    $ip = $parts[2];
    $port = $parts[3];
  } else {
    $gametype = $argv[1];
    $ip = $argv[2];
    $port = $argv[3];
  }

  $querytime = &quot;U&quot;;
  $output = array();
  if ($gametype &amp;&amp; $ip &amp;&#038; $port) {

    $time_start = microtime(true);
    exec(&quot;$qstatloc -raw \&quot;;\&quot; -nh -P -$gametype $ip:$port&quot;, &#038;$output);
    $time_end = microtime(true);
    $querytime = ($time_end - $time_start) * 1000;

    array_shift($output);

    $pingavg = 0;
    $pingmax = -1;
    $pingmin = 9999;
    $playerscount = 0;
    foreach ($output as $line) {
      $player = explode(&quot;;&quot;, $line);
      if (count($player) &gt;= 3 &amp;&#038; $player[2] != 999) {
        if ($player[2] &gt; $pingmax)
          $pingmax = $player[2];
        if ($player[2] &lt; $pingmin)
          $pingmin = $player[2];
        $pingavg += $player[2];
        $playerscount++;
      }
    }

    if ($playerscount != 0)
      $pingavg = $pingavg / $playerscount;  

    if ($playerscount != 0) {
      echo &quot;minping.value $pingmin
maxping.value $pingmax
avgping.value $pingavg
querytime.value $querytime
&quot;;
      return;
    }

  }
  echo &quot;minping.value U
maxping.value U
avgping.value U
querytime.value $querytime
&quot;;
}

switch ($argv[1]) {
  case &quot;config&quot;:
    doConfig();
    break;
  case &quot;help&quot;:
  case &quot;?&quot;:
    doHelp();
    break;
  case &quot;autoconf&quot;:
    echo &quot;no (edit the script to set path to qstat)&quot;;
    break;
  case &quot;fetch&quot;:
  default:
    doFetch();
}

?&gt;
</pre>]]></content:encoded> <wfw:commentRss>http://fuzzy76.net/250/a-gameserver-ping-plugin-for-munin/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Installasjon av Windows XP for dummies</title><link>http://fuzzy76.net/204/installasjon-av-windows-xp-for-dummies/</link> <comments>http://fuzzy76.net/204/installasjon-av-windows-xp-for-dummies/#comments</comments> <pubDate>Thu, 01 Oct 2009 12:18:09 +0000</pubDate> <dc:creator>Håvard Pedersen</dc:creator> <category><![CDATA[Programvare]]></category><guid
isPermaLink="false">http://fuzzy76.net/?p=204</guid> <description><![CDATA[Da noen jeg kjente plutselig fikk behov for å reinstallere Windows, og jeg tilfeldigvis måtte installere XP på Annikens gamle maskin, fant jeg ut at jeg kunne skrive ned en liten oppskrift. Merk: Et eller annet sted i installasjonen (rundt punkt 13) blir du som oftest bedt om en lisensnøkkel. Den står som regel på [...]]]></description> <content:encoded><![CDATA[<p>Da noen jeg kjente plutselig fikk behov for å reinstallere Windows, og jeg tilfeldigvis måtte installere XP på Annikens gamle maskin, fant jeg ut at jeg kunne skrive ned en liten oppskrift.</p><p><span
id="more-204"></span></p><p><strong>Merk:</strong> Et eller annet sted i installasjonen (rundt punkt 13) blir du som oftest bedt om en lisensnøkkel. Den står som regel på et klistremerke på maskinen (undersiden på laptoper). Noen installasjonsplater rett fra produsent hopper over dette punktet.</p><ol><li>Start maskinen med Windows XP CD&#8217;en i CD-ROM&#8217;en. Hvis noe tekst på skjermen under oppstart sier noe sånt som &#8220;F12 for boot menu&#8221; må du trykke F12 og velge å starte fra CD-ROM.</li><li>Du kan få meldingen &#8220;Trykk en tast for å starte fra CD-ROM&#8221;. Trykk en tast.</li><li>En meny merket &#8220;Velkommen til installasjonsprogrammet&#8221;. Trykk enter for å starte installasjon av Windows XP.</li><li>Lisensavtalen. Trykk F8 for å godta.</li><li>Hvis du får spørsmål om du vil reparere en installasjon, trykker du ESC for å ikke reparere.</li><li>Partisjonering. Her skal vi slette alt. Trykk R, enter og S etter hverandre for å slette en partisjon. Gå gjennom lista med piltastene og slett alle partisjonene.</li><li>Når det bare er ett punkt du kan velge som heter &#8220;Uten partisjoner&#8221; trykker du P for å opprette en partisjon. Godkjenn den foreslåtte størrelsen med enter. Deretter godkjenner du partisjonslista med enter en gang til.</li><li>Velg å formatere partisjonen med NTFS filsystem velg den merket &#8220;(Hurtig)&#8221; hvis du er 100% sikker på at harddisken er OK, hvis ikke velger du den uten.</li><li>Ta deg en kaffe, røyk eller pils. Dette kan ta litt tid. :) Først formateres harddisken, deretter kopieres Windows fra plata til harddisken.</li><li>Etter en stund starter maskinen på nytt av seg selv. Du kan ta ut CD&#8217;en nå hvis du vil. Denne gangen skal du IKKE trykke en tast for å starte fra CD-ROM hvis du blir spurt.</li><li>Innstillinger for region og språk. Hvis det er en norsk Windows-plate trykker du bare på Neste. Hvis ikke trykker du på details, legger til Norsk tastatur, setter norsk tastatur som default (øverst i vinduet) og sletter engelsk tastatur. Så kan du trykke på Ok og gå videre.</li><li>Tilpasse programvaren. Skriv navnet ditt, organisasjon kan stå tom. Trykk neste.</li><li>Navnet på datamaskinen. Et navn datamaskinen vil kalle seg i et nettverk. Trykk neste når du har skrevet inn noe.</li><li>Dato- og tidsinnstillinger. Sjekk at det stemmer (også årstallet), før du trykker neste.</li><li>Nettverksinnstillinger. De er helt fine som de er, så trykk neste.</li><li>Det kan hende Windows tilbyr seg å justere skjermoppløsningen. Det kan du trygt svare ja på.</li><li>Nok en veiviser starter opp. &#8220;Velkommen til Microsoft Windows&#8221;. Trykk neste.</li><li>Opprett bruker(e). Skriv inn minst ett brukernavn. Hvis du skriver inn mer enn en bruker må du velge bruker hver gang du starter maskinen. Trykk neste.</li><li>Oppsettet er ferdig. Trykk på &#8220;fullfør&#8221;.</li></ol><p>Det er selvfølgelig mye innstillinger jeg gjør personlig på en ny Windows-utgave, men det blir litt for mye å skrive i innlegget her. Men du må ihvertfall installere antivirus. Selv anbefaler jeg <a
href="http://www.free-av.com/">Avira AntiVirus</a>. Det krever ingen registrering, og gir deg en liten popup-reklame for betalutgaven hver gang den oppdaterer seg. Selv synes jeg det er en liten pris å betale. :)</p> ]]></content:encoded> <wfw:commentRss>http://fuzzy76.net/204/installasjon-av-windows-xp-for-dummies/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Mine &#8220;må ha&#8221;-ting for iPhone</title><link>http://fuzzy76.net/167/mine-ma-ha-ting-for-iphone/</link> <comments>http://fuzzy76.net/167/mine-ma-ha-ting-for-iphone/#comments</comments> <pubDate>Wed, 04 Feb 2009 13:44:44 +0000</pubDate> <dc:creator>Håvard Pedersen</dc:creator> <category><![CDATA[Programvare]]></category><guid
isPermaLink="false">http://fuzzy76.net/?p=167</guid> <description><![CDATA[Enkelt og greit en liste over mine &#34;må ha&#34;-ting for iPhone, slik at nye iPhone eiere har et utgangspunkt. :) Dette er ekstra nødvendig siden App store er klin umulig å bla seg fram i på egen hånd (alle kategorien er uhåndterlig store, og filtermulighetene glimrer med sitt fravær). iPhone apps (gratis) Facebook For å [...]]]></description> <content:encoded><![CDATA[<p>Enkelt og greit en liste over mine &quot;må ha&quot;-ting for iPhone, slik at nye iPhone eiere har et utgangspunkt. :) Dette er ekstra nødvendig siden App store er klin umulig å bla seg fram i på egen hånd (alle kategorien er uhåndterlig store, og filtermulighetene glimrer med sitt fravær).</p><h3>iPhone apps (gratis)</h3><dl><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284882215&#038;mt=8">Facebook</a></dt><dd>For å aksessere nettstedet med samme navn.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284963557&#038;mt=8">TV.nu</a></dt><dd>TV-oversikt. Litt buggete for et par kanaler, men det beste jeg har klart å finne.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284942713&#038;mt=8">Instapaper</a></dt><dd>Lar deg &quot;lagre&quot; artikler fra din vanlige nettleser og få dem syncet for offline lesing (i en lettlest, nedstrippet utgave) på telefonen. Perfekt for litt lengre artikler og lange bussturer. :) Finnes også i en oppjazzet betalversjon.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=291741057&#038;mt=8">RemotePad</a></dt><dd>Remote touchpad &#8211; fjernstyr en hvilken som helst datamaskin (krever et serverprogram installert på maskinen).</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=290882494&#038;mt=8">Wikiamo</a></dt><dd>Jeg testet faktisk alle Wikipedia-klientene i appstore. :) Denne vant suverent. Jeg bruker den stadig vekk til å slå opp filmer, artister og lignende.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284984448&#038;mt=8">Mocha VNC lite</a></dt><dd>En ekte VNC-klient! Jeg bruker den til diverse småoppgaver på hjemmekinomaskinen min (en Mac Mini).</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=293537451&#038;mt=8">Sudoku 101</a></dt><dd>Veldig bra Sudoku med læringsmodus og korrekte vanskelighetsgrader (basert på teknikkene du må  bruke istedenfor antall ruter fylt) Jeg har faktisk ikke denne, men den kommersielle storebroren <a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=292703166&#038;mt=8">Sudoku 401</a> ettersom den var gratis som et introduksjonstilbud (koster nå 45,- kr).</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=300709016&#038;mt=8">Yr.no</a></dt><dd>Skal du ha været en plass i Norge, er det vel kun denne som gjelder.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=287197884&#038;mt=8">Sol Free Solitaire</a></dt><dd>Ordinær kabal.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=293886459&#038;mt=8">JellyCar</a></dt><dd>Morsomt spill som eksperimenterer både med realistisk fysikk og bruk av akselerometeret i iPhone. Få gele-bilen gjennom et utall sære brett.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=290948830&#038;mt=8">Fring</a></dt><dd>IM-klient med Skype-støtte! Og ja, det funker faktisk. :)</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=283265667&#038;mt=8">Lightsaber Unleashed</a></dt><dd>Nerdete javel, men et obligatorisk bruksområde for din nye iPhone! Lyssabel, slik som de store gutta har.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=289892007&#038;mt=8">FStream</a></dt><dd>Helt kurrant gratis nettradioklient. Lar deg legge til egne stasjoner også.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=296156160&#038;mt=8">iHearts</a></dt><dd>Hjerter, som vi er kjent med fra Windows. :) Morsomt spill når man kjeder seg litt.</dd></dl><h3>iPhone apps (betalvare)</h3><p>Prisene er det de var når jeg la programmet inn i lista, men kan ha endret seg i mellomtiden.</p><dl><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=296415944&#038;mt=8">Tweetie</a> (17,- kr)</dt><dd>Jeg er Twitter-avhengig, og de fleste er ganske enige om at dette er den beste klienten.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=287765826&#038;mt=8">iSSH</a> (29,- kr)</dt><dd>Den eneste gratis SSH-klienten var ikke bra nok (den sugde faktisk), men denne kan jeg anbefale.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=291720439&#038;mt=8">BeejiveIM</a> (89,- kr)</dt><dd>Det er flere gratis MSN-klienter, men jeg behøvde noe som støttet brukergrupper. Fungerer veldig bra, og støtter også mange andre protokoller (Jabber, Google Talk, ICQ, AIM, Yahoo IM&#8230;).</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=299461156&#038;mt=8">Rolando</a> (35,- kr)</dt><dd>Vanvittig kult plattform/hjernetrim-spill! Redd små klumper fra den visse død. :p Avhengighetsdannende spill med ditto musikk.</dd><dt><a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=288282245&#038;mt=8">Rooms</a> (11,- kr)</dt><dd>IRC-klient for iPhone. Hvorfor? Fordi jeg kan. :)</dd></dl><h3>iPhone webapps</h3><dl><dt><a
href="http://iphone.aftenposten.no/">Aftenposten</a></dt><dd>Nettavis.</dd><dt><a
href="http://vg.no/iphone">VG</a></dt><dd>Nettavis.</dd><dt><a
href="http://wap.dagbladet.no/?www=1">Dagbladet</a></dt><dd>Nettavis.</dd><dt><a
href="http://www.google.com/reader/i/">Google Reader</a></dt><dd>RSS-leser for iPhone. Liker å ha leselista synkronisert med den jeg bruker på Mac&#8217;en.</dd></dl><h3>TODO-liste</h3><p>Dette er forsåvidt et kapittel i seg selv. Akkurat nå bruker jeg <a
href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=293561399">Remember The Milk</a>. Selv om appen i seg selv er gratis, forutsetter det at man har betalt for en Pro-konto hos RTM. I det siste har Google lansert en task-modul for GMail som også har en bra <a
href="http://gmail.com/tasks">webapp</a>. Denne ser forsåvidt bra ut. Jeg håper bare de snart kan få på plass skjuling av fremtidige oppføringer, så bytter jeg på dagen. :) Vil du ha et &quot;vanlig&quot; grensesnitt til den, kan du bruke <a
href="http://www.google.com/ig">Google Personalised Homepage</a>.</p> ]]></content:encoded> <wfw:commentRss>http://fuzzy76.net/167/mine-ma-ha-ting-for-iphone/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Fartsparadokset</title><link>http://fuzzy76.net/161/fartsparadokset/</link> <comments>http://fuzzy76.net/161/fartsparadokset/#comments</comments> <pubDate>Wed, 09 Apr 2008 13:53:57 +0000</pubDate> <dc:creator>Håvard Pedersen</dc:creator> <category><![CDATA[Megafonen]]></category> <category><![CDATA[Programvare]]></category><guid
isPermaLink="false">http://fuzzy76.net/?p=161</guid> <description><![CDATA[Apple har ved flere anledninger understreket at de fokuserer optimalisering på det som synes for brukeren. Av og til bare for å få ting til å virke kjappere, ettersom det er det brukere til syvende og sist merker. Et godt eksempel på det motsatte er Windows Vistas filkopiering. I nettleserverden er det (dessverre) blitt veldig [...]]]></description> <content:encoded><![CDATA[<p>Apple har ved flere anledninger understreket at de fokuserer optimalisering på det som synes for brukeren. Av og til bare for å få ting til å <em>virke</em> kjappere, ettersom det er det brukere til syvende og sist merker. Et godt eksempel på det motsatte er <a
href="http://www.codinghorror.com/blog/archives/001058.html">Windows Vistas filkopiering</a>.</p><p>I nettleserverden er det (dessverre) blitt veldig vanlig å sammeligne nettleseres hastighet med benchmark-tester som gjør en kunstig test av nettleserens hastighet. Og <a
href="http://mac1.no/artikkel/6425/firefox-3-raskere-enn-safari-3">i mange av disse, er Firefox 3 markant kjappere enn Safari 3.1</a>. Dessverre viser aldri slike kunstige tester hele sannheten, og for de av oss med OS X (jeg setter pris på om noen tester dette på Windows også) er det fort gjort å teste dette:</p><ol><li>Start Firefox 3 og Safari 3.1 side om side.</li><li>Slå av innholdsfiltre (adblocker, Flashblocker osv) i begge to.</li><li>Last en side stappfull av elementer, gjerne både Flash og bilder (jeg brukte forsiden på <a
href="http://vg.no/">VG.no</a>) i begge nettleserene.</li><li>Scroll opp og ned med musehjul eller scrollbar i begge nettleserene, og merk hvordan Firefox 3 kjennes ut som sirup sammenlignet med Safari!</li></ol><p>Og før noen spør, resultatet er det samme med smooth scrolling både av og på i Firefox. Den innstillingen har strengt tatt ingenting med dette fenomenet å gjøre.</p> ]]></content:encoded> <wfw:commentRss>http://fuzzy76.net/161/fartsparadokset/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Min status</title><link>http://fuzzy76.net/154/min-status/</link> <comments>http://fuzzy76.net/154/min-status/#comments</comments> <pubDate>Wed, 14 Nov 2007 11:28:45 +0000</pubDate> <dc:creator>Håvard Pedersen</dc:creator> <category><![CDATA[127.0.0.1]]></category> <category><![CDATA[Programvare]]></category> <category><![CDATA[Sett på nett]]></category><guid
isPermaLink="false">http://fuzzy76.net/?p=154</guid> <description><![CDATA[Mange bruker Twitter selv om jeg selv aldri helt har sett poenget i det. For hva skal jeg med nok et sted å sette statusen min? Jeg har problemer nok som det er med status i MSN, Skype og Facebook. Det vil si, helt til jeg kom over Mood Blast fra Circle Six Design, et [...]]]></description> <content:encoded><![CDATA[<p>Mange bruker <a
href="http://www.twitter.com/">Twitter</a> selv om jeg selv aldri helt har sett poenget i det. For hva skal jeg med <em>nok</em> et sted å sette statusen min? Jeg har problemer nok som det er med status i MSN, Skype og Facebook. Det vil si, helt til jeg kom over <a
href="http://blog.circlesixdesign.com/download/moodswing/">Mood Blast fra Circle Six Design</a>, et kjekt lite program til Mac som lar deg sette statusen på &#8220;alle plasser&#8221; samtidig. Det ligger bortgjemt i menubaren, hentes opp med en shortcut, du skriver statusen, trykker enter, programmet forsvinner igjen og statusen er synkronisert! :)</p><p>En fin ting med dette er at jeg la Twitter til steder å sende oppdatering til slik at jeg kunne legge til en Twitter Badge her i bloggen. Vips, enda mindre personvern! :p Ja, man må nok huske på alle steder statusen blir postet så man ikke skriver noe man helst ikke skulle gjort&#8230; Du vet sånn cirka hvem som ser MSN-statusen din, men står den på bloggen din risikerer du at den caches ute på det store internettet for all fremtid.</p> ]]></content:encoded> <wfw:commentRss>http://fuzzy76.net/154/min-status/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Mac OS X tips</title><link>http://fuzzy76.net/147/mac-os-x-tips/</link> <comments>http://fuzzy76.net/147/mac-os-x-tips/#comments</comments> <pubDate>Mon, 25 Jun 2007 14:20:32 +0000</pubDate> <dc:creator>Håvard Pedersen</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[Kjære dagbok]]></category> <category><![CDATA[Programvare]]></category><guid
isPermaLink="false">http://fuzzy76.net/?p=147</guid> <description><![CDATA[A couple of things got me stumped when migrating to Mac, so I thought I&#8217;d just do a small post on them. :) Backspace won&#8217;t work through SSH Insert export TERM=linux into ~/.profile. I dunno why Apple has decided to be retarded about this, but it REALLY bugged me. System default encoding isn&#8217;t UTF-8 Norwegian [...]]]></description> <content:encoded><![CDATA[<p>A couple of things got me stumped when migrating to Mac, so I thought I&#8217;d just do a small post on them. :)</p><p><span
id="more-147"></span></p><dl><dt>Backspace won&#8217;t work through SSH</dt><dd>Insert <code>export TERM=linux</code> into ~/.profile. I dunno why Apple has decided to be retarded about this, but it REALLY bugged me.</dd><dt>System default encoding isn&#8217;t UTF-8</dt><dd>Norwegian input language is, for some reason, not enough. But there was an extended norwegian input locale that actually changed the default encoding to real UTF-8. Again a seemingly stupid default choice from Apple. It&#8217;s really about time you put the &quot;Mac Roman&quot; encoding to rest.</dd><dt>iChat can&#8217;t connect to MSN</dt><dd>I signed up for a Jabber server with MSN transport, and it works like a charm. :) <a
href="http://www.jabber.no">Jabber.no</a> comes highly recommended for norwegian users. The only downside is that you need to set the display names for the contacts manually. I just set the right address book vcard for my contacts.</dd><dt>I want pretty colors in the terminal</dt><dd>The OS X terminal is color-challenged by default. Add the following to ~/.profile:</p><pre><code>CLICOLOR=1
LSCOLORS=ExFxCxDxBxegedabagacad
export LSCOLORS CLICOLOR</code></pre><p>Source: <a
href="http://mac1.no/switch">Mac1.no</a></dd><dt>Finder leaves .DS_Store files all over the place on remote servers.</dt><dd>Just do a <code>defaults write com.apple.desktopservices DSDontWriteNetworkStores true</code> from the terminal and reboot.</dd><dt>Mediacenters and home servers should never go to sleep</dt><dd>My mediacenter would go to sleep if I wasn&#8217;t careful enough with the play button on the Apple Remote. And when I woke it up again, it wouldn&#8217;t always reconnect to the WLAN. <code>sudo pmset -a disablesleep 1</code> solved it. Sleep is now 100% disabled.</dd><dt>OS X has completely broken support for pageup/pagedown/home/end</dt><dd>The default behaviour for these keys are completely useless out of the box. Fix them by saving this to ~/Library/KeyBindings/DefaultKeyBinding.dict :</p><pre><code>{
    &quot;\UF729&quot;  = &quot;moveToBeginningOfLine:&quot;;
    &quot;$\UF729&quot; = &quot;moveToBeginningOfLineAndModifySelection:&quot;;
    &quot;\UF72B&quot;  = &quot;moveToEndOfLine:&quot;;
    &quot;$\UF72B&quot; = &quot;moveToEndOfLineAndModifySelection:&quot;;
    &quot;\UF72C&quot;  = &quot;pageUp:&quot;;
    &quot;\UF72D&quot;  = &quot;pageDown:&quot;;
}</code></pre><p>Source: <a
href="http://phatness.com/node/1661">Phatness.com</a>.</dd><dt>Proxy settings doesn&#8217;t work for command line tools</dt><dd>Ryan Tomayko had a <a
href="http://tomayko.com/writings/os-x-network-location-support-from-the-command-line">partial solution</a> for this, which I&#8217;ve adapted slightly. Add this to ~/.profile :</p><pre><code>netloc=$(/usr/sbin/scselect 2>&#038;1 | egrep '^ \* ' | sed 's:.*(\(.*\)):\1:')
http_proxy=$(egrep "$netloc[ \t]*=" /etc/http_proxy | sed 's/.*=[ \t]*\(.*\)/\1/')
if [ -n "$http_proxy" ]; then
  export http_proxy="$http_proxy"
  export HTTP_PROXY="$http_proxy"
else
  unset http_proxy
  unset HTTP_PROXY
fi</code></pre><p>Then add this in /etc/sudoers (needs sudo), right at then end of the lines starting with &#8220;Defaults&#8221;:</p><pre><code>Defaults	env_keep += "ALL_PROXY http_proxy HTTP_PROXY"</code></pre><p>From now on, all new terminals will use the proxy setting of the network location that was active when the terminal was started.</dd></dl> ]]></content:encoded> <wfw:commentRss>http://fuzzy76.net/147/mac-os-x-tips/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>The essential Mac OS X freeware list</title><link>http://fuzzy76.net/146/the-essential-mac-os-x-freeware-list/</link> <comments>http://fuzzy76.net/146/the-essential-mac-os-x-freeware-list/#comments</comments> <pubDate>Sat, 23 Jun 2007 15:53:12 +0000</pubDate> <dc:creator>Håvard Pedersen</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[Kjære dagbok]]></category> <category><![CDATA[Megafonen]]></category> <category><![CDATA[Programvare]]></category> <category><![CDATA[Sett på nett]]></category><guid
isPermaLink="false">http://fuzzy76.net/?p=146</guid> <description><![CDATA[It&#8217;s now official &#8211; I&#8217;m a Mac user. After flirting with Ubuntu Linux for a year, watching Knut Sætre (my coworker) use his MacBook Pro and reading all the switch stories around the net I decided time had come for a change. So far, I&#8217;m definitely not regretting anything. OS X seems to me like [...]]]></description> <content:encoded><![CDATA[<p>It&#8217;s now official &#8211; I&#8217;m a Mac user. After flirting with <a
href="http://www.ubuntu.com/">Ubuntu Linux</a> for a year, watching Knut Sætre (my coworker) use his MacBook Pro and reading all the switch stories around the net I decided time had come for a change. So far, I&#8217;m definitely not regretting anything. OS X seems to me like Plug &#8216;n Play the way it was supposed to work. Everything integrates out of the box, and I&#8217;ve so far never even SEEN the word &quot;driver&quot;. :D I&#8217;ve always meant that my &quot;work computer&quot; should work without fiddling and never need tweaking. This was the reason I waited so long to try Linux, and this is exactly the reason I love OS X.</p><p>As those who know me might know, I love researching stuff on the net. In addition to that, I&#8217;ve also got a personal policy of always using freeware when it does the job &#8211; my own way of avoiding pirated software. It also helps freeware authors get a nice user mass, so I can&#8217;t say I feel sorry for NOT buying commercial alternatives.</p><p>So one of the first things I did (actually before I received my black new-model MacBook with 2GB ram) was researching for apps I needed. And now, after actually testing them I figured I might publish my findings, so others could benefit from it as well. :) So here it is, my list of Mac OS X &quot;must have&quot; freewares:</p><p><span
id="more-146"></span></p><dl><dt><a
href="http://www.suavetech.com/0xed/0xed.html">0xED</a></dt><dd>There comes a time in every man&#8217;s life where he needs a hex editor. This is it, &#8217;nuff said.</dd><dt><a
href="http://www.adiumx.com">Adium</a></dt><dd>When first arriving from Windows, a Jabber transport (in iChat) was the only way to view your MSN contacts statusmessages. But since then, Adium (and libpidgin) has received proper MSN protocol support. And this IM is so smooth, it&#8217;ll make you go &quot;aaahhhh&quot; every time you start it.</dd><dt><a
href="http://metaquark.de/appfresh/">AppFresh</a></dt><dd>Integrates into iusethis.com and keeps all your apps and widgets up to date.</dd><dt><a
href="http://applejack.sourceforge.net/">AppleJack</a></dt><dd>AppleJack is a small rescue script, meant to be used from single-user mode. It can do a number of maintenance tasks and rescue operations. I have been able to repair filesystem inconsistencies, which Apples normal Disk utility couldn&#8217;t fix and I wasn&#8217;t even able to boot my Mac. So install it before it&#8217;s too late. Once installed, you will be reminded of its usage every time you login in single-user mode (command-S).</dd><dt><a
href="http://konstochvanligasaker.se/apptrap/">AppTrap</a></dt><dd>Uninstalling <u>could</u> be as easy as dropping the application in the trash, but there&#8217;s always some settings left behind. This application integrates with your trash, so that when you drop application in it, you will be asked if you want to remove other files beloning to the application as well.</dd><dt><a
href="http://audacity.sourceforge.net/">Audacity</a></dt><dd>Easy straight-forward digital audio editor. Wav, MP3, Flac and so on. Great for cropping ringtones and such.</dd><dt><a
href="http://www.bannister.org/software/ao.htm">Audio overload</a></dt><dd>Small player for those obscure mod / NES / Spectrum / whatever files.</dd><dt><a
href="http://burn-osx.sourceforge.net/">Burn</a></dt><dd>Burn is a CD burning software. It&#8217;s not much to say about it, it does what it&#8217;s supposed to do.</dd><dt><a
href="http://code.google.com/p/sequel-pro/">Sequel-Pro</a></dt><dd>A desktop client for MySQL. Think of it as phpMyAdmins agile little brother. :)</dd><dt><a
href="http://www.tastycocoabytes.com/cpa/">CocoaPacketAnalyzer</a></dt><dd>Awesome packet analyzer for that really technical stuff.</dd><dt><a
href="http://www.ict.usc.edu/~leuski/cocoaspell/">CocoASpell</a></dt><dd>Sadly, OS X doesn&#8217;t come with a norwegian spelling dictionary. Installing this gem will take care of it. :)</dd><dt><a
href="http://colloquy.info/">Colloquy</a></dt><dd>I&#8217;m a regular IRC&#8217;er, and sadly Mac only has one decent client and this is it. It&#8217;s still a bit rough in the edges, but works nicely.</dd><dt><a
href="http://cyberduck.ch/">Cyberduck</a></dt><dd>Sometime you need a real FTP client. I seldom do, but when that happens, I use Cyberduck. Why people still insist on Transmit is beyond me.</dd><dt><a
href="http://www.derlien.com/">Disk Inventory X</a></dt><dd>Analyzes a given directory (or disk) and its subfolder to give you a report on disk usage. Nice to find those space hogs on your harddrive.</dd><dt><a
href="http://homepage.mac.com/fahrenba/programs/dockless/dockless.html">Dockless</a></dt><dd>Dockless let you make any app run in the background (no dock icon).</dd><dt><a
href="http://www.dropbox.com/referrals/NTE2NDU1ODk">DropBox</a></dt><dd>DropBox is a universal internet disk service. It has revisions (how did this file look like a month ago?), automatic sync (all your computers has identical files), allows you to share files with other DropBox users, it even let you share pictures in your DropBox as a web gallery. The free account is 2GB, I bought myself a 50GB for <em>all</em> of my projects.</dd><dt><a
href="http://www.flip4mac.com/wmv.htm">Flip4Mac</a></dt><dd>This is a WMV (Windows Media Video) plugin so you can watch online video encoded as such.</dd><dt><a
href="http://fluidapp.com/">Fluid</a></dt><dd>Fluid is a Site-Specific Browser (SSB) that allows you to create desktop applications out of webapps. I use it for API lookups, Google Reader, GMail and more.</dd><dt><a
href="http://www.sourcemac.com/?page=fstream">FStream</a></dt><dd>A small netradio app. Handles a lot more types of streams than iTunes.</dd><dt><a
href="http://growl.info/">Growl</a></dt><dd>Gives youy nice bubble notifications from a lot of programs. Very configurable and very pretty. :) Make sure you also install the extra utilities, like HardwareGrowler to get instant statusnotifications on USB devices, network connections and so on.</dd><dt><a
href="http://handbrake.fr/">Handbrake</a></dt><dd>Video conversion and ripping done simple.</dd><dt>IdentiTwitch</dt><dd>My microblogging client of choice. Supports both Twitter and Identi.ca.</dd><dt><a
href="http://www.kronenberg.org/ies4osx/">ies4osx</a></dt><dd>While some people might prefer a root canal before running Internet Explorer, some of us actually need it.</dd><dt><a
href="http://www.istumbler.net/">iStumbler</a></dt><dd>Wireless network scanner, which shows a lot more info than the normal airport menu. Also does Bluetooth and Bonjour.</dd><dt><a
href="http://chipmunkninja.com/JustLooking-3.2-Mac-Image-Viewer-1s@">JustLooking</a></dt><dd>A good picture preview program. Nice for browsing large collections.</dd><dt><a
href="http://www.activestate.com/products/komodo_edit/">Komodo Edit</a></dt><dd>Komodo Edit is the freeware (or light if you prefer) version of ActiveState&#8217;s Komodo IDE. Even this stripped-down version has more features than any other free alternative out there. It&#8217;s also a big bonus that it look and feels identical on Windows, Linux and OS X. Syntax coloring, project management, inline compilation, error checking, autocomplete and much more.</dd><dt><a
href="http://www.last.fm/">last.fm</a></dt><dd>I consider the statistics and scrobbling secondary features. What really makes last.fm awesome is the ability to play automatic net radio based on tags or artists.</dd><dt><a
href="http://www.livestation.com/">Livestation</a></dt><dd>I have tried several TV-streaming applications, but this one is the only one that delivers on all accounts. Good selection of channels, good quality, easy to use.</dd><dt><a
href="http://www.macfusionapp.org/">MacFusion</a></dt><dd>Wouldn&#8217;t it be nice to mount ftp and SSH servers as network folders, accessible directly from your desktop? MacFusion does exactly that! It requires <a
href="http://code.google.com/p/macfuse/">MacFuse from Google</a> installed.</dd><dt><a
href="http://www.macports.org/">MacPorts</a></dt><dd>The BSD Ports system adapted for Mac. Gives you all those geeky UNIX tools. ;-)</dd><dt><a
href="http://www.ragingmenace.com/software/menumeters/">Menumeters</a></dt><dd>I&#8217;m addicted to know at a glance how my computer is working. Menumeters does exactly that by giving you small menubar indicators of your network, memory, cpu and disk usage. All completely configurable.</dd><dt><a
href="http://www.squared5.com/svideo/mpeg-streamclip-mac.html">MPEG Streamclip</a></dt><dd>Video software for conversion, batch processing and more. I use it to convert any video type into DV format so iMovie will use it.</dd><dt><a
href="http://www.mucommander.com/">muCommander</a></dt><dd>A universal filecommander, because most computers need one. This one does several protocols (FTP, SFTP, SMB, NFS, HTTP and Bonjour), several archive formats (ZIP, RAR, TAR, GZip, BZip2, ISO/NRG, AR/Deb and LST) and all the usual operations.</dd><dt><a
href="http://no.openoffice.org/">OpenOffice</a></dt><dd>I guess I don&#8217;t really need to describe this one. :)</dd><dt><a
href="http://perian.org/">Perian</a></dt><dd>Adds support for a ton of additional media formats to QuickTime. Too many to list here.</dd><dt><a
href="http://www.caffeinatedcocoa.com/photobook/index.html">PhotoBook</a></dt><dd>A Facebook photo browser for the Facebook addicts out there.</dd><dt><a
href="http://www.microsoft.com/mac/products/remote-desktop/default.mspx">Remote desktop connection</a></dt><dd>Because you have to, not because you want to. :)</dd><dt><a
href="http://www.renoise.com/">Renoise</a></dt><dd>Trackerbased music sequencing software. Mostly for nostalgic reasons.</dd><dt><a
href="http://www.sidmusic.org/sidplay/mac/">SIDPlay</a></dt><dd>For that old C64 feeling! ;)</dd><dt><a
href="http://plasq.com/skitch">Skitch</a></dt><dd>This is the ultimate picture&#8230; uhm&#8230; faciliator. :-P Inputs from screenshots, files, drag&#8217;n'drop. Annotate, draw, edit. Outputs to drag&#8217;n'drop, webpublish, file, anywhere. I use this all the time!</dd><dt><a
href="http://www.skype.com/">Skype</a></dt><dd>While iChat has very good conference abilities, it&#8217;s not cross-platform. For audio/video conferencing with Windows users, this is the only viable alternative.</dd><dt><a
href="http://www.orange-carb.org/SBM/">SlimBatteryMonitor</a></dt><dd>It has always bugged me that OS X&#8217;s battery meter can&#8217;t be set to show only when actually on battery (or charging). Luckily, this one can.</dd><dt><a
href="http://smultron.sourceforge.net/">Smultron</a></dt><dd>Smultron is what is known as a &quot;Notepad replacement&quot; in the Windows world. It does syntax highlighting for most programming languages, and has some very powerful text processing tools available.</dd><dt><a
href="http://ditchnet.org/soapclient/">SOAP Client</a></dt><dd>A simple SOAP Web Service client. Nice for debugging. The same author also has a <a
href="http://ditchnet.org/xmlrpc/">XML-RPC Client</a>.</dd><dt><a
href="http://www.shadowlab.org/Software/software.php?sign=Sprk">Spark</a></dt><dd>Spark lets you create global hotkeys for just about everything. I use it to start Terminal.app, control iTunes and much more.</dd><dt><a
href="http://www.spotify.com/">Spotify</a></dt><dd>The program that really changed how I consume my music! Listen to any song, create and share playlists, etc.</dd><dt><a
href="http://wakaba.c3.cx/s/apps/unarchiver.html">The Unarchiver</a></dt><dd>For extracting any archive format you throw at it.</dd><dt><a
href="http://transmission.m0k.org/">Transmission</a></dt><dd>A simple and effective BitTorrent client. Though the upcoming <a
href="http://mac.utorrent.com/beta/">beta of uTorrent</a> also looks promising.</dd><dt><a
href="http://www.videolan.org/vlc/">VLC media player</a></dt><dd>The ugly and cumbersome, but extremely powerful media player. :) I install this on all operating systems. It uses builtin codecs for all media formats you can throw at it. Whenever I encounter a file I can&#8217;t play elsewhere, VLC will. It even has conversion abilities.</dd></dl><p>And a couple of games:</p><ul><li><a
href="http://www.wonderwarp.com/otis/">Otis</a> &#8211; Easy puzzle game</li><li><a
href="http://www.simonhaertel.de/">Quinn</a> &#8211; Tetris</li><li><a
href="http://www.lavacat.com/">Solitaire XL</a> &#8211; Solitaire</li><li><a
href="http://en.tetrinet.no/tetrinet-aqua-page-9.php">Tetrinet Aqua</a> &#8211; Multiplayer Tetris clone</li></ul><p>And the few programs I actually found worth paying for:</p><ul><li><a
href="http://www.jungledisk.com/">JungleDisk</a> &#8211; Real &quot;in the cloud&quot; backup. Uses personal Amazon S3 accounts for storage.</li><li><a
href="http://codesorcery.net/meerkat">Meerkat</a> &#8211; Just plain <em>awesome</em> tunnel handling. SSH tunnels, Bonjour support, Application triggering&#8230; This one does it all.</li><li><a
href="http://centrix.ca/NetworkLocation/">NetworkLocation</a> &#8211; Dynamically changes system settings (and more, for instance start a Meerkat tunnel) based on your location. Location may be derived from wireless networks, cabled networks, bluetooth and USB devices.</li><li><a
href="http://secondgearllc.com/today/">Today</a> &#8211; A &quot;day at a glance&quot; app which show your daily appointments and tasks, fetched from iCal.</li></ul><p>And my screensavers:</p><ul><li><a
href="http://wakaba.c3.cx/s/lotsablankers/lotsawater.html">Lotsawater</a> &#8211; Water effect on top of your desktop.</li><li><a
href="http://www.rogueamoeba.com/freebies/">PongSaver</a> &#8211; Pong as a screensaver.</li><li><a
href="http://homepage.mac.com/holtmann/eidac/software/shuffelsaver/shufflesaver.html">ShuffleSaver</a> &#8211; Slideshow based on tags/authors/sets from Flickr</li><li><a
href="http://www.jimmcgowan.net/Site/SpaceInvaders.html">Space Invaders</a> &#8211; The classic game as screensaver.</li><li><a
href="http://i.document.m05.de/?page_id=438">Surveillance saver</a> &#8211; Live AXIS surveillance cameras straight from Google. Gotta love the information super highway. ;)</li><li><a
href="http://www.simonheys.com/wordclock/">Word Clock</a> &#8211; A typographic screensaver featuring the current time and date.</li><li>&#8230;<a
href="http://www.whiteknightlogic.net/code.php">White Knight Logic</a> &#8211; A collection of 3D screensavers.</li></ul><p>Some might want to know which I browser I prefer for Mac, but the truth is that I&#8217;m still testing out my options. I started out with Opera, went through Camino, Safari 3 beta, Opera 9.5 alpha, Safari 3 and Firefox 3. I&#8217;ll let you know when I&#8217;ve settled in. :) Here are my Safari extensions (I have a separate blogpost with my Firefox extensions, but it haven&#8217;t been updated for ages):</p><ul><li><a
href="http://www.kitzkikz.com/Sogudi">Sogudi</a> &#8211; Keyword search from adress bar</li><li><a
href="http://fsbsoftware.com/SafariBlock.html">SafariBlock</a> &#8211; Small and effective adblocker</li><li>Inquisitor &#8211; Inline AJAX-style search bar</li><li><a
href="http://www.macosxhints.com/article.php?story=2007061303320554">Webkit webdev tools</a> &#8211; Just what I said</li></ul><p>I will probably update this entry as I discover new applications (and scrap my old ones), so if you&#8217;re a Mac user yourself, feel free to bookmark it. :)</p><p><strong>Edited:</strong> 11th july 2007, 27th june 2007, 24th september 2007, 24th september 2007, 13th december 2007, 3rd december 2008, 6th december 2008, 7th december 2008, 3rd january 2009.</p> ]]></content:encoded> <wfw:commentRss>http://fuzzy76.net/146/the-essential-mac-os-x-freeware-list/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Reorganizing my life&#8230; again</title><link>http://fuzzy76.net/145/reorganizing-my-life-again/</link> <comments>http://fuzzy76.net/145/reorganizing-my-life-again/#comments</comments> <pubDate>Sat, 28 Apr 2007 14:09:20 +0000</pubDate> <dc:creator>Håvard Pedersen</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[Kjære dagbok]]></category> <category><![CDATA[Megafonen]]></category> <category><![CDATA[Programvare]]></category> <category><![CDATA[Sett på nett]]></category><guid
isPermaLink="false">http://fuzzy76.net/?p=145</guid> <description><![CDATA[During the last couple of months, GMail has had several hiccups. And when Google homepage suddenly lost all my gadgets for two days recently, I figured I might look into the desktop application approach to organizing my life again. I&#8217;ve also experienced that having &#8220;tools&#8221; in the same browser that contains tabs with social networks [...]]]></description> <content:encoded><![CDATA[<p>During the last couple of months, GMail has had several hiccups. And when <a
href="http://hp.fuzzy76.net/archives/134-Google-Homepage-revisited.html">Google homepage</a> suddenly lost all my gadgets for two days recently, I figured I might look into the desktop application approach to organizing my life again. I&#8217;ve also experienced that having &#8220;tools&#8221; in the same browser that contains tabs with social networks and news is pretty counter-productive in the long run. :)</p><p><span
id="more-145"></span><p>For quite a while, I&#8217;ve been using a free service called <a
href="http://www.scheduleworld.com/">ScheduleWorld</a> for syncing the calendar on my mobile phone against my Google Calendar. It&#8217;s a service that provides sync for calendars, notes, todo-items and contacts. It supports all of this through a J2ME app for mobile phones, SyncML (which most new phones support, including my Nokia N80), Google Calendar integration and a dedicated Mozilla Thunderbird plugin (there are SyncML plugins for Thunderbird, but the SyncML protocol is hard to get a perfect implementation of). The page also has a webinterface for all your data, so it&#8217;s easy to view your &#8220;stuff&#8221; even if all of your clients are unavailable.</p><p>It suddenly occured to me that I might as well move my data completely to this service instead of relying on several third parties for this. I installed <a
href="http://www.mozilla.com/en-US/thunderbird/">Mozilla Thunderbird</a>, <a
href="http://www.mozilla.org/projects/calendar/lightning/">Mozilla Lightning</a> (a calendar/todo extension for Thunderbird) and the SW Thunderbird plugin and I was ready to go!</p><p>Ofcourse, once I set up my phone to synchronize contacts and imported the GMail address book into SW as well and they both showed up in Thunderbird, there was a lot of cleaning up to do. Thanks to the <a
href="http://addons.mozilla.org/en-US/thunderbird/addon/2505">Duplicate Contact Manager extension for Thunderbird</a> it didn&#8217;t took me long to clean it all up. Granted, I had to do 4-5 syncs between the phone and Thunderbird before the list was completely cleaned up, but it was definitely worth it. :)</p><p>And for mail, you might wonder? I still route all mail through GMail, but I&#8217;ve gone back to my old setup of <a
href="http://hp.fuzzy76.net/archives/98-3-Horde.html">using my own Courier IMAP-server, which uses fetchmail to automatically fetch all GMail</a>. Importing everything back from GMail into the IMAP server was relatively easy, I just started fetchmail again and it churned away for an hour. Thankfully it started from the last date the account was accessed through POP3, which was when I stopped fetchmail on my server last autumn. :) Unfortunately, I did get quite a bit of duplicate messages after the import, but it was easily remedied by the <a
href="http://addons.mozilla.org/en-US/firefox/addon/956">Remove Duplicate Messages extension for Thunderbird</a> (2.0-compatible version available in the comments for the extension).</p><p>As an extra tip, I figured out a way to share config files between work and home aswell. I set up a folder in my home directory called &#8220;share&#8221;, which essentially is a <a
href="http://subversion.tigris.org/">Subversion</a> working copy. I keep my mail signatures there, so if I edit them at home, all I need to do is commit the changes and perform a update the next time I log in at work. :) Program settings can also be stored there, and all I need to do to get it working is symlinking the real config file to the one in my share folder. :)</p><p>So there you have it! Signatures, todo-items, calendars, address books and mail &#8211; all shared across home computer, work computer and mobile phone! :) If I&#8217;m on someone else&#8217;s computer I still have Horde to fall back on for reading email (or my WLAN-enabled Nokia N80 which comes with an IMAP reader), and ScheduleWorld&#8217;s web interface for my organizer.</p><p><em>Warning: </em>At the time of writing, ScheduleWorlds Thunderbird extension is not tested for Thunderbird 2.0. It worked for me (some phone numbers were &#8220;invisible&#8221; in Thunderbird, but were still present in both the web interface and on the phone), but other people have had problems with the combination.</p><p><em>Alternative 1:</em> Ofcourse, the snappiest way to get mail from GMail is to set GMail itself to forward the mails instead of using fetchmail. This also let you use any IMAP server (for instance if you company provided you with an IMAP account). Unfortunately, this wasn&#8217;t an option for me as my server can&#8217;t accept incoming mail traffic (so it&#8217;s purely a dummy server).</p><p><em>Alternative 2:</em> If you do not trust a third party with your calendar and mobile sync isn&#8217;t an issue for you, <a
href="http://www.gargan.org/extensions/synckolab.html">Sync Kolab</a> promises to sync all information across Thunderbird installations by using an IMAP folder. A pretty smart concept. :)</p> ]]></content:encoded> <wfw:commentRss>http://fuzzy76.net/145/reorganizing-my-life-again/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Yet another Firefox extension list</title><link>http://fuzzy76.net/129/yet-another-firefox-extension-list/</link> <comments>http://fuzzy76.net/129/yet-another-firefox-extension-list/#comments</comments> <pubDate>Sat, 28 Oct 2006 14:41:50 +0000</pubDate> <dc:creator>Håvard Pedersen</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[Megafonen]]></category> <category><![CDATA[Programvare]]></category><guid
isPermaLink="false">http://fuzzy76.net/?p=129</guid> <description><![CDATA[When I first got a customized Firefox install demonstrated to me I was immediately awestruck by the functionality offered by extensions. Sure, Firefox isn&#8217;t the fastest nor the most standard-compliant browser around, but the extensions really got me hooked (thanks, HHJ)! So I did the conversion after having used Opera for 5-6 years. And now, [...]]]></description> <content:encoded><![CDATA[<p>When I first got a customized Firefox install demonstrated to me I was immediately awestruck by the functionality offered by extensions. Sure, <a
href="http://www.firefoxmyths.com/">Firefox <em>isn&#8217;t</em> the fastest nor the most standard-compliant browser</a> around, but the extensions really got me hooked (thanks, <a
href="http://hhj.no">HHJ</a>)! So I did the conversion after having used Opera for 5-6 years. And now, after half a year I find it a real pain to install all extensions every time I install a new computer. So as much for the benefit of myself as well as a public service, I thought I&#8217;d list all my extensions together with links. :)</p><p><span
id="more-129"></span></p><dl><dt><a
href="http://karmatics.com/aardvark/">Aardvark</a></dt><dd>This plugin with the weird name is indisposable for printing web pages. You can delete elements, remove width of elements (so they expand properly), grab an element out of it&#8217;s surroundings (think article in the middle of a heavy website layout) and more. Once you&#8217;re satisfied with the result, click print! :)</dd><dt><a
href="http://adblockplus.org/en/">Adblock plus</a></dt><dd>This is the best ad blocker I&#8217;ve seen, and I&#8217;ve tried quite a bit. Rightclick on any ad and add a rule, completely configurable with wildcars. Does both flash and images.</dd><dt>Blink-related plugins (various)</dt><dd>These plugins are specific for the norwegian community website, <a
href="http://blink.dagbladet.no">Blink</a>. The ones I use are (though there are more):</p><ul><li>Blinkbilder &#8211; Previews both profile pictures and files in the upper right corner when the mouse is over a nick or a filename.</li><li>Blinksvar &#8211; Adds a much better way of replying to guestbook entries, mails or debate posts.</li><li><a
href="http://www.orrie.org/?side=blinkmeny">Blinkmeny</a> &#8211; Adds a right-click menu for nicks that lets you go directly to any page of a users profile.</li></ul></dd><dt><a
href="http://www.bugmenot.com/">BugMeNot</a></dt><dd>Online newspapers that require you to register before reading a single article are extremely irritating, and I have never registered for one of those. With this plugin you can still read the article. It autofills the login form with a dummy account. And if you encounter sites not supported, you can add it to Bugmenot yourself!</dd><dt><a
href="http://www.customizegoogle.com/">CustomizeGoogle</a></dt><dd>Adds a bunch of configuration options and extended functionality for Google&#8217;s services.</dd><dt><a
href="https://addons.mozilla.org/en-US/firefox/addon/26">Download Statusbar</a></dt><dd>The Firefox download dialog is just plain irritating. I&#8217;ve tried to configure it useful, but I just can&#8217;t get used to it. This extension replaces it with a download bar (above the statusbar) that feels much better in my opinion.</dd><dt><a
href="http://www.downthemall.net/">DownThemAll!</a></dt><dd>A mass-downloader for Firefox. Allows you to download all links or images or specific files from a given page. Great when downloading browsable directories from servers.</dd><dt><a
href="http://fasterfox.mozdev.org/">Fasterfox</a></dt><dd>Fasterfox gives you a nice view of all performance-related settings in Firfox and let you tweak every one of them. It also has a couple of pre-configured profiles which I found to be more than enough for me. The difference is very noticable!</dd><dt><a
href="https://addons.mozilla.org/en-US/firefox/addon/518">Fetch Text URL</a></dt><dd>When migrating from Opera to Firefox I really missed being able to right-click a plaintext webadress (not hyperlinked) and actually open that adress in a new tab. Voila!</dd><dt><a
href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a></dt><dd>Firebug is sort of the built-in DOM Inspector on steroids! It lets you inspect the page on a per-element basis. Look at elements created by Javascript or elements in your HTML. Check active CSS rules, active even handlers and much more for each element. Extremely useful for tracing down bugs in your CSS declarations and inspecting what your Javascripts really does to the DOM. It also has a Javascript console, xmlhttprequest logging, Javascript debugging with breakpoints and more!</dd><dt><a
href="http://www.google.com/tools/firefox/browsersync/">Google Browser Sync</a></dt><dd>This plugin has me hooked! It synchronizes <em>open tabs</em>, bookmarks, settings (not extension settings though), history, passwords and even cookies between all your Firefoxes! I have this installed on both Windows and Linux on my home computer (dualboot) and my work laptop and the sync works all ways!</dd><dt><a
href="http://www.google.com/notebook/download">Google Notebook</a></dt><dd>Google Notebook is a online &#8220;quick note&#8221; service from Google. With this plugin you can mark text in the browser and convert it into a note, open up your notes from the statusbar icon and more.</dd><dt><a
href="http://www.google.com/tools/firefox/toolbar/index.html">Google Toolbar</a></dt><dd>I know Firefox has excellent searching to begin with, but that&#8217;s not the reason for installing this. I normally just enables the Google Docs integration that causes Firefox to open all Word documents in Google Docs and then hide the bar entirely.</dd><dt><a
href="http://users.skynet.be/mgueury/mozilla/">HTML Validator</a></dt><dd>Shows a small icon on the status bar that tells you wether or not the current page is valid. Also adds inline validation results in Firefox&#8217; view source dialog.</dd><dt><a
href="http://livehttpheaders.mozdev.org/index.html">LiveHTTPHeaders</a></dt><dd>Let you inspect the HTTP headers of any page and even view or log all requests as they happen.</dd><dt><a
href="https://addons.mozilla.org/en-US/firefox/addon/12">All-in-one Gestures</a></dt><dd>Mouse gestures are a really good timesaver once you get used to them. This plugin is very configurable and let you edit all the default gestures.</dd><dt><a
href="http://snissa.com/">Snissa.com screenshot extension</a></dt><dd>Lets you save full pages as screenshots, no matter how high the page is. Really useful for designers. When I wanted to make a schematic view of the ad placements on <a
href="http://www.bladet-tromso.no">Bladet TromsÃ¸</a> I first simplified the page with Aardvark, then saved the screenshot with this. Also lets you publish the screenshot to <a
href="http://snissa.com">Snissa.com</a>, which I guess is nice if you want to display webdesigns residing on local servers or show someone how the page looks on your computer.</dd><dt><a
href="https://addons.mozilla.org/en-US/firefox/addon/2108">Stylish</a></dt><dd>Override CSS rules for any domain or URL. I use this for customizing a lot of the Google services and other stuff. Pretty nifty. A lot of pre-made customizations are available at <a
href="http://userstyles.org/">Userstyles.org</a>.</dd><dt><a
href="http://addons.mozilla.org/en-US/firefox/addon/158">Tabbrowser preferences</a></dt><dd>I could never be satisfied with the tab behaviour in Firefox until I installed this one. Adds a lot of configurable options on how tabbed browsing work.</dd><dt><a
href="http://javimoya.com/blog/youtube_en.php">Video downloader</a></dt><dd>Download videos from online video communities that doesn&#8217;t normally allow you to do this. Supports YouTube, Google Video and a <em>lot</em> more.</dd><dt><a
href="http://addons.mozilla.org/en-US/firefox/addon/60">Web developer</a></dt><dd>For anyone doing web development, this toolbar is <strong>the</strong> most important extension! View CSS rules, disable stylesheets, highlight elements, view elements info, validate HTML/CSS (even for local files), emulate browsers without referrer/javascript/css/cookies, direct CSS editing, size profiling, resize browser window, view generated source (including Javascript additions) and much, much more! This plugin was actually the reason for my switch from Opera to Firefox.</dd></dl><p>I will probably update this entry as I discover new extensions (and scrap my old ones), so if you&#8217;re a Firefox user yourself, feel free to bookmark it. :) Right now, the extensions that aren&#8217;t updated for Firefox 2.0 are Aardvark and LiveHTTPHeaders.</p><p><strong>Edit:</strong> Added Stylish 8th november 2006. Added Google Toolbar 3rd february 2007. Added Snissa 6th March 2007.</p> ]]></content:encoded> <wfw:commentRss>http://fuzzy76.net/129/yet-another-firefox-extension-list/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Folder Size &#8211; find where the diskspace went</title><link>http://fuzzy76.net/108/folder-size-find-where-the-diskspace-went/</link> <comments>http://fuzzy76.net/108/folder-size-find-where-the-diskspace-went/#comments</comments> <pubDate>Sun, 16 Jul 2006 16:53:14 +0000</pubDate> <dc:creator>Håvard Pedersen</dc:creator> <category><![CDATA[English]]></category> <category><![CDATA[Programvare]]></category><guid
isPermaLink="false">http://fuzzy76.net/?p=108</guid> <description><![CDATA[I&#8217;ve tried several programs to help diagnose diskspace usage. All of them were stand-alone apps that scanned a specied folder and it&#8217;s subfolders, giving you various views over disk usage (folder trees, piecharts and in some cases weird block-diagrams). But today I stumbled upon Folder Size, a superb solution. What it basically does is add [...]]]></description> <content:encoded><![CDATA[<p>I&#8217;ve tried several programs to help diagnose diskspace usage. All of them were stand-alone apps that scanned a specied folder and it&#8217;s subfolders, giving you various views over disk usage (folder trees, piecharts and in some cases weird block-diagrams). But today I stumbled upon <a
href="http://foldersize.sourceforge.net/">Folder Size</a>, a superb solution. What it basically does is add a system service that keeps track of folder sizes on request (with caching and change notifications) together with a new column in Explorer called &#8220;Folder Size&#8221;, which behaves like the normal size column except that it also adds the total size of folders (instead of the blank space the normal size column displays). This explanation might look a bit messy, but just click the link and look at the screenshot! :)</p> ]]></content:encoded> <wfw:commentRss>http://fuzzy76.net/108/folder-size-find-where-the-diskspace-went/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: fuzzy76.net @ 2010-09-09 17:51:52 by W3 Total Cache -->