Recent pictures of my girls

Anna is 3 today. Big girl! Here are some semi-recent pics of the two girls.

Starred Photos

Post to Twitter Tweet This Post

Ruby on Rails vs. Java video (Hi I’m Ruby)

A takeoff of the Mac v. Windows commercials for Apple. Funny stuff guys…

[youtube=http://www.youtube.com/watch?v=PQbuyKUaKFo]

Post to Twitter Tweet This Post

Debate on Responsibility in Radio

Debbie Wolf, co-founder of People Against Censorship, appears on The Glenn Beck Program to discuss the state of censorship in radio.

Post to Twitter Tweet This Post

Halo Theme performed by Corporeal

Video courtesy of FoundryMusic.

Post to Twitter Tweet This Post

Code snippet to convert JobID from MS Fax API

Here’s a quick little code snippet which will convert a job ID into the correct format when you’re using the MS faxcomexlib.dll. This is needed because you’ll get different formats back from a ConnectedSubmit depending on whether your application is running on Windows XP or Windows 2003 Server. However, the format does not vary when you get status change events.

        private string ConvertJobID(string jobID)       {           string hexJobId = string.Empty;

           try           {               Int64 i = Convert.ToInt64(jobID);               //Match event handler format:                //        hex number; lowercase;                //        no leading zeroes;                //        no "0x" or other prefix                hexJobId = i.ToString("x");           }           catch // If there's an exception,                  // then the Job ID is already correct            {               hexJobId = jobID;           }

           return hexJobId;       }
 

Technorati tags: , , ,

Post to Twitter Tweet This Post

About Me

I am a Philadelphia-area .NET developer, Microsoft MVP, husband, dad, and geek. I am currently a software engineer at Eclipsys Corporation. I have over 15 years of software development experience in the Healthcare and Manufacturing industries.

More...

Categories

Archives

Web Analytics