I hereby claim:
- I am hovissimo on github.
- I am hovis (https://keybase.io/hovis) on keybase.
- I have a public key whose fingerprint is 5BF2 5C94 C3DE 8B11 09CA 5784 16B8 1A24 21E3 B5F1
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script type="text/javascript" src="smoothie.js"></script> | |
| <script src="https://cdn.firebase.com/js/client/2.2.0/firebase.js"></script> | |
| </head> | |
| <body> | |
| <h1>Garage temperatures in °C</h1> |
| import re | |
| import csv | |
| re_degenerates = re.compile(r"[wsmkrybdhvn]") | |
| def get_patterns(filename): | |
| with open(filename) as f: | |
| #lines = f.readlines()[2:] # the first two lines aren't data | |
| lines = f.readlines() | |
| for record in csv.reader(lines): |
| import re | |
| import csv | |
| re_degenerates = re.compile(r"[wsmkrybdhvn]") | |
| def get_patterns(filename): | |
| with open(filename) as f: | |
| lines = f.readlines()[2:] # the first two lines aren't data | |
| for record in csv.reader(lines): | |
| index = record[0] # the first column is the pattern id |
I hereby claim:
To claim this, I am signing this object:
| /* This function node will store the last message it | |
| received as long as msg.payload != "abracadabra". | |
| If this function receives a msg where the payload | |
| exactly equals "abracadabra" then the stored | |
| message will be forwarded. | |
| This function is designed for storing and replaying | |
| messages to help in testing flows. You can use it | |
| by wiring up between two nodes where you want to | |
| control or repeat messages, and also adding an |
| #! /bin/sh | |
| # Starts and stops Node-RED | |
| # /etc/init.d/node-red | |
| ### BEGIN INIT INFO | |
| # Provides: node-red | |
| # Required-Start: $syslog | |
| # Required-Stop: $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Node-RED initialisation |