This file contains hidden or 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
esphome: | |
name: esphome-web-XXX | |
friendly_name: MatrixClock | |
esp8266: | |
board: esp01_1m | |
# Enable logging | |
logger: |
This file contains hidden or 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
blueprint: | |
name: 'Z2M IKEA Shortcut Button E1812' | |
description: "Blueprint for Ikea Tradfri Shortcut Button E1812. You can put several actions to each single press, double press and log press." | |
domain: automation | |
input: | |
button: | |
name: Remote | |
description: IKEA Shortcut Button to use (e.g sensor.kitchen_remote_action) | |
selector: |
This file contains hidden or 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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: deep-purple; icon-glyph: image; | |
// This widget was created by Max Zeryck @mzeryck | |
// Widgets are unique based on the name of the script. | |
const filename = Script.name() + ".jpg" | |
const files = FileManager.local() | |
const path = files.joinPath(files.documentsDirectory(), filename) |
This file contains hidden or 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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: deep-purple; icon-glyph: image; | |
// This widget was created by Max Zeryck @mzeryck | |
/* | |
* Change the widget settings and test out the widget in this section. | |
* =================================================================== | |
*/ |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am tubit on github. | |
* I am tubit (https://keybase.io/tubit) on keybase. | |
* I have a public key whose fingerprint is 2712 F931 3256 9452 2AC6 09DB C3AD 2331 E4BB BFEC | |
To claim this, I am signing this object: |
This file contains hidden or 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
#!/usr/bin/env ruby | |
DATA.flock(File::LOCK_EX | File::LOCK_NB) or abort "Already running." | |
trap("INT", "EXIT") | |
puts "Running..." | |
loop do | |
sleep | |
end |
This file contains hidden or 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
#!/bin/bash | |
# Assumptions: | |
# | |
# Puppet >= 2.7 is installed on this machine | |
# puppet-lint is installed on this machine | |
# ERB is installed on this machine | |
# git is installed on this machine | |
# sed is installed on this machine | |
# Adjust LINTFLAGS as appropriate |
This file contains hidden or 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
PUPPETDB | |
puppet: | |
apt-get update | |
apt-get install puppet | |
puppet resource package puppetdb ensure=latest | |
## postgreSQL konfigurieren: | |
apt-get install postgresql-8.4 |
This file contains hidden or 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
### ruby 1.9.2 from debian | |
~# apt-get install ruby1.9.1-full | |
~# gem1.9.1 install bundler --no-rdoc --no-ri | |
~# gem1.9.1 install passenger --no-rdoc --no-ri | |
### apache dev headers + curl-dev for mod_passenger | |
~# apt-get install libapr1-dev apache2-prefork-dev libcurl4-openssl-dev | |
~# cd /opt/graylog2-web-interface | |
~# chown -R 33.33 /opt/graylog2-web-interface |