Sunday, July 19, 2009
Dost!!
par kuch yaadon ke dayre ban jaate hain…
Bhool jaana to insaan ki fitrat hai,
par kuch acche dost yaadon mein bas jaate hain..
Friday, July 17, 2009
More AS questions
Sunday, July 12, 2009
The Song of the Free
The wounded snake its hood unfurls,
The flame stirred up doth blaze,
The desert air resounds the calls
Of heart-struck lion's rage.
The cloud puts forth it deluge strength
When lightning cleaves its breast,
When the soul is stirred to its in most depth
Great ones unfold their best.
Let eyes grow dim and heart grow faint,
And friendship fail and love betray,
Let Fate its hundred horrors send,
And clotted darkness block the way.
All nature wear one angry frown,
To crush you out - still know, my soul,
You are Divine. March on and on,
Nor right nor left but to the goal.
Nor angel I, nor man, nor brute,
Nor body, mind, nor he nor she,
The books do stop in wonder mute
To tell my nature; I am He.
Before the sun, the moon, the earth,
Before the stars or comets free,
Before e'en time has had its birth,
I was, I am, and I will be.
The beauteous earth, the glorious sun,
The calm sweet moon, the spangled sky,
Causation's law do make them run;
They live in bonds, in bonds they die.
And mind its mantle dreamy net
Cast o'er them all and holds them fast.
In warp and woof of thought are set,
Earth, hells, and heavens, or worst or best.
Know these are but the outer crust -
All space and time, all effect, cause.
I am beyond all sense, all thoughts,
The witness of the universe.
Not two nor many, 'tis but one,
And thus in me all me's I have;
I cannot hate, I cannot shun
Myself from me, I can but love.
From dreams awake, from bonds be free,
Be not afraid. This mystery,
My shadow, cannot frighten me,
Know once for all that I am He.
By Swami Vivekanand-(1895)
Saturday, July 11, 2009
Top 20 Universities in USA by Happy Schools Blog
Top 20 Universities in USA by Happy Schools Blog
- Massachusetts Institute of Technology
- Stanford University
- University of California–Berkeley
- Carnegie Mellon University
- Cornell University
- Princeton University
- University of Illinois–Urbana-Champaign
- University of Washington
- Georgia Institute of Technology
- University of Texas–Austin
- University of Michigan–Ann Arbor
- University of Wisconsin–Madison
- California Institute of Technology
- University of Maryland–College Park
- University of California–Los Angeles
- Columbia University
- Harvard University
- University of California–San Diego
- Purdue University–West Lafayette
- Duke University
Friday, July 10, 2009
Tribute to Dinkar!!!
मेरे प्यारे देश ! देह या मन को नमन करूँ मैं ?
किसको नमन करूँ मैं भारत ! किसको नमन करूँ मैं ?
भू के मानचित्र पर अंकित त्रिभुज, यही क्या तू है ?
नर के नभश्चरण की दृढ़ कल्पना नहीं क्या तू है ?
भेदों का ज्ञाता, निगूढ़ताओं का चिर ज्ञानी है,
मेरे प्यारे देश ! नहीं तू पत्थर है, पानी है।
जड़ताओं में छिपे किसी चेतन को नमन करूँ मैं ?
भारत नहीं स्थान का वाचक, गुण विशेष नर का है,
एक देश का नहीं, शील यह भूमंडल भर का है ।
जहाँ कहीं एकता अखंडित, जहाँ प्रेम का स्वर है,
देश-देश में वहाँ खड़ा भारत जीवित भास्कर है ।
निखिल विश्व को जन्मभूमि-वंदन को नमन करूँ मैं ?
खंडित है यह मही शैल से, सरिता से सागर से,
पर, जब भी दो हाथ निकल मिलते आ द्वीपांतर से,
तब खाई को पाट शून्य में महामोद मचता है,
दो द्वीपों के बीच सेतु यह भारत ही रचता है।
मंगलमय यह महासेतु-बंधन को नमन करूँ मैं ?
दो हृदय के तार जहाँ भी जो जन जोड़ रहे हैं,
मित्र-भाव की ओर विश्व की गति को मोड़ रहे हैं,
घोल रहे हैं जो जीवन-सरिता में प्रेम-रसायन,
खोर रहे हैं देश-देश के बीच मुँदे वातायन।
आत्मबंधु कहकर ऐसे जन-जन को नमन करूँ मैं ?
उठे जहाँ भी घोष शांति का, भारत, स्वर तेरा है,
धर्म-दीप हो जिसके भी कर में वह नर तेरा है,
तेरा है वह वीर, सत्य पर जो अड़ने आता है,
किसी न्याय के लिए प्राण अर्पित करने जाता है।
मानवता के इस ललाट-वंदन को नमन करूँ मैं
Saturday, July 4, 2009
JUNIT
http://junit.sourceforge.net/doc/faq/faq.htm#tests_16
Thursday, July 2, 2009
Choosing Between Timer and Event.ENTER_FRAME
As we’ve just seen, the Timer class and the Event.ENTER_FRAME event can both be used
to produce animation. So which one is right for your family? Here are the major factors
to consider:
1. Frame rate is subject to change
When a .swf file is loaded by another application, the frame rate of that application
might be vastly different than the .swf file’s designated frame rate, potentially
causing the .swf ’s animations to play too quickly or too slowly. The loaded
.swf file can, of course, set the frame rate, but that change in frame rate might
cause undesirable playback behavior in the parent application. The Timer class
offers some frame-rate independence (subject to the limitations discussed in the
earlier section “Frame Rate’s Effect on Timer”).
2. Using many Timer objects requires more memory
In decentralized animation management architectures, using a separate Timer to
control the animation of each object requires more memory than would be
required by the analogous Event.ENTER_FRAME implementation.
3. Using many Timer objects can cause excessive screen update requests
In decentralized animation management architectures, using a separate Timer in
conjunction with updateAfterEvent( ) to control the animation of each object
leads to multiple independent requests for screen updates, possibly leading to
performance problems.