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
6 days 11 hours ago
1 week 3 days ago
1 week 4 days ago
1 week 6 days ago
2 weeks 2 days ago
2 weeks 2 days ago
2 weeks 4 days ago
2 weeks 4 days ago
3 weeks 4 days ago
5 weeks 1 day ago