Nothing but bananas – FAIL
Well, screw that. I was already feeling under the weather and I started feeling even worse. I think I’ll have to revisit this concept when I fight off whatever bug’s trying to do me in.
Nothing but bananas
I am going to eat nothing but bananas for the next week to see how I feel. I want to detox and stay nourished, without a lot of complexity and fuss. At the end of the week I might add other foods to help balance out my nutritional intake, like rice and nuts.
Here’s hoping this post isn’t one of those flippant final comments from a moribund old geezer.
VBScript to open calendar from Outlook
I use this so I can click a shortcut and go directly to my Outlook calendar. Save it as “opencalendar.vbs” or whatever you want.
Dim olApp, olNs, olFolder, olWindow
'
' Get Outlook instance, or create one
Set olApp = WScript.CreateObject("Outlook.Application")
'
' Logon, if needed
Set olNs = olApp.GetNamespace("MAPI")
olNs.Logon
'
' Go to default calendar folder
Set olFolder = olNs.GetDefaultFolder(9) ' 9 = olDefaultCalendar
Set olApp.ActiveExplorer.CurrentFolder = olFolder
'
' Bring window to front
Set olWindow = olApp.ActiveExplorer
olWindow.Activate
'
' Clean up
Set olFolder = Nothing
Set olWindow = Nothing
Set olNs = Nothing
Set olApp = Nothing
