Please, say yes to Object.observe()! https://t.co/7di2MCd1 Scenegraph updates would be much more efficient. No more needUpdate stuff either.
- Arindam Ghosh
“YouTube Instant”, similar to Google Instant, created by talented developer Feross Aboukhadijeh (who got job offer from YouTube CEO!). Unfortunately, to use this “YouTube Instant” you need to visit another webpage as it is not integrated with the search box on YouTube.com. Hence, it becomes an experimental tool only. To solve this problem, Stonos has created a Greasemonkey script which integrates the instant search feature with the search box on YouTube.com homepage. You can install this user script on Firefox with the help of Greasemonkey add-on, and see the results as you type the query.
- Arindam Ghosh
Overloaded methods are methods with the same name signature but either a different number of parameters or different types in the parameter list. For example 'spinning' a number may mean increase it, 'spinning' an image may mean rotate it by 90 degrees. By defining a method for handling each type of parameter you achieve the effect that you want. Overridden methods are methods that are redefined within an inherited or subclass. They have the same signature and the subclass definition is used. Polymorphism is the capability of an action or method to do different things based on the object that it is acting upon. This is the third basic principle of object oriented programming. Overloading and overriding are two types of polymorphism . Now we will look at the third type: dynamic method binding.
- Arindam Ghosh
Overloaded methods are methods with the same name signature but either a different number of parameters or different types in the parameter list. For example 'spinning' a number may mean increase it, 'spinning' an image may mean rotate it by 90 degrees. By defining a method for handling each type of parameter you achieve the effect that you want. Overridden methods are methods that are redefined within an inherited or subclass. They have the same signature and the subclass definition is used. Polymorphism is the capability of an action or method to do different things based on the object that it is acting upon. This is the third basic principle of object oriented programming. Overloading and overriding are two types of polymorphism . Now we will look at the third type: dynamic method binding.
- Arindam Ghosh