drohm, Thu 10/15/09 07:34 AM

While searching for a potential docking station for my new iPhone, I came across this DIY Paper Dock that, well, is simply awesome!

diy_paperdock

Be sure to check out the link as there is also an instructional video.  I think I’m going to go with this one :)

I've been using StartCom for my personal email certificates and also for my domain for SSL for over 2 years now.  They offer a great service, excellent customer service, and very fast turn-around on identity verification during your account setup.  I just read via twitter from @dm_the_company that Microsoft added StartCom to their list of trusted root certificate authorities.  Windows 7 will come out-of-the-box with StartCom as a root CA and Microsoft also has an optional patch available for XP and Vista that can be installed to add the StartCom certificates to those operating systems, which allows those certificates to be recognized by the OS without any extra work done by the user.  Very good news.  I recommend you give them a look if you're in the market for getting a certificate for your domain or personal email.  Also, their Class 1 certificates are free and for minimal cost you can upgrade to Class 2 or 3 validation depending on your needs.

Steve Dunn recently released a new version of his Windows Live Writer plugin that allows you to insert code into your blog posts that properly formats and highlights everything.  It’s customizable and easy to use with a plethora of options.  This is by far the best code formatter for Live Writer out there.  And best of all, its FREE!  Here are a few samples of the different formats you can use:

Highlighted code:

        /// <summary>
        /// Retrieves all articles.
        /// </summary>
        public override List<ArticleDetails> GetArticles(int pageIndex, int pageSize)
        {
            List<ArticleDetails> articles = new List<ArticleDetails>();
            using (SqlConnection cn = new SqlConnection(this.ConnectionString))

 

Formatted code:

        /// <summary>
        /// Retrieves all articles.
        /// </summary>
        public override List<ArticleDetails> GetArticles(int pageIndex, int pageSize)
        {
            List<ArticleDetails> articles = new List<ArticleDetails>();
            using (SqlConnection cn = new SqlConnection(this.ConnectionString))

 

Code as bitmap:

 

This is a great tool – you can download the plugin here.  Enjoy!

Recently I was having a heck of a time figuring out why I couldn't connect to my work machine through VPN to the console.  I could in the past, but for some reason could not anymore.  I tried a variety of settings, both on my home machine and my work machine to no avail.  Finally, after searching the web, I found that if you have Windows XP SP3 installed, the /console command doesn't work anymore.  After I read that I realized that I did indeed update my home machine (its a Virtual PC) to SP3.  With SP3 you must use /admin instead of /console.  I guess I'm not mad about the change, but what really annoys me is that the new command has no compatibility with the old command.  It simply leaves you dead in the water.  They just removed the /console parameter and removed it from the documentation also.  So the command I use now is:

mstsc /v:machinename /admin /f

I hope this saves someone the frustration I had until I found out the new paramter name.