Jump to Content
Jump to Navigation

Archive for “August, 2008”

Cool Link: Traverse Area Historical Society

Friday, August 15th, 2008

I was browsing the Leelanau Enterprise online and saw this headline, Thousands of historical photos posted. Of course, I'm going to click an article with a title like that.
You must visit the Traverse Area Historical Society website and check this out. I did some searches for various places (Suttons Bay for example) and found some [...]


New Family Photo Gallery

Monday, August 11th, 2008

Sometime tonight I will finally be adding some new photos to the website. It's been a long time coming as I recently realized that it's been almost 2 years since I consistently updated photos. To access the new photos click the New Family Photo Gallery button on the right. I'll be using Google's Picasa program [...]


Late Night Reading: The Devil Knows Latin

Sunday, August 10th, 2008

Late Night Reading follows the books I read "late at night" since it's really the only time I have a chance to sit down and read! It will be referred to as "LNR" in future postings.
I borrowed this book from one of my friends and had a hard-time putting it down. The Devil Knows Latin: [...]


Just testing a plugin…

Tuesday, August 5th, 2008

I found this great plugin Code Markup that allows for easy posting of code examples. So here's an example of ASP code to show a different greeting depending on the time of day.
<%
Dim dHour
dHour = Hour(Now)
If dHour < 12 Then
Response.Write "Good morning"
ElseIf dHour < 17 Then
Response.Write "Good afternoon"
Else
Response.Write "Good evening"
End If
%>