spout

August 12, 2005 spout

Chris does the Half Monty

August 12, 2005 spout

The Half Monty

The Half Monty

I spent last weekend in Reno with Joel, my fraternity brother, wife’s sister’s husband and business partner (we have an investing business). We’d both been working killer hours lately and we needed a break, so we spent three days on a dirty boy’s weekend” (as another friend called it). We gambled and drank and ate and slept in and took in a showing of The Dukes of Hazzard and, one night, we went to a comedy club. The main act was a fabulous comedian that took his craft very seriously. In fact, he was so committed to what he did, that he went to all the trouble to have his hair cut so that it looked short with it tucked into his hat, even though it was really very long, just so he could whip it out in his act for comedic effect. During his act, he juggled a chainsaw, did an amazing card trick, road a unicycle, played music on the MP3 player he’d plugged into his mic, brought folks up on stage and had us all laughing the entire time. He had this way of bringing folks up on stage where he’d point at a person, ask them their name (e.g. Bob”) and then say, Folks, give Bob a hand as he comes up to help me out with this next bit.” He was a true entertainer.

After he’d had us busting a gut for about an hour, he pointed to me and said, What’s your name?” I answered him and he said, Folks, give Chris a hand as he comes up to help me out with this next bit” and up on stage I went. Now, from a distance, I look fairly normal sized, especially sitting down. Our comedian was a tad on the short size, frankly, so when I walked up on stage, I towered over him and his eyes got real big. Of course, I’m shy on stage, so I didn’t say much, but nodded and played along good-naturedly. I mean, hell, I’d once led an audience into a public pie lynching of a suited marketing person, so I knew the drill.

He looked at me and said, Chris, I want you to follow along with me. Do what I do. If you don’t do what I do, it won’t be funny. The funnier it is, the more likely you are to get laid.” Of course, I was in Reno w/o my wife, so unless Joel got frisky, I wasn’t going to get laid, but that didn’t mean I wasn’t enthusiastic about increasing my chances (and, of course, the audience was egging me on), so I nodded my head earnestly that I would do my best to follow along. He gave me a floppy cabby hat and put a top hat on his own head — I followed along. He did a little bit of spirit fingers” and I followed. He did some hip gyrations; I followed. Of course, the audience was loving this and I love it when the audience is having a good time, so I’m having a good time.

Then he started the music: You Can Leave Your Hat On,” by Tom Jones, made famous in strip routines the world over and most especially in the excellent movie: The Fully Monty.

I can see where this is going.

So can the audience.

Now I’m trying to remember what underwear I’m wearing.

Our comedian starts into his routine, doing flips and tricks with his hat that I try to keep up with, but it’s hard enough to balance a stiff top hat on your head, let alone a floppy cabby hat so, while I make the best of it, I’m only funny because I can’t do what this guy is doing. The best bit, of course, is when he holds his hat over his crotch, I follow, he gyrates, I follow, he lets go of his hat, I follow, his hat stays up and mine… does not (obviously he’s more likely to get laid at this point than I am : ).

After this, he pulls half his belt out and swings it around in a sexy manner; I follow, being as sexy as a giant, overweight geek can be (remember the fat guy from The Full Monty?). He throws his belt over his should and I do the same.

And then the inevitable. The music builds to a fever pitch, he reaches down and pulls off his pull-away pants in one smooth motion, throwing them over his shoulder and the crowd goes wild.

Then he looks at me expectantly and the crowd goes even more wild (especially Joel who’s nearly choking in laughter at this point). I raise my eyebrow to the comedian and he eggs me on. I raise my eyebrow to the audience and they egg me on. I remember that I’m no stranger to public nudity and a crazy audience is even more fun than a quiet photo studio, so I reach for my pants.

Of course, I’m not wearing my tear-away pants, so I’m laboriously unbuttoning and unzipping, following by carefully pulling off my pants over my sandals, which is not an easy thing to do without falling down when you’re 6′5″ and your center of gravity is someone near your left ear. But, I manage it and throw my pants over my shoulder, suddenly reminded of the underwear I chose for my day of revelry:

Now the comedian was nearly choking with laughter, but he said I did a great job and reached out to give me a hug (being careful to keep his hips as far away from mine as I was keeping mine from his), then shoo’d me off the stage. Then, while I’m still struggling to get my pants back on, the house lights go up, the act is over and the comedian is gone. And now, half the audience wants to shake my hand on the way out for showing off my polka dots on stage. It was a good way to start the weekend. : )

July 27, 2005 spout

Limiting/Monitoring my sons’ access to the ’net?

My 11-year old wants to do email and IM and he’s already surfing the web. Does anyone have any recommendations for good software to limit and monitor his internet access? Thanks!

July 16, 2005 spout

My First MsBuild Task

I wrote my first custom msbuild task this morning. I used the the Extend the MSBuild with a New Task topic from the msbuild wiki and it worked well to get me started. I started with the simplest thing that used at least an input property:

// HelloTask.cs
using System;
using Microsoft.Build.Utilities; // reference assembly of same name
using Microsoft.Build.Framework; // ditto

namespace MyFirstTask {
  public class HelloTask : Task {
    string _who;

    [Required]
    public string Who {
      get { return _who; }
      set { _who = value; }
    }

    public override bool Execute() {
      Log.LogMessage(string.Format("hello, {0}!", _who));
      return true;
    }
  }
}

My task implements the msbuild ITask interface by deriving from the Task helper base class, which provides the Log object, among other things. The only thing I have to do is implement the Execute method, which needs to return true on success. To prove that my task is called, I use the Log object to log a message (I could also log an error or a warning). The public Who property is set from the use of the task in an msbuild file. By marking the property with the Required attribute, I ensure that msbuild itself makes sure that a Who is provided.

