Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
This is unmaintained, please visit Ben-PH/spacemacs-cheatsheet
SPC q q
- quitSPC w /
- split window verticallySPC w
- - split window horizontallySPC 1
- switch to window 1SPC 2
- switch to window 2SPC w c
- delete current windowCompile with:
webpack --config vendor.webpack.config.js
webpack --config app.webpack.config.js
Use with the following index.html
// Taken from a post by Wojciech Zieliński at https://groups.google.com/forum/#!topic/google-chrome-developer-tools/kH3FiDLlsFg | |
const consoleDummy = { warn: () => {}, log: () => {}, error: () => {}, info: () => {} }; | |
const { warn, log, error, info } = window.console || consoleDummy; | |
const $flags = { | |
warn: true, | |
log: true, | |
error: true, | |
info: true, | |
}; |
@default_timeout 100 | |
@check_interval 10 | |
# Test Helpers | |
defp wait_for(fun, timeout \\ @default_timeout) do | |
start_time = System.monotonic_time(:millisecond) | |
ref = make_ref() | |
try do |