Skip to main content

The Last Lecture - Randy Pausch



This man is so inspirational... Highly motivating

Thanks to Rajesh paruchuri for sharing it with me.

Comments

Anonymous said…
On Oprah Randy said he was more than willing to have a miracle happen in his life, but never left his personal email. I have seen pancreatic cancer healed, his is the worst I've seen, but he seems to be the best candidate for miracles, because he speaks like one. I'll be waiting to see one that could begin the chain of balance.

Popular posts from this blog

How to deselect all the selection in a select ( combo ) box?

In a HTML page sometimes we may have to deslect all the selection in a select control of html. but as a user we can't do anything. But using Javascript programatically we can achieve this. Here is the sample code in Javascript. function clearSelect( selectObj ){ for (var i = 0; i < selectObj .options.length; i++) { selectObj .options[i].selected = false; } } note: we need to pass the select object as a parameter to this function. the alternative to this code is function clearSelect( selectObj ){ selectObj.selectedIndex = -1; }