Archive by Author

Can’t Create a New Team Project

We recently upgraded our Team Foundation Server 2008 servers to TFS 2010 and migrated to new hardware. One of the decisions made by our DBA’s was to move SQL Server Reporting Services and Analysis services onto a separate box from the Application Server. The installation went relatively fine, but several users who [...]

Mercurial (hg) Pull Does Not Show New Changes

Just a quick note. After doing an hg pull, make sure you do an hg update to begin working on the most recent changeset. That’s five minutes I’m never getting back. I am a little terrified that I have been working on Mercurial for over a month now and haven’t run into [...]

Fixing Blog Post Titles in WordPress

One of my many low priority annoyances with this blog is that the theme that I am using places the blog name in front of the post or page title. Not a huge deal, but when these pages get indexed by Google or Bing, the search results show JamesWampler.com and then the actual title [...]

Scratching My Own Itch

Last summer, my wife had a great idea. She wanted to start her own business from home, selling environmentally friendly baby products. She has spent hours and hours looking for products for our twins, and was frustrated that there wasn’t a website out there that offered green options for products she was looking for. BeeGreenBaby.com [...]

Configure Mercurial (hg) to Use a Proxy Server

My laptop is behind our corporate firewall for most of the day, so being able to do an hg push/pull against bitbucket.org fails because it isn’t hitting or proxy server. To setup Mercurial to use a proxy server, edit your hrgc file in the .hg folder of your repository and add this section:

[http_proxy]
host = [...]

Why is my .hgignore not ignoring?

After almost an hour of tweaking my .hgignore file trying to figure out why it was not, in fact, ignoring ANY of the file types and folders I told it to, I discovered that .hgignore should be in the root of the repository, not in the .hg folder. I suppose this makes sense if [...]

My First Week with Mercurial (hg)

I haven’t completely disrupted my programming life in a couple of days now, so I have decided to make the switch from Subversion to Mercurial for my personal source control needs. Don’t worry TFS, you are still my number one choice for partially solving my professional source control needs.

There is nothing really driving my [...]

Adding the NHibernate Schema Files to Visual Studio 2010

Since I can never remember the steps on how to do do this, if you need to add the Schema Definition files (.xsd) from NHibernate to Visual Studio 2010, here are the steps you need to follow:

Download the latest version of NHibernate
Copy nhibernate-configuration.xsd and nhibernate-mappng.xsd to C:\Program Files\Microsoft Visual Studio 10.0\Xml\Schemas\
Restart Visual Studio if it [...]

Broken Network Hyperlinks in Word 2003

I am putting together a Word document of all the software that needs to be installed on our new developer machines. I included hyperlinks to the setup files or the folders on our network so people could just click through each item in the document to run the installer for that item. Basically, [...]

TFS Merging Infinite Loop Madness

I made a bug fix to the trunk of one of my projects, which included a change to the project file. When I tried to merge the trunk into my development branch in TFS, I double clicked on the solution file before I commited my changes.

Now, Visual Studio is reporting this error message in [...]