Thursday, May 28, 2009

Running - No More Blog Posts...

In the unlikely event that you were following my running progress on this blog, I must apologize. I don't think I will be posting any more blog entries with mileage/times. I will still be running, just not posting here. I will however, be keeping a log via Facebook... I use a site called MapMyRun.com, which logs my runs directly to Twitter and Facebook, saving me some time.

Tuesday, May 5, 2009

Running - Catch Up Posts

Wow, I am really behind on updating the old blog with my running data... So, here goes a whole list of 'em!

Day 12 - 3.0 (4/22/09)
Day 13 - 2.0 (4/23/09)
Day 14 - 4.5 (4/26/09)
Day 15 - 2.5 (4/28/09)
Day 16 - 3.0 (4/29/09)
Day 17 - 5.0 (5/03/09)
Day 18 - 2.5 (5/05/09)

So, there are the updated numbers.... So far, 53.5 miles total. I'll be putting together some graphs as I go along, but for now, I just want to have the record of what I have done.

Tuesday, April 21, 2009

Running - Day 11

Today I was scheduled for a short run, which this week means 2 miles. I knew ahead of time that my schedule would only permit the run if I got up early and hit the treadmill, which I don't really enjoy. Plus, I have been sleeping like total shit for the past few weeks, so I know it would be rough. Sure enough, I barely slept last night, so I was seriously dragging when I crawled out of bed at 5:00 this morning. But, I did it! I managed to get my 2 miles in with no walking. Now, I did fall asleep on the couch for 45 minutes after that, but at least I got my mileage in.

Day 11 - 2 Miles

Sunday, April 19, 2009

Running - Day 10

Yesterday the weather was perfect for a run. Not too hot, not too cold, really sunny and no clouds. My training schedule actually called for yesterday to be a cross-training day, but I knew that today would probably be rainy, so Terri and I opted to swap the days around and take advantage of the weather. She ran 7 miles, and I met up with her at mile 3 and we did the last 4 miles together. It was good.

Day 10 - 4 Miles

Thursday, April 16, 2009

Running - Day 9

Last night I went out and put in a 3-miler through Johnny Appleseed Park and onto the River Greenway. It's a great place to go for a run, as there are mile markers on the ground. Makes it super-easy to keep track of distance. The weather was pretty nice, but just a tad chilly. I had my ipod and some great tunes, but I think I was pacing myself to the music, and as such I was pushing myself a little harder than I meant to. My left knee was bothering me a bit by the end. I'll have to concentrate on not over-doing it. I certainly don't want to invite any injuries...

Day 9 - 3 Miles

Tuesday, April 14, 2009

Running - Day 8

This morning I got up early and put in a short 1.5 mile run. My schedule doesn't allow for me to run tonight, so I had to get it in this morning. I still don't like the treadmill, but it was cold, dark, and raining outside, so the treadmill was a necessary evil...

Day 8 - 1.5 Miles

Sunday, April 12, 2009

Running - Day 7

This morning I went for a run with Terri, which I enjoyed thoroughly. Well, at least the fact that we were doing it together. The run was hard, but one of the main reasons I decided to start running was so that I would cultivate a hobby that would give us more in common; something that we could do and enjoy together.

Day 7 - 4 Miles

Thursday, April 9, 2009

Running - Day 6

I missed yesterday due to parent-teacher conferences, so I went a little further today than my training schedule calls for. My calves hate me right now, but it's a good pain.

Day 6 - 4 Miles (ish)

Tuesday, April 7, 2009

Running - Day 5

It was just a short mile and a half this time, but it seemed a little easier than the first couple of days. But, I'm not sure I'll ever like running on the treadmill.

Day 5 - 1.5 Miles

Monday, April 6, 2009

Running - Days 3 and 4

So, the running is still happening. No giving up. I'm told that once you get past the first couple of weeks, it starts to get easier. I really want to do it, so maybe that helps.

Day 3 - 1.5 Miles
Day 4 - 3.5 Miles (on the treadmill, ugh)

Friday, April 3, 2009

Running - Days 1 and 2

So, I have started running. There were several motivating factors here that led me to this decision. First, I am tired of feeling, well, tired all the time. I believe firmly that not getting any real regular exercise is making me tired. Second, I am trying to cultivate interests that Terri and I can share (she runs). In fact, she has signed up for the Chicago marathon and the idea came up that I should do it also. A daunting thought for someone who has never really been a runner, but I think I am going to give it a shot!

Anyway, the stats (I am going to post my distances, mostly for my own reference).

Day 1 - 1.5 Miles
Day 2 - 3 Miles (approximately, might be a little less)

I'll start posting my times, once I start tracking them. For now, I am more concerned with actually getting through the distances.

Friday, March 13, 2009

Browse with Firefox, Debug with Internet Explorer

NOTE: I originally published this entry on my company blog here.

As a .NET developer, it is a necessity to debug my work in Internet Explorer. However, for my day-to-day web borwsing, I prefer to use "something else".  Lately, my something else has been Google Chrome, but I'm also a big fan of Firefox.  The problem is that, by default, if I change my default to be Chrome, then when you hit F5 to debug in Visual Studio, then Chrome is what gets launched for the debugging sessions.  For basic stuff, this is fine, but it's not ideal for me, particularly when I want to be able to debug client-side script from within Visual Studio.


I have dealing with this for a long time basically by not dealing with it at all...  That is, I have left Internet Explorer as my defaut browser and just launched Chrome for my routine browsing.  This is OK, but then whenever there is a link in an email, or a blog post (I use Outlook for RSS feeds), then Internet Explorer gets launched to handle it.  Not what I want.


Well, I finally got irritated enough by it this morning to hit Google and see what I could find.  It turns out the answer is pretty simple, but differs a little bit depending on whether the project is a Web Site project or a Web Application project.

Web Application Project

In Visual Studio, if you go right click on the project in the Solution Explorer, and go to Project Properties, the on the Web tab you can configure a custom Start Action, rather than just launching using the default browser.  Under Start Action, you would select "Start External Program", and use "C:\Program Files\Internet Explorer\iexplore.exe" to launch Internet Explorer.  Then, for "Command Line Arguments", you have to supply the URL of the start page.  In my example, this is "http://localhost:60669/Default.aspx".  The port number is required because I have also elected to use the Visual Studio Development Server, which can be seen in the next section, "Server".  The only thing that has to be changed there is that instead of allowing Visual Studio to randomly assign a port number, you must pick one.


Here is a screenshot of some example settings that work for a project of mine.



Web Site Project

If the project in question was created as a Web Site Project, then the configuration is slightly different.  First, click on the project in the Solution Explorer, and the in the Properties pane, change the Use Dynamic Ports property to False.  This will enable editing of the Port number property.  Set the port number to some fairly high numberl I used 60668 in my example.  Make note of what is in the Virtual path property, because you will need it for the next step.  (You can also change this virtual path if you wish).

Next, right-click on the project in the Solution Explorer and select Property Pages.  Under "Start Options", choose "Start External Program:"  The executable (C:\Program Files\Internet Explorer\iexplore.exe) and command-line arguments (http://localhost:60668/Website1/Default.aspx) arethe same as for Web Application projects.   The command-line arguments need to use the port number and Virtual path from the previous step.

Here are a couple of screenshots that work for my sample project.