Category: The Family

What An Amazing Week! (by )

Friday I went off to Not The Oxford Literature Festival were I read out stuff from an upcoming collection called Political Converse including the song Shit Creek.

I gave out my new business cards which I am very happy with from Moo. Each card has a different picture on either of my art work, photos I've taken or me being arty. I have rationed them to one per person as some people want to collect the pictures 🙂

I came home on Friday feeling great especially as I'd worked out the old guy at the festival was infact the guy who's stories I'd been obsessed with as a child!

He's called Dennis Hamley for those of you who are interested 🙂

Then I checked my emails and.... I've won a Bronze Medal in the Gloucestershire Creative Olympics! For my song Windy Gloucestershire. So I am going to to an awards thing at Battle of the Winds in Stroud at the end of the month!

Then Sunday I went off to Art Tournaments No Hoax where I read out more of my Political Converse including another song 🙂 This was all whilst wearing my flashing corset!

Sound quality is naff and I am competing with the band in the other room! But you get the idea 🙂

I enjoyed watching the other acts and knitting whilst Alaric crotcheted - this was then topped off by winning a place in the finals for the Gloucestershire Poet Laureate! Which will take place at Gloucester Cathedral in August 🙂

So with all this I thought I should start working on my web home/hub, somewhere were all the bits of me are collected - I'm still working on it but here it is 🙂

Then I got an email saying I had made the long list for Flash Fiction South West.

I then made a cake with Alaric and Jean for Al's birthday - it didn't quiet work but tasted brilliant!

I feel I am on a roll at the moment and that I may even have reached the 'tipping point' with getting my work out there etc...

The only iffy thing has been that my SponsorMe account will be closed if I don't get some sponsors soon! People keep saying they will sponsor me but haven't yet - so if you're going to do it now please otherwise it will be too late!

Help me bring science art to all 🙂

I Spy… (by )

Last night we went for a walk with the kids, we were playing eye spy - as any parent will know eye spy with kids is always interesting 🙂

We spent ages trying to guess what began with H and falls off of trees and is a seed with spiky bits (we allow glues if you get stuck in eye spy). The answer was of course Haycorns!

Of course - silly mummy and daddy - Jean has had the whole collection of pooh and piglet and all the other random poems read to her several times.

As it is she thought they weren't acorns and they weren't pine cones but those little almost pine cone things you get on some succulent looking spikey trees we see growing in various places.

She showed us one - and yes it does look like a cross between a pine cone and an acorn 🙂 Felt a bit sad to have to tell her they weren't haycorns and that it is just piglet can't say acorn as he's too little.

The game then progressed and Jean began introducing things like 'I spy with my little eye something beginning with COT' the answer to which was Cut Of Twigs. There was also SWNCII - Sky With No Cloud In It.

