brew install cmake
brew install python
sudo easy_install pip
Add powerline bin to your path. In your zshrc file (or the paths files sourced in zshrc) add the following line
PATH="/usr/local/share/python/:$PATH"
package as.adamsmith.etherealdialpad.dsp; | |
import android.media.AudioFormat; | |
import android.media.AudioManager; | |
import android.media.AudioTrack; | |
public class Dac extends UGen { | |
private final float[] localBuffer; | |
private boolean isClean; |
; A REPL-based, annotated Seesaw tutorial | |
; Please visit https://github.com/daveray/seesaw for more info | |
; | |
; This is a very basic intro to Seesaw, a Clojure UI toolkit. It covers | |
; Seesaw's basic features and philosophy, but only scratches the surface | |
; of what's available. It only assumes knowledge of Clojure. No Swing or | |
; Java experience is needed. | |
; | |
; This material was first presented in a talk at @CraftsmanGuild in | |
; Ann Arbor, MI. |
(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.
##what are generators##
yield
a value, the function pauses until .next(modifiedYieldValue)
is calledvar myGen = function*() {
var one = yield 1;
var two = yield 2;
var three = yield 3;
console.log(one, two, three);
http://www.workingnomads.co/ | |
http://www.reddit.com/r/remotejs/ | |
https://www.reddit.com/r/Jobs4Bitcoins/ | |
https://jobs.github.com/positions?description=&location=remote | |
https://authenticjobs.com/#types=7,1,3,5&category=2&onlyremote=1 | |
https://authenticjobs.com/#types=7,1,3,5&category=4&onlyremote=1 | |
https://remotecoder.io/ | |
https://weworkremotely.com/ | |
https://remoteok.io/ | |
http://careers.stackoverflow.com/jobs?allowsremote=true |
cd ~/.vagrant.d/boxes/eda-VAGRANTSLASH-phase-zero/1.0.0/virtualbox | |
VBoxManage clonehd box-disk1.vmdk eda.img --format RAW | |
diskutil list | |
# USB_BLOCK_DEVICE=/dev/rdisk2 | |
diskutil unmountDisk $USB_BLOCK_DEVICE | |
sudo dd if=eda.img of=$USB_BLOCK_DEVICE bs=16m |