This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.vimrc | |
" Map leader to comma | |
let maplocalleader="," | |
" Toggle this for vim-sexp to not go into insert mode after wrapping something | |
let g:sexp_insert_after_wrap = 0 | |
" Toggle this to disable automatically creating closing brackets and quotes | |
let g:sexp_enable_insert_mode_mappings = 1 | |
Vocab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This code demonstrates a bug in mercury using vdom/vtree version 0.0.21 | |
// After the page loads, open your dev console, and run showRed(). You can | |
// examine the datasets given to the boxes using getRedData or getGreenData. | |
// After running showRed() and letting it render, run hideRed() | |
// | |
// You can click the green box at this point, and see that it logs | |
// "I'm a red box" to the console, having been assigned the red boxes | |
// event when the red box was removed. | |
var h = require('mercury').h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.iced = { | |
Deferrals: (function() { | |
__slice = [].slice | |
function _Class(_arg) { | |
this.continuation = _arg; | |
this.count = 1; | |
this.ret = null; | |
} |