
Mary sat up all by her self from laying completely flat and then proceeded to tip the crib over - off course I had things set up so that the only place for her to fall was straight out onto the bed. But this ment Saturday saw an exhorsted Daddy, Mummy and Ferfer trying to put the cot up after a day at Cattle Country with the School!
Also due to floods and evacuating Jean and what have you we had basically nothing other than a bumper for the cot and when I checked on her Saturday night she had wriggled down and pushed her leg out of the slats at the end onto Jeany's bed. So today saw fun and games in Mother Care but more on that adventure later!
The Inmate looks very happy and we now have a lovely set of bed lining for the cot including another bumper and it is all textured aplique and Mary loves fabrics and feeling different textures so it is perfect.

Jean got her a musical flower garden for the side of the cot - something she can press buttons on and the flowers move and lights flash and it plays tunes Mary already knows so she does her little bobbing dance to them 🙂

It was however a strange thing - Jean moved out of our room at 6 months, Mary is moving at 8 and it's somehow didn't have the urgency it did when we had Jean - maybe it was just I wasn't used to sharing the bedroom with a child where as Jean still regually comes and climbs into the bed with us in the mornings.

Jean is happy as she cried when me and Mary moved out of her room and was grumpy we had her sister and she wasn't sharing a room with her like I promised!
As of last night Mary has a tooth 🙂
Tomorrow Saturday 24th September 2011 sees the Exhibition in Braille a touchy feely art attraction set up by Centre Arts to raise money for the Gloucester County Association for the Blind. Tickets cost £5 and are avaliable at the doors which are open 12-7pm.
There are some really cool things there for you to touch and feel and an interactive braille table to boot!
Here are a few sneak peaks but you can not know the majesty of these pieces without actually going and feeling them!

The exhibition has been put together with the blind and visually impaired in mind and as such bright vibrant and therefore easier to see colours have been used in some of the pieces and there is also a bueatiful light sculpture.

Then we come to my piece - the giant coral I have been working on for what seems like forever!

Which I set up last night 🙂 Complete with beads for the molecular sand! There are also MP3s of some of my poems that I felt where a good counter point to the visual/textural piece there to listen too 🙂
Wednesday Jean made her promise at the picnic tree in Cranham Woods and became a Beaver Scout - this is something she has been going on and on about ever since she was 3 yrs old!

She did very well and the District Commissioner already knew who she was because she had been so 'helpful' during the rest of the meet!
The DC also had Alaric's camp permit and Scouts came up with a plan of an off road mobility scooter so I can come back and be Skip :/
In The Lord of the Flies, the children (marooned on an island and working out how to organise themselves to survive) develop a technique for managing debate: they use a conch shell as a token to represent who currently holds the floor. Without the conch, you can't talk; you have to wait your turn.
Cut to the Real World of Commerce and Industry: in various places I've worked, there's been a number of shared resources which can only be used by one person or agent at a time. Mainly, these have been testing servers - if you are doing performance analyses, or looking for timing-related bugs, you can't have anyone else running jobs on the same server as you, or they'll compete for resources and interfere with your results. Or perhaps there's only one "data area" of some kind, and two attempts to use it at once will lead to catastrophe.
This is usually handed by asking around the office or in IRC: "Is anyone using X?", hoping that anybody who is is still around (as opposed to too busy doing something to notice the request, or leaving a job going while out to lunch). Because of the unreliability of this system, and the inability to integrate it with automatic systems that need to claim resources (such as automatic test systems), I have often wished for a software tool to manage it. Which would, naturally, be called "conch".
Here's my feature wishlist:
Network-based. A central conch server tracks a set of conches, accessed via a Web interface or a direct protocol. The direct protocol should have a command-line client for scripting, and be trivial to write native client libraries for in programming languages.
Authenticated. No need for super security, but we want to keep out casual mischief-makers, so require authentication to use the server; to enable easy integration with other workflow apps, support htaccess files, "trust the upstream proxy" (eg, accept HTTP auth usernames and ignore any passwords sent), or running an arbitrary shell command to validate a username/password pair. It might be used across the public Internet, so allow for SSL wrapping the connection. The command line client should, by default, use the username and password from ~/.conch or prompt for them (and save them in ~/.conch) if not specified.
The ability to create or delete resources, to claim a currently-free resource, to release a resource you hold, or to "force" the release of a resource that somebody else holds (if they forget and go home, etc).
The ability to list the status of a resource, to list the resources held by a specific user, to list the resources held by yourself, to list all users with resources held, and to list all resources.
Fine-grained access control (per-user rights limitation) might be handy, but probably not useful for the first draft.
An IRC bot might be cool - at least for logging resource claims/releases and commands to list current state; maybe for resource claims/releases as well, if users are either trusted by nick or authenticate via a private message.
If this doesn't already exist, it should be easy to build (something could be knocked up with awful and sql-de-lite in a day or two, I bet!)...