Custom Search
Friday, March 11, 2011
JQuery Cheat sheet
Monday, August 2, 2010
What is Warm Start up time and Cold Start up time?
Cold startup time refers to the time taken to start an application soon after a machine reboot, such that the application is being launched for the first time after that reboot. Warm startup time, on the other hand, is the time taken to start the application given that it was launched in the recent past (and there were no reboots in between).
source: MSDN magazine - Surupa Biswas - CLR Inside OUT
source: MSDN magazine - Surupa Biswas - CLR Inside OUT
Monday, November 23, 2009
Adhyay - 11
Madnugrahay paramam guhyamdhyatmasangnitam |
Yatvayokta vachasten mohoyum vigato mam || (1/11)
Monday, October 26, 2009
What is '::' in F#? What is Cons in FSharp?
As a novice F# developer, I was wondering; what is mean by '::' sign. I saw that people are using it every now and than. '::' means Cons. 'Cons' is the fundamental concept of computation programming with linked list. I got to know it from one of the Chris Smith's blog about List. Cons can be used to add an element at beginning of the list.
for example:
> 11 :: [12 .. 14];;
val it : int list = [11; 12; 13; 14]
Subscribe to Posts [Atom]