Welcome to MSDN Blogs
Sign in
|
Join
|
Help
I know the answer (it's 42)
This Blog
About
Email
Syndication
RSS 2.0
Atom 1.0
Search
Go
Tags
Amazing India
C# / .NET / Coding
Everything else
Fun
Ruby
Software
Team System
Tech
Technology
User interface
News
WhoAmI
Who links to my blog
Web Site
Archives
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
June 2007 - Posts
Tuesday, June 26, 2007 10:15 AM
VSTS Source Control Annotation
One of the coolest feature of the upcoming Orcas release is the Source-Control file Annotation feature. "Annotate is a feature that allows developers to inspect a source code file and see at line-by-line level of detail who last changed each section of
Posted by
abhinaba
|
4 Comments
Filed under:
Team System
Thursday, June 21, 2007 12:18 PM
Using Trace-Points in Visual Studio
Even though everyone knows about break-points, trace points seem to have been used way less. Developers sometimes need to inspect variables and other state as a program flows without interrupting the execution (so no break points). Even if the program
Posted by
abhinaba
|
1 Comments
Filed under:
C# / .NET / Coding
Thursday, June 21, 2007 11:09 AM
It's Link
I saw the same thing in TechMela which Dinesh reported. Many attendees was pronouncing LINQ as "link cue". The actual pronunciation is "link". Not that it matters much (this is not as bad as C Pound or C Hash where the meaning maybe completely lost).
Posted by
abhinaba
|
1 Comments
Filed under:
C# / .NET / Coding
,
Everything else
Thursday, June 21, 2007 10:54 AM
The difference between is and as and dealing with FxCop Warning CA1800: variable is cast multiple times
I had the following code public static void f1( object ob) { if (ob is Foo && (( Foo )ob).m == 10) Console .WriteLine( "Yea" ); } This gave the following FxCop (Code analysis) performance warning: 'ob', a parameter, is cast to type 'ConsoleApplication5.Foo'
Posted by
abhinaba
|
5 Comments
Filed under:
C# / .NET / Coding
Tuesday, June 19, 2007 3:00 PM
Which font do you use for your resume
I had asked this before , but this time the question is "which font do you use for your resume?". The other question is what do you tell a person who sent me her resume in Comic Sans MS font.
Posted by
abhinaba
|
3 Comments
Filed under:
Everything else
Tuesday, June 19, 2007 11:27 AM
Static method calls in generics
I go this question from a blog reader. "The following code should be possible public class Class1 { public static void Hi() { Console .WriteLine( "Hi" ); } } public class Class2 <T> where T : Class1 { public static void Hi() { T.Hi(); //This should
Posted by
abhinaba
|
1 Comments
Filed under:
C# / .NET / Coding
Monday, June 18, 2007 7:04 PM
The Microsoft Sourcer is here
I had never heard of this position before either , but in case you are looking for working with Microsoft anywhere in the world, Sourcer in Microsoft is your best bet. Check out Jim one of the sourcer here or see the cool video below Video: The Recruiters
Posted by
abhinaba
|
0 Comments
Filed under:
Everything else
Monday, June 11, 2007 8:15 PM
I'll be going to TechMela 2007
Like TechEd, here in India we are having TechMela this year. This time the venue is Mumbai and I'll be there!!! Unfortunately there is very little bit of Language stuff. I plan to attend all UX presentations (covered in the agenda's Track 2) and also
Posted by
abhinaba
|
1 Comments
Filed under:
Everything else
Monday, June 11, 2007 11:42 AM
Interviewing with Microsoft India
"What to expect in the interview" I've had this question from candidates that I have referred or distant relatives or friend's friend (you get the idea!) who are appearing for an interview with Microsoft . Somehow people still get to hear that Microsoft
Posted by
abhinaba
|
1 Comments
Filed under:
Everything else
Thursday, June 07, 2007 10:00 AM
Adding Trace to a .NET application and listening to it
Just yesterday I was chatting with a friend and he was telling me how they are writing a thread-safe logging library for their .NET app. I was astonished to find out that they were completely unaware of the awesome trace library in .NET. So this post
Posted by
abhinaba
|
10 Comments
Monday, June 04, 2007 12:05 PM
SPAM is served
When I was deleting spam from the spam folder of one of my personal email accounts, the advertisement on that page pointed me to the recipe of SPAM VEGETABLE STRUDEL . I could almost hear the waiter say "Today's speciality is spam".
Posted by
abhinaba
|
0 Comments
Filed under:
Everything else
Friday, June 01, 2007 8:20 PM
Domain experts and their fixation
Some times all programmers get stuck in some weird issue with a specific technology which doesn't fall in his area of expertise. If this problem is really weird or very specific to a scenario then it's difficult to find a solution online and the only
Posted by
abhinaba
|
3 Comments
Filed under:
Everything else