Cillian started dancing yesterday. The little legs pump up and down and he turns in circles. You just have to ask him to dance and off he goes. We're trying to get him to shake his arms and wiggle his bum, but he likes his own version.
Its easy to remember the major milestones like walking and talking, but its the constant litle things that he learns to do that is really amazing and fun.
Like dancing, like having a go at the hand actions to Itsy Bitsy Spider, blowing kisses ans sticking out his tongue if you ask him where his tongue is. All learned his weekend.
Sunday, February 15, 2009
Monday, February 9, 2009
The old shell game
Last week I added a couple of entries to the folder options that you see when you right click on a folder in Windows on both my work and home computers.
One was for printing folder contents, another was for the command prompt.
I did this through the Control Panel->Folder Options->File Types, the selecting File Folder and hitting the Advanced button.
I am running Windows XP Professional v5.1 in both work and home.
Works a treat, except I found that afterwards on my work pc, everytime I double clicked on a folder in the right hand pane of the windows explorer I got a search box, rather than the folder opening. On my home laptop I got a command prompt box opening up.
It seems that adding these entries to the Folder Options somehow screwed up the registry for shell32.dll, which has among other things the task of keeping track how to open folders and files.
The solution was to re-register the dll. From Start->Run:
regsvr32 /i shell32.dll
That's it.
One was for printing folder contents, another was for the command prompt.
I did this through the Control Panel->Folder Options->File Types, the selecting File Folder and hitting the Advanced button.
I am running Windows XP Professional v5.1 in both work and home.
Works a treat, except I found that afterwards on my work pc, everytime I double clicked on a folder in the right hand pane of the windows explorer I got a search box, rather than the folder opening. On my home laptop I got a command prompt box opening up.
It seems that adding these entries to the Folder Options somehow screwed up the registry for shell32.dll, which has among other things the task of keeping track how to open folders and files.
The solution was to re-register the dll. From Start->Run:
regsvr32 /i shell32.dll
That's it.
Sunday, February 8, 2009
Oh Ruby
This week I attended an excellent four day training course by SpringSource on Core Spring. I've touched on Spring before, so time time ago I decided it was time to book myself on a course and get into it in a bit more detail. The timing was fortuitous since I have been seconded to another team that makes extensive use of use of this interesting technology.
While in North Sydney I took the opportunity to visit an excellent technical bookshop called Bookware. Its cheaper to buy from them any of the city bookstores, cheaper even than getting the books through Amazon and paying their shipping costs.
Its on Arthur St and camouflaged by building site hordings, but it was worth the effort in finding it. Small and overflowing with Business, Marketing but chiefly computing books.
Anyway, I bought a book on Spring Web Flow, but couldn't resist picking up a Pragmatic Programmers book on Ruby, called Agile Web Development with Rails. Cool, been meaning to look at this for ages (in between work, running, guitar, balloons and a baby).
I get the book home and start reading only to discover that there is a new version of Rails out and the book is the the old one, but the latest edition of the book is not available yet, except in pdf format. I don't want to shell out again, so I'll stick with what I've got.
Ok so the book pretty quickly cuts to the chase and in no time I'm downloading Ruby. The book directs you to some one stop shop installer that doesn't seem to have been updated in about 2 years, so I just download Ruby and run hte install, selecting a gem checkbox along the way. Done.
Next to install rails with gem done.
Then Mysql. Ok, some problem with a port and maybe a firwall, will check it out later.
Onto the coding. A Hello World program in Ruby. Cool.
Except now the problems start.
Instead of getting the 'Template is Missing' error the book says is likely I get a message like this:
> MissingSourceFile in SayController#hello
>
> no such file to load -- sqlite3
It turns out that you need a database to run hello world. No mention of that in the tutorial.
Ok so I down load Sqlite3, both the exe and dll zips and place the location on the path.
I then install sqlite 3 using gem. But it seems that the current version of gem or sqlite3 or both has a bug and you have to install sqlite3 version 1.2.3.
I do that (stopping and starting the WEBrick server every time).
Next a Runtime Error - can't find sqlite3.dll.
Come on. Its there. Its on the path.
Its late, I can't be bothered fighting the machine, so I reboot, restart and get 'Hello from Rails!' in my browser.
That's the longest its ever taken me to get Hello World up and running.
Browsing the various forums indicates that I'm far from being the only one.
The premise of Ruby on Rails is that it is simple to build web sites. The inference is that you don't have to be an uber nerd to learn this language and framework. The Pragmatic Programmer's books are always easy to read and motivational. I know that the book is targeted at an older version of rails, but still, it didn't help. Hopefully the rest will be a bit smoother and of course, solving these problems will enhance my understanding.
Or drive me mad and cause me to abandon this little project.
Pressing on...
While in North Sydney I took the opportunity to visit an excellent technical bookshop called Bookware. Its cheaper to buy from them any of the city bookstores, cheaper even than getting the books through Amazon and paying their shipping costs.
Its on Arthur St and camouflaged by building site hordings, but it was worth the effort in finding it. Small and overflowing with Business, Marketing but chiefly computing books.
Anyway, I bought a book on Spring Web Flow, but couldn't resist picking up a Pragmatic Programmers book on Ruby, called Agile Web Development with Rails. Cool, been meaning to look at this for ages (in between work, running, guitar, balloons and a baby).
I get the book home and start reading only to discover that there is a new version of Rails out and the book is the the old one, but the latest edition of the book is not available yet, except in pdf format. I don't want to shell out again, so I'll stick with what I've got.
Ok so the book pretty quickly cuts to the chase and in no time I'm downloading Ruby. The book directs you to some one stop shop installer that doesn't seem to have been updated in about 2 years, so I just download Ruby and run hte install, selecting a gem checkbox along the way. Done.
Next to install rails with gem done.
Then Mysql. Ok, some problem with a port and maybe a firwall, will check it out later.
Onto the coding. A Hello World program in Ruby. Cool.
Except now the problems start.
Instead of getting the 'Template is Missing' error the book says is likely I get a message like this:
> MissingSourceFile in SayController#hello
>
> no such file to load -- sqlite3
It turns out that you need a database to run hello world. No mention of that in the tutorial.
Ok so I down load Sqlite3, both the exe and dll zips and place the location on the path.
I then install sqlite 3 using gem. But it seems that the current version of gem or sqlite3 or both has a bug and you have to install sqlite3 version 1.2.3.
I do that (stopping and starting the WEBrick server every time).
Next a Runtime Error - can't find sqlite3.dll.
Come on. Its there. Its on the path.
Its late, I can't be bothered fighting the machine, so I reboot, restart and get 'Hello from Rails!' in my browser.
That's the longest its ever taken me to get Hello World up and running.
Browsing the various forums indicates that I'm far from being the only one.
The premise of Ruby on Rails is that it is simple to build web sites. The inference is that you don't have to be an uber nerd to learn this language and framework. The Pragmatic Programmer's books are always easy to read and motivational. I know that the book is targeted at an older version of rails, but still, it didn't help. Hopefully the rest will be a bit smoother and of course, solving these problems will enhance my understanding.
Or drive me mad and cause me to abandon this little project.
Pressing on...
Friday, November 21, 2008
First steps
Cillian took his first steps today.
We missed the very first ones, in childcare with Rebecca. He he repeated his efforts tonight, delightedly tottering two or three steps back and forth between Mum and Dad.
We missed the very first ones, in childcare with Rebecca. He he repeated his efforts tonight, delightedly tottering two or three steps back and forth between Mum and Dad.
Friday, October 10, 2008
Cillian is 1
Cillian has turned one.
Its hard to believe that a year has passed. In some ways it seems so long ago since he was born and so much has happened. In others ways it seems like hardly any time at all.
He remains a very happy baby, chatty and full of life and always keen to play.
He has 7 teeth now and more coming.
He is not walking unaided yet, but will walk pushing a little cart.
He likes to play the xylophone quite vigorously.
Its hard to believe that a year has passed. In some ways it seems so long ago since he was born and so much has happened. In others ways it seems like hardly any time at all.
He remains a very happy baby, chatty and full of life and always keen to play.
He has 7 teeth now and more coming.
He is not walking unaided yet, but will walk pushing a little cart.
He likes to play the xylophone quite vigorously.
Sunday, August 31, 2008

