Welcome to MSDN Blogs
Sign in
|
Join
|
Help
A blog on coding, .NET, .NET Compact Framework and life in general....
I know the answer (it's 42)
This Blog
About
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
Amazing India
C# / .NET / Coding
Everything else
Fun
Garbage Collection
Ruby
Software
Team System
Tech
Technology
User interface
News
Web Site
Who links to my blog
Archives
September 2009 (3)
August 2009 (1)
June 2009 (1)
May 2009 (1)
April 2009 (8)
March 2009 (9)
February 2009 (5)
January 2009 (6)
December 2008 (1)
November 2008 (1)
October 2008 (6)
September 2008 (5)
August 2008 (3)
July 2008 (7)
June 2008 (2)
May 2008 (12)
April 2008 (4)
March 2008 (1)
February 2008 (3)
January 2008 (4)
December 2007 (4)
November 2007 (9)
October 2007 (3)
September 2007 (6)
August 2007 (5)
July 2007 (7)
June 2007 (12)
May 2007 (7)
April 2007 (2)
March 2007 (3)
February 2007 (8)
January 2007 (7)
December 2006 (11)
November 2006 (7)
October 2006 (4)
September 2006 (1)
August 2006 (11)
July 2006 (7)
June 2006 (5)
May 2006 (5)
April 2006 (7)
March 2006 (7)
February 2006 (11)
January 2006 (18)
December 2005 (15)
November 2005 (14)
October 2005 (15)
September 2005 (13)
August 2005 (10)
July 2005 (1)
June 2005 (3)
May 2005 (1)
April 2005 (1)
March 2005 (1)
January 2005 (2)
December 2004 (2)
November 2004 (2)
C# / .NET
Don Box
JFo's coding
Rico Mariani
Mike Stall
Way Ward
Jomo
Eric Lippert
Brad Abrams
Dan Fernandez
Everything else
Larry Osterman
Raymond Chen
Scoble
Joel
Flowstate
Team System
Rob Caron
Brian Harry
buck hodges
James Manning
December 2005 - Posts
Thursday, December 29, 2005 6:36 PM
Watson, look up at the sky and tell me what you see
" Sherlock Holmes and Dr. Watson go on a camping trip, set up their tent, and fall asleep. Some hours later, Holmes wakes his faithful friend. "Watson, look up at the sky and tell me what you see." Watson replies, "I see millions of stars." "What does
Posted by
abhinaba
|
4 Comments
Filed under:
Everything else
Tuesday, December 27, 2005 2:59 PM
snooping into TeamSystem activity logging
Brian Harry had blogged before on how we are using the activity logging on our Team System data-tier to actually measure load on our Team Foundation Server. How to enable logging TFSActivityLogging is a databsae created on the DT (data-tier) of TFS. To
Posted by
abhinaba
|
9 Comments
Filed under:
Team System
Wednesday, December 21, 2005 3:50 PM
Team Build RSS Feed
<Update: After some complains that it is difficult to cut paste code out of the blog, I have zipped and placed the source here > <Update: Fixed so that you no longer need to copy the Microsoft.TeamFoundation.Build.Common.dll. Thanks to a Watson
Posted by
abhinaba
|
17 Comments
Filed under:
Team System
Attachment(s):
TeamBuildRssFeed.zip
Monday, December 19, 2005 5:37 PM
C#: Did if( a = b) lose its sting
One of the common typo of using if (a = b) in place of if (a == b) gave a lot of grief to programmers working in C and C++. If you make the typo, you have an expression that is always true if b is not 0 (mostly it isn't) and the compiler is not even polite
Posted by
abhinaba
|
7 Comments
Filed under:
C# / .NET / Coding
Friday, December 16, 2005 2:10 AM
C#: Do we need checked exception in C#
We recently got hit by a bug where some method threw an exception which it was not supposed to. Since the thrown exception was not in the methods documented list of exception classes we did not have a catch for it and landed up with an unhandled exception
Posted by
abhinaba
|
11 Comments
Filed under:
C# / .NET / Coding
Wednesday, December 14, 2005 5:59 PM
C#2.0: Nullable types, lifted operators and some compare weirdness
Recently I was stumped on some weird comparisons and I promised myself I'd do some investigations. I figured out with help of some people like Erric Lippert they are due to the inclusion of nullable types in the language. When a new feature is added the
Posted by
abhinaba
|
1 Comments
Filed under:
C# / .NET / Coding
Tuesday, December 13, 2005 7:44 PM
What do we work on here in Microsoft India
Frequently I have been asked the question, what kind of work is done in Microsoft India or MIDC? The number of questions grew with my recent post on BillG's visit to India and his announcements regarding the plans to grow MIDC and MS India in general.
Posted by
abhinaba
|
0 Comments
Filed under:
Everything else
Monday, December 12, 2005 4:05 PM
C#: And I thought parallel assigment expressions were good
When I began using Ruby I loved most of the things I saw. I made couple ( 1 , 2 ) of posts on some of those features that I'd like to see in C#. When I started re-visiting code I wrote sometime back my views started to change considerably. One of these
Posted by
abhinaba
|
7 Comments
Filed under:
C# / .NET / Coding
,
Ruby
Monday, December 12, 2005 2:30 PM
The programmer's disease of doing it yourself
I had been taking a lot of digital pictures over the last few months, especially of my daughter. The numbers had grown so much that managing them was getting out of hand, so I did what most programers would do. I wrote code to do the backup. I used Ruby
Posted by
abhinaba
|
10 Comments
Filed under:
Everything else
Sunday, December 11, 2005 12:44 AM
C# 2.0: Generics, default(T) and compare to null weirdness
<Added additional stuff after a discussion on internal CSharp user list> I was going through the generics spec in C#2.0 and found something really weird. default(t) Consider the following code. class MyGenClass <T> { public void Method( ref
Posted by
abhinaba
|
22 Comments
Filed under:
C# / .NET / Coding
Thursday, December 08, 2005 12:00 PM
Bill Gates is in India and he's all over the place
I opened the morning newspaper and there he was on the top-page almost taking 25% of it. I opened the TV and he's there in the news rolling out grand plans for the future of Indian SW industry. Bill Gates is especially dear to Hyderbaadis. When all SW/HW
Posted by
abhinaba
|
3 Comments
Filed under:
Everything else
Wednesday, December 07, 2005 5:11 PM
C#: some corner cases
I was just reading the blog entry corner cases in C# and Java when I remember two of such corner cases I hit Multi-line comments I was working on a tool to count source lines. In that I printed out number of uncommented lines as well. While working on
Posted by
abhinaba
|
3 Comments
Filed under:
C# / .NET / Coding
Wednesday, December 07, 2005 3:48 PM
C#: if sealed is supported then why not singleton
As I had said in my previous blog " Usefulness of a new feature is best understood if you try to implement something that the feature targets without using that feature ". Lets take the example of the sealed class modifier. A sealed class cannot be inherited.
Posted by
abhinaba
|
13 Comments
Filed under:
C# / .NET / Coding
Thursday, December 01, 2005 6:12 PM
Developers are Super-hero
Bill Gates is coming to India for the launch of Visual Studio 2005, SQL Server 2005 and Biztalk. To celebrate this the rock band Parikrama has come out with a song about us (developers). Download the mp3 and lyrics from the Microsoft India site . I had
Posted by
abhinaba
|
6 Comments
Filed under:
Everything else
Thursday, December 01, 2005 6:03 PM
C# 2.0: life was a bit more difficult without Static classes
Usefulness of a new feature is best understood if you try to implement something that the feature targets without using that feature. I started programming in C# when v2.0 was already available internally, so I got used to many of the new features in
Posted by
abhinaba
|
2 Comments
Filed under:
C# / .NET / Coding