Archive for the ‘JavaScript’ Category
Friday, January 22nd, 2010
[update: First, my apologies to jdalton, my post was not meant to derail Fusebox, merely to show a different approach to similar problems. ]
I read a post on Ajaxian about Fusebox, a JavaScript library which is described as:
[...] The problem is that frameworks / libraries / third-party scripts may overwrite ...
Posted in JavaScript, namespacing, with | No Comments »
Sunday, September 14th, 2008
The purpose of this posting is to show that is is possible to create an online partial evaluator for JavaScript, written also in JavaScript. As far as I know, this has been not been done before. This post is the first in a series describing the inner workings of Jeene.
A ...
Posted in JavaScript, code specialization, instanceof, partial evaluation | 3 Comments »
Friday, July 4th, 2008
Recall the object function that Douglas Crockford is promoting in his work on prototypal inheritance in JavaScript:
function object(p) {
function F(){}
F.prototype = p;
return new F();
}
The object function creates a new object which has the input object (p) as it's prototype.
On the comp.lang.javascript ...
Posted in JavaScript, closures, code specialization, partial evaluation, performance, sharing | No Comments »
Thursday, June 12th, 2008
Read this on the old blog. Here.
Posted in JavaScript, namespacing, scope, using, with | No Comments »
Saturday, April 19th, 2008
HTML-free Web-applications with ExtJS
Posted in Ext, Extjs, JavaScript, model view controller | No Comments »
Saturday, March 8th, 2008
Client/Server Web-apps -- the model
Posted in Ext, Extjs, HTML free web-applications, JavaScript, model view controller | No Comments »