Category: Uncategorized

  • Hardware Problem on Desktop Fixed

    It’s a long story, so here’s the SuperUser.com posting.

  • Mary Kate watches me work

    Mary Kate watches me work, originally uploaded by thoolihan.

  • Emacs on Windows Over SSH with Putty Tools

    With a little help from StackOverflow, I got emacs over ssh working on windows. This is trivial on mac/linux, but can be a challenge on windows. dired mode works too! To summarize: 1. Download putty installer with all the tools. 2. Put putty install in the path 3. Generate a key with PuttyGen 4. Copy […]

  • ASP.Net Comments

    Here’s a strange one I’ve never run into. I was recently helping a developer figure out why some controls were not binding and showing on the page. I noticed they were using html style comments in their page around some controls instead of .net style comments. This was the problem. Server side code still runs, […]

  • SilverLight and Z-Index

    When implementing a new SilverLight custom control, it was blocking menu popups (html / javascript) on the page. I set the z-index of the div and object tags that contained SilverLight to no avail. After a lot of googling, I found the following solution. Set the Windowless property to true. In the case of manually […]