This file contains hidden or 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
cache: | |
mount: | |
- node_modules | |
- .git | |
build: | |
run_node_build: | |
image: node:6 | |
commands: | |
- npm install gulp |
This file contains hidden or 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
for (( ;; )) do ping -c 1 google.com; sleep 15; done |
This file contains hidden or 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
/* | |
Ported from SD card datalogger example | |
Write XBEE GPS output to the SD card of a Seeduino Stalker | |
*/ | |
#include <SD.h> | |
#include <Streaming.h> | |
#include <TinyGPS.h> | |
TinyGPS gps; | |
// On the Ethernet Shield, CS is pin 4. Note that even if it's not |