This is where Jason puts his stuff of personal interest.

24Feb Just Finished

Yesterday was a good day for finishing things. In reverse order I finished: A book : Luther the Reformer: The Story of the Man and His Career. – Great book, very well written and a great take on such a great man. Only one other man has had more books written about him than Martin [...]

22Feb Finals are here.. How do I study?

I am about to finish my MBA. Tomorrow I go in to defend my thesis and I admit I am a little nervous. I am giving a final today to my CIS410 class, and I realize many of them are rather nervous. I was thinking about the many classes I have taken over the years [...]

22Feb The Life of Pi…. (the last book I have read)

Well I wouldnt think of myself as someone who would read a book like this and I would have missed out. This was an interesting story that had me going from the start. Although it reminded me of other stories like “the time machine” or “journey to the center of the earth” it was a [...]

16Feb Need to create thumbnails when uploading Images?

I had the need to upload images to my blog as well as create a thumbnail based on the image. I had the code written at www.jasncab.com, but it was in an EXE. So I was left with converting it just a little. First the code to upload the image: The only real line here [...]

13Feb Maybe this time is the time.

Jason had decided on friday to stay at his current job rather than take another opportunity. Today we took a test and well… see for yourself:

06Feb Sending Email from your blog

I wanted to be able to send email from my blog when visitors placed comments on an entry. To do this I used the following code: Private Sub SendEmail() ‘from: http://www.4guysfromrolla.com/webtech/080801-1.shtml ‘Create an instance of the MailMessage class Dim objMM As New System.web.Mail.MailMessage ‘Set the properties objMM.To = “email@domain.com” objMM.From = “email@domain.com” ‘Send the email [...]