George V. Reilly's Technical Blog
-
Using WinDbg to debug managed code
I consider myself to be an expert WinDbg user, when it comes to debugging unmanaged x86 code. I haven't used WinDbg much on managed code, and when I did, I found it quite painful.
-
How to be a Good Developer or User
18 Ways to be a Good Developer, inspired by 20 Ways to be a Good User.
-
Compiling Vim with Visual C++ 2003 Toolkit
I've been trying to make Vim 7 compile with the Microsoft Visual C++ 2003 Toolkit, as a favor to Bram Moolenaar, the primary author of Vim. He wants to be able to use the free compiler as the primary build tool for the Win32 version of Vim.
-
Changing the Console Font
I re-read Scott Hanselman's blog post on using Consolas as the Windows Console Font, and I decided to put together a registry file to make it a little simpler. (You'll have to rename the file to
console-font.reg
after downloading.) -
16-digit credit card numbers
-
Skype and SSL
A year ago, I ran into a problem with Skype squatting on port 80, which I had long forgotten about. Today, I ran into one with Skype squatting on port 443.
-
A picture is worth a thousand words
See what Thunderbird 1.5 RC 1's spelling checker flags as misspelled words.
-
%TIME% stamping
I'm a command-line dinosaur. Vim (Vi IMproved) is my favorite text editor. And I write quite a few little batch files.
-
XML Scripts -- for the theatre
For the last three years, I've been involved with The Wild Geese Players of Seattle, an amateur group that does readings of Irish literature, particularly the works of James Joyce and W.B. Yeats. Our big event every year is Bloomsday, June 16th, commemorating Joyce's Ulysses, which takes place on June 16th, 1904. It's a tale of a Jewish everyman, Leopold Bloom, wandering through Dublin one day, and of the young writer (and Joyce's alter ego), Stephen Dedalus. We're working our way through the book, reading a chapter or two each year. In this, our eighth year, we'll be reading Chapter 11, "Sirens" at the Brechemin Auditorium in the School of Music at the University of Washington, on Thursday 16th and Saturday 18th. Congressman Jim McDermott will be reading the part of Bloom on the Saturday.
-
Printf tricks
It may be old-fashioned, but I still find
printf
(andsprintf
and_vsnprintf
) incredibly useful, both for printing debug output and for generating formatted strings.