Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| blueprint: | |
| name: Nagging Alerting Notification Automation | |
| description: > | |
| Trigger an alert based on the state of a given sensor. | |
| The Alert is send to a mobile app device and repeats as long as the sensor is in the given state. | |
| An additonal action can be specified. This might be useful to tts the message. | |
| domain: automation | |
| source_url: https://gist.github.com/pavax/08705e383bdd3b58ea7b75a1f01c7e54 | |
| input: | |
| sensor_entity: |
| #!/usr/bin/python3 | |
| # CC0, originally written by t184256. | |
| # This is an example Python program for Linux that remaps a keyboard. | |
| # The events (key presses releases and repeats), are captured with evdev, | |
| # and then injected back with uinput. | |
| # This approach should work in X, Wayland, anywhere! |
| /// | |
| /// Simple pooling for Unity. | |
| /// Author: Martin "quill18" Glaude ([email protected]) | |
| /// Latest Version: https://gist.github.com/quill18/5a7cfffae68892621267 | |
| /// License: CC0 (http://creativecommons.org/publicdomain/zero/1.0/) | |
| /// UPDATES: | |
| /// 2015-04-16: Changed Pool to use a Stack generic. | |
| /// | |
| /// Usage: | |
| /// |
| // jshint node:true, latedef:nofunc | |
| 'use strict'; | |
| var flo = require('fb-flo'), | |
| gulp = require('gulp'), | |
| path = require('path'), | |
| map = require('map-stream'), | |
| minimatch = require('minimatch'), | |
| lazypipe = require('lazypipe'), | |
| rimraf = require('rimraf'), |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
This is a local copy of the commands from:
This guide serves as a reference of collected information necessary for strict management of PGP keys. This includes keeping a master key that always remains
| """ | |
| This is a simple example of WebSocket + Tornado + Redis Pub/Sub usage. | |
| Do not forget to replace YOURSERVER by the correct value. | |
| Keep in mind that you need the *very latest* version of your web browser. | |
| You also need to add Jacob Kristhammar's websocket implementation to Tornado: | |
| Grab it here: | |
| http://gist.github.com/526746 | |
| Or clone my fork of Tornado with websocket included: | |
| http://github.com/pelletier/tornado | |
| Oh and the Pub/Sub protocol is only available in Redis 2.0.0: |