Everything Store-related
- Curation of Bluprints
- Detail view of bluprint
Bluprinter
- Styles eeeeverywhere
- Create Bluprint
- Name the Bluprint
- Make required
| [ | |
| { | |
| "key": "tab", | |
| "command": "tab", | |
| "when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus" | |
| }, | |
| { | |
| "key": "ctrl+space", | |
| "command": "editor.emmet.action.expandAbbreviation", | |
| "when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus" |
| const routes = [ | |
| {method: 'get ', route: '/ping',}, | |
| {method: 'get ', route: '/authenticate/:uuid'}, | |
| {method: 'post ', route: '/authenticate'}, | |
| {method: 'post ', route: '/broadcasts'}, | |
| {method: 'post ', route: '/claimdevice/:uuid'}, | |
| {method: 'get ', route: '/devices'}, | |
| {method: 'post ', route: '/devices'}, | |
| {method: 'put ', route: '/devices/:uuid'}, | |
| {method: 'get ', route: '/devices/:uuid'}, |
| #!/bin/sh | |
| sudo ifconfig en0 ether $(openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//') |
| // Define the Pin the Temperature sensor is on | |
| int tempPin = A0; | |
| // Create a variable that will store the temperature value | |
| double temperature = 0.0; | |
| double temperatureF = 0.0; | |
| double lastTempF = 0.0; | |
| String temperatureString = ""; | |
| void setup() |
Everything Store-related
Bluprinter
| version() { | |
| VERSION=$(git tag --list | xargs semver -v | tail -n 1) | |
| echo $VERSION | |
| } | |
| version | |
| major() { | |
| semver -i major $(git tag --list | xargs semver -v | tail -n 1) | |
| } |
| flowId: 93534f2b-0b0b-4d65-a1e6-e8d278e73c8e | |
| instanceId: c666e846-b139-4402-b645-eb76de0f07ad | |
| flowId: e498fa3b-ef2c-466c-a4b9-8536d6c1524b | |
| instanceId: 52fdb5e6-9330-4292-b333-5920dacc3ee3 | |
| flowId: d5f84846-aaf7-4427-bb5d-d2eaeae3d34d | |
| instanceId: a5c62cfb-7c1b-4ea0-8566-22ef159fae3d |
| #include <Bridge.h> | |
| #include <YunClient.h> | |
| #include "tentacle-build.h" | |
| #include <SoftwareSerial.h> | |
| #define tentacleServer "tentacle.octoblu.com" | |
| #define meshbluServer "meshblu.octoblu.com" | |
| #define port 80 |
| #include <Bridge.h> | |
| #include <YunClient.h> | |
| #include "tentacle-build.h" | |
| IPAddress server(192,168,1,69); | |
| #define port 8111 | |
| static const char uuid[] = "1335d63e-3494-45d7-9e0b-d08c42818c6d"; |