Skip to content

Instantly share code, notes, and snippets.

View hewhocutsdown's full-sized avatar

Jordan Peacock hewhocutsdown

View GitHub Profile
@hewhocutsdown
hewhocutsdown / keybase.md
Created October 10, 2014 20:45
keybase.md

Keybase proof

I hereby claim:

  • I am hewhocutsdown on github.
  • I am hewhocutsdown (https://keybase.io/hewhocutsdown) on keybase.
  • I have a public key whose fingerprint is B0BB 3580 1ADE 8242 328D B41E 8178 DAA3 4768 12B4

To claim this, I am signing this object:

@hewhocutsdown
hewhocutsdown / gist:6925095
Created October 10, 2013 20:29
Dart SDK bug reproduction code
import 'dart:html';
void main() {
TableElement table = new TableElement();
TableSectionElement tableBody = table.createTBody();
TableRowElement row = tableBody.addRow();
TableCellElement cell = row.addCell();
cell.appendText("123");
document.body.append(table);