Blog Stats
  • Posts - 36
  • Articles - 0
  • Comments - 11
  • Trackbacks - 23

 

Monday, October 27, 2003

HUMANMETRICS --TRY YOUR TRAITS BEFORE TRYING FATE

 
Your Type is
ENFP
Extroverted Intuitive Feeling Perceiving
Strength of the preferences %
33 22 28 22


Qalitative analysis of your type formula


 You are:

  • moderately expressed extrovert
  • slightly expressed intuitive personality
  • moderately expressed feeling personality
  • slightly expressed perceiving personality

http://www.humanmetrics.com

Another reason not to deploy Debug code...

In the CLR Internals class today, Jeff Richter gave a great deal of really good information.  One thing that I should have figured, but did not really know was about the impact of running Debug code on Garbage Collector performance.  Say you have code like this:

public void foo()
{
   BigOb big;
   big=new BigOb();
   System.Console.WriteLine("Big is Really big! {0} ",big.GetSize());
   // 1.
   LongSlowOperation();
   // 2.
}

We think that big will be in scope until just after the curly brace below the comment 2.  Turns out that in release mode, the big object will be available for garbage collection at the 1 comment (because the framework can tell that it is not referenced again in the code) unless the code is debug code.  In that case, the object will be available and not garbage colected as a convenience for you while debugging.  In most cases the difference may not be critical, but it just might in some cases.

Got it from http://weblogs.asp.net/dreilly

 

 

Copyright © Ramesh Arimilli