This file contains 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
Compile the Redis "notifications" branch on Github. | |
Start Redis with ./redis-server --notify-keyspace-events yes | |
Subscribe to all the events with: | |
redis-cli psubscribe '*' | |
In another terminal window, play with redis-cli: set, del, expire, ... Only a few already work. |
This file contains 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
// TinyBASIC.cpp : An implementation of TinyBASIC in C to run on Nanode and Arduino | |
// | |
// This version now has the digital I/O, analogue I/O and sleep functions | |
// | |
// | |
// Take on the Nanode Tiny Basic Christmas Challenge | |
// | |
// Help Hack Tiny Basic onto Nanode and kickstart a return to simpler and fun programming | |
// Tiny Basic can help teach kids to program | |
// |