Author: Tor Håkon Haugen

  • Hva gjorde vi før YouTube?

    Av og til er YouTube så fantastisk at man vanskelig kan forestille seg Internett uten. Og det kommer fra en som har opplevd Internett både uten YouTube, Facebook og Google. Når jeg først kom på Internett var det AltaVista og SOL. Ja, også VG da. Men sistnevnte har utspilt sin rolle for min del.

    Uansett. Grunnen til at jeg kom på dette med YouTube akkurat nå var at jeg snublet over et par herlige klipp. Noe jeg forsåvidt gjør ofte, men her lå dem på rekke og rad, noe som gjorde det lettere å fylle innlegget med video slik at jeg slipper å skrive så mye.

    Ideén er enkel. Ta intro-musikken til en kjent tv-serie, og klipp til med bilder fra Star Wars. Har lagt ved et par eksempler her i bloggen. Hvis du husker introen til tv-seriene som musikken er hentet fra vil du også se at videoen er klippet ganske så godt sammen.

    Star Wars – MacGuyver theme.

    Star Wars – A team theme

    Star Wars – Dallas theme

  • Pentax AF-330FTZ and Hanimex 325AZ Trigger Voltage

    Just a short post about camera flashes and trigger voltage.

    Canon specifies a safe trigger voltage up to 6 volts using the hotshoe on their digital cameras. If it’s higher, it might damage the camera. So I have measured the trigger voltage on two older flashes I have lying around, since I didn’t get (m)any hits searching the interewebz.

    Pentax AF-330FTZ has a trigger voltage of 3.14V
    Hanimex 325AZ has a trigger voltage of 110V

    So the Pentax AF-330FTZ should be safe. Hanimex 325 however, isn’t. What’s kind of scary is that I have used the Hanimex on several occasions on my 350D. Luckily no harm done (as far as I can tell).

    Update: Found this web page explaining some more around this issue.

    I take this to mean that all Canons DSLRs newer than the 350D, as well as all the professional models, can use flash with trigger voltages up to 250 volts in their hot-shoe. However, 6 volts is the safe limit for the D30, D60, 10D, 300D, and Canon’s digital compact cameras.

  • Fordeler ved å fotografere i RAW-format

    Klikk på bilde for større versjon

    Det er ganske utrolig å se hvor mye som kan reddes i et bilde tatt i RAW-format. I bilde ovenfor kan man se at orginalen manger kontrast, og dermed fremstilles som grå og kjedelig. Bilde til høyre er resultatet etter en rask behandling i Adobe Lightroom. Kontrasten er gjennopprettet og dermed kommer fargene klarere frem. Det er naturligvis ønskelig å få best mulig resultat rett ut av kamera, men i dette tilfellet hadde jeg vært litt uheldig med innstillinger, samt at jeg skulle nok ha brukt solblender. Skal heller ikke se bort fra at UV-filteret på objektivet burde vært renset. Men er man først uheldig er det greit å vite at mye kan rettes i etterkant.

    Bjergafjellet

  • Jobb-bytte

    Jeg har i dag sagt opp jobben som Teamleder Drift hos Jakob Hatteland Solutions. Fra og med 1. desember vil jeg jobbe for Sysco som Systemkonsulent. Det har vært en svært vanskelig beslutning med tanke på alle de fantastiske menneskene jeg har blitt kjent med, men jeg føler at tiden er inne for nye utfordringer.

    Veritas vos Liberabit

  • Adobe Air – Open URLs in default browser

    For the last few days I’ve been fighting TweetDeck on my laptop trying to get it to open web pages in Opera. A small, but fast browser, from the Norwegian company with the same name.

    At first I thought that Opera wasn’t my default browser in Gnome. I’m currently using Linux Mint, a distribution based on Ubuntu. So I checked the “Preferences->Preferred Applications” and made sure Opera was the default application for browsing the web. I also checked with “gconf-editor” just to be safe that Opera was set as default browser.

    Having checked all this. I did a few tests and found out that Opera was indeed the default application for surfing the web. So the problem had to be limited to TweetDeck or Adobe AIR.

    Now. I checked all the xml-files regarding Adobe AIR and TweetDeck, I even installed SQLite3 to read the database file for TweetDeck in my home directory. No luck.

    But the Internet is a collection of tubes amazing and brilliant people. So I searched and found Andrea Olivato, which in turned had found the solution to my (and many others) problem. He discovered that Adobe AIR has hard-coded firefox as default browser in libCore.so, which (usually) can be found in /opt/Adobe AIR/Versions/1.0.

    The solution

    His solution to the problem was to open libCore.so with vim, or any other editor for that matter, and search for the word “firefox”. Ok, he writes that he jumps directly to line 15500, but this might change. But then again, maybe Adobe will make it work in the future. Anyway. He replaced “firefox” with “browser”, which is the same length. Very important. And created a symlink from his favourite browser to, well, browser.

    In my case:

    ln -s /usr/bin/opera /usr/local/browser

    I noticed that in libCore.so, Adobe has a reference to /desktop/gnome/url-handlers/http/command, which is the registry setting for Gnome when it comes to default browser. Why this isn’t used I don’t understand. Perhaps the hard-coded firefox is a backup solution in case AIR fails to retrieve the information from the registry.