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:
| #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 |
| #!/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 |
I hereby claim:
To claim this, I am signing this object:
| #!/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; |
| #!/bin/bash | |
| echo ' | |
| ### | |
| # Welcome to graphite creator | |
| ### | |
| !!! | |
| ! THIS WILL REMOVE /var/www - MAKE SURE YOU WANT TO DO THIS! | |
| !!! |
| #!/bin/bash | |
| ### | |
| # gateway creator v0.1 | |
| # by wiflix | |
| # | |
| # just run as root, add your VPN credentials and reboot! | |
| # please remove my name, if you wanna extend or alter this script! | |
| ### |
| #!/bin/bash | |
| # | |
| # This script will | |
| # * fire up a ramdisk | |
| # * start a mysql server using it as storage | |
| # * copying your typo3 database to ram | |
| # * run the tests | |
| # * clean up | |
| # | |
| # use -k as parameter to clean-up after a failed run |
| #!/usr/bin/php | |
| <?php | |
| function run() { | |
| $macMapping = array( | |
| 'ed:de:' => 'Swartz', | |
| '99:81:' => 'Swartz', | |
| ); | |
| exec('sudo alfred-json -r 158', $alfredJson); |
| #!/bin/bash | |
| # | |
| # This script will | |
| # * fire up a ramdisk | |
| # * start a mysql server using it as storage | |
| # * copying your typo3 database to ram | |
| # * run the tests | |
| # * clean up | |
| # | |
| # use -k as parameter to clean-up after a failed run |
| <?php | |
| /** | |
| * Returns the page uid of the current page. | |
| * If no page is selected, we'll return the uid of the first root page. | |
| * | |
| * @return integer current page id. If no page is selected current root page id is returned | |
| */ | |
| protected function getCurrentPageId() { | |
| $pageId = (integer) \TYPO3\CMS\Core\Utility\GeneralUtility::_GP('id'); | |
| if ($pageId > 0) { |