(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.
| #!/bin/bash | |
| # install qemu utils | |
| sudo apt install qemu-utils | |
| # install nbd client | |
| sudo apt install nbd-client |
| 1 LOMEM: 14080 | |
| 5 GOSUB 10000: GOSUB 11000: GOSUB 16000: GOTO 135 | |
| 10 REM <<< LEMONADE STAND >>> | |
| 15 REM | |
| 20 REM FROM AN ORIGINAL PROGRAM | |
| 30 REM BY BOB JAMISON, OF THE | |
| 40 REM MINNESOTA EDUCATIONAL | |
| 50 REM COMPUTING CONSORTIUM | |
| 60 REM * * * | |
| 70 REM MODIFIED FOR THE APPLE |
(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 sketch will print some of interesting predefined constants to Serial. | |
| // | |
| // For more information, look at | |
| // http://electronics4dogs.blogspot.com/2011/01/arduino-predefined-constants.html | |
| // helper macro | |
| #define LINE(name,val) Serial.print(name); Serial.print("\t"); Serial.println(val); | |
| void setup() |