I didn't didn't have quick feet today, so I ran the Heritage trail cautiously , along paths of mud and water, trails of tree roots, down steep steps cut into sandstone and up slick wooden stairs.
To my left was the harbour, grey water under a grey sky and the city shrouded in cloud. I had the trail to myself, except for an old Italian man who cheerfully greet me and I him. Fronds of banksia and fingers of wattle brushed rain onto my arms and face.
There was not a soul on tiny Tingara beach, where I saw a mermaid once, thirty quick paces took me across the soft golden sand and away from the harbour panorama.
It took me nearly an hour to reach Neilson Park from my home, but though the pace was slow I no longer felt tired and I continued happily on through the back streets of Vaucluse to Parsely Bay then towards Watson's Bay. I wished the few walkers and runners that were out and about a good morning and and they responded likewise; its nice that people can still connect in a big city.
At Camp Cove some scuba divers were kitting up. One woman, suited and masked turned and stared at me as though I were a creature from the depths of the sea, an alien in her world.
On the South Head loop I passed an old 19th century muzzle loading cannon and numerous fortifications from the era. Across from me on the other side of the harbour, not far as the gull flies, was an expanse of harbourside parkland, hiding the zoo and countless homes. A ferry headed towards Manly.
I ran past the lightkeepers cottage and the candy striped Hornby lighthouse, saw past the Heads to the Tasman Sea.
I wondered if Sharon and Cillian were up yet and thought how nice it would be for them to see this.
I though of runs with friends, whose company made even the hardes training sessions a pleasure.
At the Gap sulpher crested cockatoos perched on the cliff edge, their lemon tufts standing out against the dark rocks. Brighter still the yellow oilskins of two fishermen standing on a rock ledge. An orange float I saw in the waters far below.
Bondi was quiet; the surfers were enjoying a Sunday morning of decent waves after weeks of heavy mush.
I had been running for 2.5 hours so decided that Bronte was too far and ran the long climb of Bondi Road, through sterile Bondi Junction, where it was still too early for the shoppers. The last few ks home were downhill and that suited me just fine.
The last day of winter and the thirteenth anniversary of my arrival in Sydney and I ran and was happy.
Life
Cillian grows. His world is expanding, physically and intellectually and it is fun to be there seeing it all.
He was so excited yesterday when he noticed the new coffee table, it was as if Santa had come. He loves to stand and there is nothing really in our house that will let him pull himself up, so he spent much of yesterday standing at the table and banging bricks off it.
He is quite mobile now, a speedy enough crawler, but walking is a while off yet, though he is game enough to let go of the table and put his hands out to me.
He was so excited yesterday when he noticed the new coffee table, it was as if Santa had come. He loves to stand and there is nothing really in our house that will let him pull himself up, so he spent much of yesterday standing at the table and banging bricks off it.
He is quite mobile now, a speedy enough crawler, but walking is a while off yet, though he is game enough to let go of the table and put his hands out to me.
Subscribe to:
Posts (Atom)