Category Archives: JavaScript

VersionManager

[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: [...] … Continue reading

Posted in JavaScript, namespacing, with | Leave a comment

Jeene: An automatic partial evaluator for JavaScript

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 … Continue reading

Posted in code specialization, instanceof, JavaScript, partial evaluation | Tagged , , | 3 Comments

Manual code specialization:a poor-mans partial evaluation in JavaScript

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 … Continue reading

Posted in closures, code specialization, JavaScript, partial evaluation, performance, sharing | Leave a comment

fun with with

Read this on the old blog. Here.

Posted in JavaScript, namespacing, scope, using, with | Leave a comment

HTML-free Web-applications with ExtJS [Designing client/server web-apps, Part I, Section III]

HTML-free Web-applications with ExtJS

Posted in Ext, Extjs, JavaScript, model view controller | Leave a comment

Client/Server Web-apps — the model (Part I, Section II)

Client/Server Web-apps — the model

Posted in Ext, Extjs, HTML free web-applications, JavaScript, model view controller | Leave a comment