Archive for the ‘Uncategorized’ Category

gammal logitech express

Friday, March 19th, 2010

LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype

Sunday, October 4th, 2009

Bygg en fågelholk

Detta behövs:

  • Ohyvlad bräda ca 15 cm bred och 20-25 mm tjock.
  • Såg
  • Borrmaskin och borr
  • Hammare och spikSåga brädan i längder som bilden nedan visar. Det behöver inte vara exakt samma mått, men ungefär dessa passar till småfåglar som exempelvis talgoxar.
  • holkbräda

    Spika ihop brädorna till en holk som bilden till höger visar. Framsidan kan man låta vara öppningsbar i nederkant så att den går lätt att rensa. Den säkras med en sned spik i ett borrat hål från sidan.

    Tillbakabild Dessa fåglar häckar i holkar


    Fortsätt Fortsättbild

    control volume in different apps

    Saturday, September 12th, 2009

    http://news.softpedia.com/newsPDF/How-to-Replace-the-Volume-Control-in-Ubuntu-9-04-with-the-PulseAudio-One-112786.pdf

    nmap

    Sunday, July 19th, 2009

    nmap -sP 192.168.1.0/24

    Tuesday, June 16th, 2009

    convert ot.gif -resize 50 -strip -quality 50 -interlace line ot.gif

    DDNS reminder

    Thursday, June 4th, 2009

    721006.no-ip.org

    Wednesday, April 15th, 2009

    mmmilk

    Karate-do geocoin 2009

    Tuesday, April 14th, 2009

    Då har myntet äntligen landat och webshopen sett dagens ljus.

    http://www.henke.nu/webshop

    mysql reminder

    Tuesday, April 14th, 2009
    1. Start the MySQL client by entering the following command:
      mysql -uUser -pPassword

      For example, if your MySQL user name (also known as an account name) and password are Tara and Telly3, then enter the following command:

      mysql -uTara -pTelly3

      If you don’t have a password, omit the -p argument as follows:

      mysql -uTara

      If you didn’t define a user name while configuring your MySQL installation, enter root as the user name, as follows:

      mysql -uroot

      The MySQL client’s command prompt appears, as follows:

      mysql>
    2. Create a new database by entering the following command at the MySQL prompt:
      mysql>CREATE DATABASE TrioMotors;

      MySQL creates a new database, but it doesn’t contain any tables or records yet.

    3. Log out of the MySQL client by entering the following command at the prompt:
      mysql>quit;

    unzip em all

    Sunday, February 22nd, 2009

    $ for z in *.zip; do unzip $z; done