I hereby claim:
- I am foertel on github.
- I am foertel (https://keybase.io/foertel) on keybase.
- I have a public key whose fingerprint is 6474 D886 F741 F164 6CD4 7BAE F859 59EC B723 8802
To claim this, I am signing this object:
| #!/bin/bash | |
| echo ' | |
| ### | |
| # Welcome to graphite creator | |
| ### | |
| !!! | |
| ! THIS WILL REMOVE /var/www - MAKE SURE YOU WANT TO DO THIS! | |
| !!! |
| #!/bin/bash | |
| apt-get install pkg-config cmake git libjansson-dev zlib1g-dev | |
| git clone http://git.open-mesh.org/alfred.git | |
| export CONFIG_ALFRED_GPSD=n | |
| cd alfred/ | |
| cmake . | |
| make | |
| make install | |
| start-stop-daemon -b --start --exec /usr/local/sbin/batadv-vis -- -si bat0; | |
| start-stop-daemon -b --start --exec /usr/local/sbin/alfred -- -i bat0; |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| cd gluon/ | |
| SITES=$(dialog --title "Select site.conf" --checklist "Chose" 15 60 4 \ | |
| com1 "Community 1" OFF \ | |
| com2 "Comunity 2" OFF 3>&2 2>&1 1>&3) # show dialog and store output | |
| clear | |
| GLUON_BRANCH=$(dialog --title "Branch" --menu "Chose one" 15 60 3 \ | |
| stable "Stable" \ | |
| beta "Beta" \ | |
| experimental "Experimental" 3>&2 2>&1 1>&3) # show dialog and store output |
| #include <ESP8266WiFi.h> | |
| #include "Adafruit_MQTT.h" | |
| #include "Adafruit_MQTT_Client.h" | |
| #include "DHT.h" | |
| #define WLAN_SSID "Felix" | |
| #define WLAN_PASS "somePass" | |
| #define MQTT_SERVER "192.168.1.2" | |
| #define MQTT_SERVERPORT 1883 // use 8883 for SSL |