Blood Oxygen...
Ewan's been a bit under the weather the last couple of days and been getting quite upset when his ear flares up when the 'medicine kicks out'. His rather logical description of the opposite of the medicine kicking in. In one of his worse spates this afternoon, we decided to NHS24 him and get him an appointment. Better now and get him on the road to recovery than repeating Christmas 2007
He was brilliant. He answered all the questions the nurse asked him, let her look in his ears and mouth and even let her give him his first dose of antibiotics. He asked if it was the banana one as that's his favourite.
In other more geeky news, someone slightly dropped the gauntlet on trying to write the 12 Days of Christmas in Java code. I'm a bit sketchy on Java code but I went for it in Visual Basic...
[c]
PRIVATE SUB TwelveDaysOfChristmas()
FOR DayOfChristmas=1 TO 12
DEBUG.PRINT "On the " & DayOfChristmas & " day of Christmas my true love gave to me..."
FOR GiftLoop=DayOfChristmas TO 1 STEP -1
CALL MyTrueLoveGaveToME(GiftLoop)
NEXT GiftLoop
NEXT DayOfChristmas
END SUB
SUB MyTrueLoveGaveToMe
SELECT CASE(GiftLoop)
CASE=1
DEBUG.PRINT "A partridge in a Pear Tree."
CASE=2
DEBUG.PRINT="2 Turtle Doves."
Case=3
DEBUG.PRINT="3 French Hens."
CASE=4
DEBUG.PRINT="4 Calling Birds."
CASE=5
DEBUG.PRINT="5 Golden Rings."
CASE=6
DEBUG.PRINT="6 Geese a Laying."
CASE=7
DEBUG.PRINT="7 Swans a Swimming."
CASE=8
DEBUG.PRINT="8 Maids a Milking."
CASE=9
DEBUG.PRINT="9 Ladies Dancing."
CASE=10
DEBUG.PRINT="10 Lords a Leaping."
CASE=11
DEBUG.PRINT="11 Pipers Piping."
CASE=12
DEBUG.PRINT="12 Drummers Drumming."
END SELECT
END SUB
[/c]
Comments
Sign in or get an account to comment.