Once I’ve compiled my task, I can use it directly from a .proj (or .csproj or .vbproj) file:

<!-- fun.proj -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Target Name="HelloTarget">
    <HelloTask Who="Joe" />
  </Target>
  <UsingTask
    TaskName="MyFirstTask.HelloTask"
    AssemblyFile="C:\MyFirstTask\bin\Release\MyFirstTask.dll" />
</Project>

Notice the HelloTask element, which creates an instance of my HelloTask class and sets the Who property. The mapping between the HelloTask and the MyFirstTask.HelloTask class in the MyFirstTask.dll assembly is in the UsingTask element. Running msbuild against fun.proj yields the following output:

C:\taskfun>msbuild fun.proj
Microsoft (R) Build Engine Version 2.0.50215.44
[Microsoft .NET Framework, Version 2.0.50215.44]
Copyright (C) Microsoft Corporation 2005. All rights reserved.

Build started 7/16/2005 7:04:09 PM.
__________________________________________________
Project "C:\taskfun\fun.proj" (default targets):

Target HelloTarget:
hello, Joe!

Build succeeded.
0 Warning(s)
0 Error(s)

Time Elapsed 00:00:00.04

Notice the hello, Joe!” output by the task as its Execute method is called. Notice also that while the task is in its folder, the .proj file can be anywhere, so long as it has a UsingTask that maps appropriately. By convention, the UsingTask elements are kept in .targets files and put into shared folders to be used between multiple project files, e.g. Microsoft.common.targets, etc. Refactoring the UsingTask out of the .proj file and into a .targets file looks like this:

<!-- My.Fun.targets -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <UsingTask
    TaskName="MyFirstTask.HelloTask"
    AssemblyFile="C:\MyFirstTask\bin\Release\MyFirstTask.dll" />
</Project>
<!-- fun.proj -->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Target Name="HelloTarget">
    <HelloTask Who="Joe" />
  </Target>
  <Import Project="c:\My.Fun.targets" />
</Project>

Of course, a real task does far more than this one, but it was hella easy to get started.

July 10, 2005 spout

Enjoying This Moment

Here.

The one where I enjoy the passing of the book writing storm, if only for a moment.

July 10, 2005 spout

Is it creepy that I think this is valid?

I've used this technique to keep people from dumping their work on me. Now I'm creeped out about it...
July 10, 2005 spout

Enjoying This Moment

I’m sitting at my computer on Sunday morning with nothing” to do (I mean, I could always work, but my team is good about taking weekends off). This morning comes after 3.5 months straight of evenings and weekends working on the Avalon book (I’m talking 20+ hours/week on the book on top of the 50-60 hours/week I spent getting up to speed on my new job). The final push was this week, which I took as vacation from work (“you took vacation to work!” my wife likes to say…).

Last night, I produced the 2nd draft of my last 1st draft chapter (which I was happy to trim by 17 pages w/o losing anything useful) and composed comments on a 2nd draft of Ian’s chapter that was in my queue.

This morning, I took care of a reviewer comment that’s been nagging me, sent Ian my feedback and composed a detailed schedule of the rest of my day which consists of:

  • wait for feedback on non-finalized chapters
  • apply feedback and finalize my last two chapters (30-60 minutes)
  • produce 2nd draft of book preface (1-2 hours)
  • review anything Ian sends my way (1-2 hours)
  • (maybe) review 1st draft of chapter from the WinForms 2.0 book (1-2 hours)

Compared to how I have been spending my time lately, that’s an extremely light day.

This book has been particularly difficult to write. Most of my writing has been on insights that I or the other members of the community have discovered in the use of the technology. These kinds of insights come after the technology is shipped and we’ve all had a chance to get to know it. Avalon, on the other hand, has a ways to go before it ships and the developer community is very small. Plus, some parts of Avalon don’t work very well or have changed significantly since I first learned about them. The consequence of this is that most of my writings on Avalon have had to have at least one massive overhaul as I a) learn the best way to think about them and b) update them to actually reflect the latest bits.

The rub is that by the time the book sees the light of day (it should be on the PDC show floor), the Avalon team will likely have shipped another version of the bits, obsolescing what Ian and I have worked like dogs to ship. Of course, we’ll post the errata and we’ll update the book for the Avalon RTM, but still, it hurts that most of you won’t be able to read the book when it’s a perfect match for the bits.

I get to read it, though, and I’ll tell you — right now, the book rocks. : )  And the reason it rocks? Ian and I have worked hard to make sure it does, of course, but it’s mostly been the internal and external reviewers that have done such a great job pointing out where we got it wrong. It’s tough to hear, especially when it means a complete chapter re-write (I just finished one of those last night), but I’m so happy with the results that I’m willing to love them anyway.

Now I’ve raised the bar impossible high, but screw that — I’m enjoying the moment…

June 23, 2005 spout

My Worst Job

Following Rory’s example, my worst job was where I spent two weeks with a friend working for his dad where the best of our two duties was to mow the doll factory’s lawn (we used to fight over who’s turn it was). The worst of the two duties was to sort leather remnants from the manufacture of furniture and car upholstery by color and texture into giant boxes, from which the underpaid immigrant women would construct dolls.

Talk about mind numbing… It drove home just how important it was to have a college degree.

I quit after two weeks because the amount of money I got for labor of that kind was nowhere near the degree of pain and suffering I endured, especially when I could just hang out at home for the summer. My friend, however, didn’t get that choice. Poor bastard…