app:
appsave
appload
jsreset
tangentcode
editor
// You can edit this page in your browser's DOM inspector, // and use the buttons above to save the entire page. // The buttons below save this text box. ctx.clear(); ctx.strokeStyle = "#ffffff" ctx.fillRect( 10, 10, ctx.w - 20, ctx.h-20 ); ctx.strokeRect( 10, 10, ctx.w - 20, ctx.h-20 ); cells = $d3.select('#htm').selectAll('span').data(range(256)) cells.enter().append("span"); (cells .text(function(x) { return ' '+x.toString(16); }) .attr('class', 'tile') .style('left', function(i) { return 20*Math.floor(i/16) + 'px'; }) .style('top', function(i) { return 20*Math.floor(i%16) + 'px'; }));
save
load
eval