Posts

Just one more day

Most of us have been hankering and stalling the obvious longing some time or the other. This ambivalence is the outcome of grass being green on both sides of the fence. The juxtaposition of feelings carries the ironic mocking on destiny. I had gone through the same feeling when that coveted call for travelling to States dropped on my cell. There was a sudden onset of excitement followed by the melancholy of leaving Pune. I had managed to get two weeks time but unfortunately had to rush to Gurgaon for some urgent office work. The hopes for spending maximum time with all friends and loved ones shattered but few ounces of it was still alive as I had a week. Unfavorable circumstances leads to defence mechanisms like suppression and I too surenderd to its powers, sweet memories and sour reverberating through the walls of my temple and I couldn’t read past a single page of Short stories by Saki through out the journey to and from Gurgaon. Flashes of more than three beautiful ye...

Blissful Ignorance

This preemptive rumination painted across the white sheet on a babbage’s creation deepens the belief that no good can come out of Ignorance. Recovery leads to the cravings for stability, hope, success, respect per-se. The vigor encircling the being to achieve a joint dream gradually fades if ignorance is leading the way. The inevitable guilt makes your bed for as long as you want to lie in a dreamless slumber. Alternatives come into picture and industriousness results in complacency. The thirst for achievement persists in some nook inside the soul, progressive enhancement leads to compulsive motivation on the cost of sensitivity. The tilted beam balance is deemed straight. Love, empathy, care and concern do not make up its balancing load. The close concave focus expanding the hopeful though virtual image of self was constantly averting the disturbance or relocation. The source of this chosen survival is leading to an  familiarly  unfamiliar ripple in the eco-system. The o...

I am Iron Man

Image
At the labs I live at Society 6. After being carefully crafted and designed by tony I am put up for protection of apple's ex cogitation. I was purchased in January. I was excited to fly all the way to India to complete my  mission. The day neared for my departure. I was carefully wrapped catering to my ecological niche. The GPS was locked to Pune and my porter hit the road. I crossed the international borders, wooshed through fathomless seas. And finally reached the so called land of snake charmers. Though this seems a little boring but my predecessor was assigned this mission and unfortunately it got lost or is being held captive by customs department.  At Pune Proud owner Abhishek Anyways here I am in this mesmerising city, and when I reached at my owners doorstep I found it locked. My porter took me back to the post office. And left a notice for pickup. I eagerly waited for someone to pick me up, and the next day I got a body to encapsul...

Elementary OO Javascript and prototyping I

Considering the apparent fact that everything in Javascript is an object to be another day's story we will learn what is object oriented javascript. a) Object declaration. var foo={}; function Foo(){}; The first is a literal object and the second is a constructor object. The literal object is used when the same object is used throughout and any changes to the object will be carried forward. The constructor object is used when multiple instances of the object are required with some initial work is already done during object declaration. b) Method and Property declaration. var foo={     bar : "foobar",     getName : function(){         return this.bar;     } }; alert(foo.getName()); // will display -  foobar function Foo(){     this.bar = "foobar";     this.getName = function(){         return this.bar;     } } va...

Elementary OO Javascript and prototyping II

Image
Prev Post We will learn some basic prototyping today Every object has a prototype property function Foo(){}; alert(Foo.prototype); // displays object Every object has a prototype function Foo(){}; alert(Foo.__proto__); // displays Function function Foo(){}; alert(Foo.__proto__ === Foo.prototype); // displays false function Foo(){}; alert(Foo.__proto__ === Function.prototype); //displays true I'll reiterate every function has prototype property and prototype N.B.: We'll be using prototype property and not prototype(i.e. __proto__) a) Let's take a constructor object function Foo() { function Foo() { this.name = "foobar"; this.name = "foobar"; this.getName = function() { }; alert(this.name); Foo.prototype.getName = function() { } ...