Today I MUST work on my presentation for Sunday. It is mostly done, but I need to read through it to make sure I know what it actually says – after all I have not even looked at it since September, so if I want to do a good job I had better at least look at it. The one thing I will not be doing is removing my glasses during the talk. A friend suggested that if I felt nervous that I should remove my glasses and then I would not have to deal with all the people.

Only two things with this. Firstly, I do not tend to get nervous when I talk to groups. I have given lectures to 2-300 people with no problem. The other issue is that I cannot see without my glasses, and would not be able to see the screen which would be an issue, since I use the screen as notes. So I will probably not be doing that… Still, I will keep it in mind if I ever do get nervous…

One of my clients from Canada reported an issue this morning (and no, that is not why I am up so darn early… I just woke up just after 5AM for some reason and could not get back to sleep). After some debugging I found the following code which was meant to only run DoSomething once at a time…
If intick = False Then
intick = True
DoSomething
End If
intick = False

WHat it was doing was running DoSomething every 2nd time the code tried to run. The InTick=false should have been inside the If/Then… Quick Fix once found.