|  About  |  Archives  |  Log in  | 

“Say Hello To My Little Friend”

Yesterday, my brother Magnus and his wife Camilla turned me into an uncle. Little baby Konrad (the tentative name) arrived in this world a little after five o’clock yesterday morning, at roughly the same time as the first snow this year. I went to admire Konrad and congratulate his proud parents yesterday afternoon after work, and Ida and I paid them a visit this morning where the above picture is from. I am so happy for Camilla and Magnus (and subsequently, Konrad) and very exited, since Ida and I also have a baby in the pipeline, with an expected delivery date of March 15. next year.

If you enjoyed this post, make sure you subscribe to my RSS feed!

Æbleskiver

Den nedenstående opskrift er en kombination af opskrifterne her og her.
En portion som angivet giver ca. 75 æbleskiver.

Ingredienser

  • 500 g. mel
  • 1 tsk. natron
  • 50 g. sukker
  • 8 dl. kærnemælk
  • 6 æg
  • 75 g. smeltet smør eller margarine
  • 1 tsk. vaniliesukker
  • 2 sknivspids kardemomme
  • 2 knivspids salt

Fremgangsmåde

  • Rør mel, natron, sukker og kærnemælk til vælling.
  • Tilsæt æggeblommer
  • Pisk æggehviderne stive og vend dem forsigtigt i dejen.
  • Tilsæt smør
  • Tilsæt vaniliesukker, kardemomme og salt.
  • Hæld dejen over i en kande.
  • Varm æbleskivepanden godt op, og kom en smule fedtstof i hvert
    hul.
  • Hullerne fyldes ca. 2/3 med dej og æbleskiverne bages ved svag
    varme.
  • Æbleskiverne må ikke vendes før de har dannet skorpe på den
    ene side, men heller ikke så sent, at dejen er for stiv til at danne
    bue på undersiden.

Server med kaffe, flormelis og syltemøg.

If you enjoyed this post, make sure you subscribe to my RSS feed!

Novell NetDrive

Found this excellent tool from Novell today.NetDrive enables you to map FTP sites to network drives in Windows. At Novell, I only found this Cool Solutions Q&A page, which state:

… the current NetDrive version is 4.0. It is on the NetWare 6 Client CD. To find a download, search for netdrive.exe on the Web. Due to licensing issues, it is not a download from Novell.com.

I googled 'netdrive' and found plenty of download sites, of which many seem to be universities and colleges. Loyola College in Maryland explains how to install and use NetDrive.

If you enjoyed this post, make sure you subscribe to my RSS feed!

Typo Install

I have just installed the Typo blogging system on a WinXP box (SP1). Since I could not find a walkthrough of the install process, I thought I would post my experience. A readme file comes with the Typo distribution and it contains all necessary information. Here's what I did:I downloaded the latest stable release and unzipped the file into a local directory. I then followed the instructions in the readme file (located in the root of the directory you unzipped to):

  • Created Postgresql Typo database by executing
    db/schema.psql.sql

    . I copied the SQL statements into pgAdminIII and executed them from there.

  • Updated config/database.yml to use adapter
    'postgresql'

    - enter name, username and password for the database you have just created for typo. Note that for this to work, you must have the postgresql library for Rail's ActiveRecord installed. This can be done through the RubyGems installer - see my post on Ruby on Rails install.

  • Ran
    'ruby script/server -e production'

    , which started WEBbrick.

  • Pointed browser to
    http://localhost:3000

    and commenced account signup.

  • After account signup, configure blog using web administration interface at
    http://localhost:3000/admin

Now I am up and running and almost everything is good. WEBrick - the web server that is bundled with {'Ruby', 'Rails', 'Ruby on Rails'} - dies on me a lot. The frequent crashes seems to occur whenever I submit a new request (by clicking a link in Typo or entering URL in browser), before a page has loaded completely.

If you enjoyed this post, make sure you subscribe to my RSS feed!

Ruby Install Walkthrough

I installed Ruby on Rails on my XP box (SP1) at work and thought I would post how I did it.


Update 29-11-2005

I came across this excellent set of configuration tutorials on the Ruby on Rails Wiki.

If you enjoyed this post, make sure you subscribe to my RSS feed!

Firefox Keyboard Shortcuts

I came across this nifty overview of keyboard shortcuts for the Mozilla Firefox browser. The page also lists the equivalent shortcuts for Internet Explorer and Opera.

Get Firefox!

If you enjoyed this post, make sure you subscribe to my RSS feed!

Ruby On Rails

I am getting my feet wet with Ruby on Rails - RoR. "Rails" is a much hyped framework for web application development, which uses the "Ruby" programming (or is it scripting?) language. So far it has been a very pleasant experience since RoR really does away with a lot of the CRUD involved in web application development. I have not yet gotten to the more heavy stuff concerning page layout, site navigation and session management, but here are links to some of the resources that helped me get started.
The Ruby on Rails website and these are the "official" getting started pages. The inventor of Rails, David Heinemeier Hansson, has posted a few "getting started" tips in his blog.

At Oreilly's ONLamp.com, Curt Hibbs has written a tutorial in two parts (part 1 part 2). The tutorial features a walkthrough of a simple, yet very illustrative sample application. Curt Hibbs is also the author of an article on using Ajax with Rails.
This blog entry comments and supplements Curt Hibb's tutorial.
How to get Ruby on Rails working with Apache2 and FastCGI?
Using Eclipse for Rails development or the Eclipse based RadRails IDE.

If you enjoyed this post, make sure you subscribe to my RSS feed!