xul
An xmpp4moz notebook
Posted June 12th, 2007 by bardI like documentation that looks like a laboratory notebook—not a linear and sure path from problem to solution, but a record of the paths tried, including the bad ones, reasons why they were bad, intuitions that led toward the solution, and ideas about where to go next.
SamePlace spinoffs #1: CSS Query
Posted May 16th, 2007 by bardBefore:
var xulScriptlet;
var blueprint = document.getElementById('blueprints').firstChild;
while(blueprint) {
if(blueprint.getAttribute('class') == 'scriptlet')
break;
blueprint = blueprint.nextSibling;
}
var xulScriptlet = blueprint.cloneNode(true);
xulScriptlet.getElementsByAttribute('class', 'name')[0].value =
scriptlet.info.name;
xulScriptlet.getElementsByAttribute('class', 'version')[0].value =
scriptlet.info.version;
document.getElementById('scriptlets').appendChild(xulScriptlet);
After...

Comments
24 weeks 4 days ago
26 weeks 4 days ago
29 weeks 1 hour ago
29 weeks 2 days ago
33 weeks 3 days ago
36 weeks 1 day ago
36 weeks 6 days ago
42 weeks 3 days ago
47 weeks 23 hours ago
1 year 2 days ago