happy_presenting()
_happy_voiping()
China is always different. But here are indications that virtual goods remain strong during the economic downturn. Virtual goods are "small entertainment". "Big entertainment" like TV-sets and Porsches seem to sell worse. But it looks like people can still afford single dollars (or yuan) for one or the other virtual good, that makes life sweeter during recession.// Base class:
function Animal(param1) {}
// Derived class
Dog.prototype = {}; for (_ in Animal.prototype) { Dog.prototype[_] = Animal.prototype[_]; }
// Prototype copy utility (beware, this is a long line)
window.deriveClass = function(baseClass, derivedClass) { derivedClass.prototype = {}; for (var i in baseClass.prototype) { derivedClass.prototype[i] = baseClass.prototype[i]; derivedClass.prototype.baseClass = baseClass; }};
// Base class:
function Animal(param1)
{
this.a = param1;
}
Animal.prototype.getClass = function() { return 'Animal'; }
// Derived class
window.deriveClass(Animal, Dog);
function Dog(param1, param2)
{
this.baseClass.call(this, param1);
this.b = param2;
}
Dog.prototype.getClass = function() { return 'Dog'; }
Dog.prototype = new Animal;
Vor 4 Tagen habe ich mir ordentlich beim Kochen den Tippfinger verbrannt. Natürlich sofort gekühlt mit Wasser und Eis, trotzdem eine richtige Brandblase, 3 cm lang, 1 cm breit, dick, aua. Also Verbrennung 2. Grades, allerdings nur klein und nicht so.instead of:
More about Simple Remote Procedure Call
_happy_encoding()