(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.
| #!/usr/bin/env zsh | |
| # | |
| # Install script for ArchLinux on Transip VPS Blade XX | |
| # | |
| # For Capital Locations Application (CLApp) Booking | |
| # made by Solobit | |
| # | |
| : ${(AA)=diskcfg::= | |
| 1 +2M:BIOS:EF02:X |
| var net = require('net'); | |
| var five = require('johnny-five'); | |
| var firmata = require('firmata'); | |
| var options = { | |
| host: '192.168.2.5', //whatever host | |
| port: 48879 //some port | |
| }; | |
(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.