Archive for March 5th, 2008

Ruby : Rails Intro

Posted on March 5, 2008. Filed under: Uncategorized |

Read Full Post | Make a Comment ( None so far )

Ruby : Keywords

Posted on March 5, 2008. Filed under: Uncategorized |

Read Full Post | Make a Comment ( None so far )

Ruby : Enumerables

Posted on March 5, 2008. Filed under: Uncategorized |

Read Full Post | Make a Comment ( None so far )

Ruby : Idioms

Posted on March 5, 2008. Filed under: Uncategorized |

Read Full Post | Make a Comment ( None so far )

Windows – Vista

Posted on March 5, 2008. Filed under: Uncategorized |

New Line character is \r\n .It basically means return the line and start a new line.

Read Full Post | Make a Comment ( None so far )

Difference Between

Posted on March 5, 2008. Filed under: Uncategorized |

difference between kind_of? and instance_of?
kind_of? –> check if one object is a kind of another object
instance_of? –> checks if one object is formed by the new of the class name…
for eg
module M end
class A
include M
end
class B < A; end
class C < B; end
b = B.new
b.kind_of? B #=> true
b.kind_of? A #=> true
b.kind_of? M #=> true
b.kind_of? C [...]

Read Full Post | Make a Comment ( None so far )

  •  

    March 2008
    M T W T F S S
    « Feb   Apr »
     12
    3456789
    10111213141516
    17181920212223
    24252627282930
    31  
  • My Fav

Liked it here?
Why not try sites on the blogroll...