She then began to get more and more abstract so we changed the game to 20 questions. But Jean tended to just repeatedly ask if the answer was Horace her House Dragon (a series of stories I've written for her).

When me and Alaric got distracted she announced 'You Guys! Come On Focus, we are trying to play a game here'.

So we then ended up playing word association which was lots of fun though had a tendency to end up in loops of characters from various stories or films - namely Mysterious Cities of Gold and Harry Potter.

It was a fun outing though we did have to keep telling Jean she couldn't whack the bushes with her stick as they were peoples fences but then we found a lovely set of park and tree lined lanes to walk through right near our new house!

A Walker! (by )

Mary has finally walked on her own 🙂 She has been able to walk for ages but just wouldn't - she always had to hold a finger or use the pink truck walker thing my friend gave us.

Of course she is now walking into things and has bruises on her head :/ She has also learnt a new word 'Uhoh!' which she says just as she is about to loose balance and land on her bum!

Server upgrade (by )

I host a heap of web sites (including this blog), email domains, source control repositories, mailing lists, and various other things (such as one of the official Chicken Scheme egg mirrors, a Jabber server, and an IRC server with bots). I do this with a combination of dedicated server hardware which I hire space, power, and connectivity for in London for the primary stuff, and a virtual private server in California for backup services and rapid DNS lookups from the USA.

This is a costly hobby, but it gives us a platform upon which to do interesting things, and lets me help other people out with free hosting; as I need to put in the time and money to run the infrastructure anyway, the spare capacity on it is essentially free.

The most demanding part is server upgrades. Periodically, I buy a new physical server, install it with all the software it will need, put it alongside the current hardware in the data centre, and transfer the data and settings across and configure everything that needs configuring on the new server until it works just like the old, then switch them over. I do this when the current hardware is getting full or overloaded or unreliable or just plain out of date, as I don't trust in-place updates of the core system software - it's too easy to end up with NOTHING working.

However, this has been overdue for several years. I bought the new hardware (this time, with a contribution from my biggest user of disk space!) nearly two years ago, and installed it in the rack nearly a year ago, but only yesterday did I get the chance to spend a day sitting next to it in London coaxing it into readiness then doing the final switch over...

It didn't go entirely to plan, of course. I'd previously written a script that used rsync to copy all the user data over; the first time I ran it it copied everything, then subsequent runs only had to copy the differences. The idea was that I would have less down time while I copied the data from the old server to the new (which has to happen with both servers offline, so that nothing can change during the copying process) if there was only the final changes to copy. However, I realised that the accounts of my biggest user of disk space weren't covered by my script as they had been slightly hacked to accomodate their growth.

And the whole process of moving the software configuration was made more complex by the fact that I had previously been running two servers in a kind of symbiotic cluster, in order to meet the load with the hardware of the time. Nowadays 64-bit multi-core behemoths with gigabytes of RAM are cheaply available and well supported by NetBSD, so everything can be done on one box. This is a much simpler setup, but it means that I had to undo the complexity of the previous setup when transferring everything across!

I ran into a few other unexpected problems, too; I noticed that the clock on the new server was terribly wrong, despite it running NTP. I did a manual ntpdate, and then just in case, another to check that it was now only a few millisecond out - but it was already half a second out again! It quickly became apparent that the clock was ticking about one second in every two seconds of real time...

Looking in the output of sysctl -a, it became apparent that I had a choice of time counter sources: it was using the TSC, but I also had an HPET, a clock interrupt, an APIC clock, and the good old 8254; my machine was brimming with alternate clocks. I tried switching to the HPET with sysctl -w kern.timecounter.hardware=hpet0 and suddenly time was running as expected. I popped that in /etc/sysctl.conf so it would come back on reboots, resynched the clocks, and everything's been fine since. I can only presume that the kernel was reading the CPU clock speed wrong, or some kind of dynamic clock scaling is happening, so that the (CPU-based) TSC wasn't having its ticks converted to seconds properly.

I had a big setback with the email setup, as NetBSD comes with Postfix as part of the base system but I wanted a more recent version from packages, but I ended up getting tangled with what version was being run in various situations and what configuration file was being used, which took a while to sort out. And then of course there's Mailman, the mailing list server software, which is complicated by needing write access to its filesystem-based state when run from the mail system (for incoming mail) or the Web server (for the web interface), so uses lots of setgid binaries and group-writable files and the like, and so always takes a lot of fiddling to get working properly.

But... I did it. And so, having completed my tax returns earlier this year (which is what freed up the time to prepare for and do this mission), I have now gotten rid of all the major obligations that have been hanging over me for the past few years.

I still need to visit London again - I've left the old servers running alongside the new in case I missed any files that need to be transferred; I'll give people a chance to check I've not missed any of their stuff before remotely powering them down (to save electricity, which I pay for) and coming in to take them (to free up the space). But that's relatively easy!

The End of NSEW (by )

So we have reached the end of National Science and Engineering Week - I have had fun following things on twitter and the like - but also seriously talking to gallery owners about putting on a Science Art Exhibition for next year.

I would also like to see more local event - I could find nothing in my area - maybe I was looking in the wrong places. We were going to go down to London to join in some stuff there but due to car braking down Alaric couldn't take me and the girls with him to London (he had to go in anyway on the train to replace our servers!).

Another thing is that I hadn't realised how many science poems I have! There are all the ones from this years World Poetry Writing Month challenge for a start - I'd focused on science and nature poetry written from New Scientist and National Geographic prompts.

So next year I plan to release the full Ballads of the Scientifica - book, CD and science art post cards.

Tomorrow will be the last day to get your free down load of what is already there.

WordPress Themes

Creative Commons Attribution-NonCommercial-ShareAlike 2.0 UK: England & Wales
Creative Commons Attribution-NonCommercial-ShareAlike 2.0 UK: England & Wales