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: Always On Switch | |
description: Keep the selected switch on, even when it is turned off. This should be used for switches you never want to be turned off. | |
domain: automation | |
input: | |
target_switch: | |
name: Target Switch | |
description: The switch that will always be kept on. | |
selector: | |
entity: |
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
<head> | |
<meta charset="utf-8"> | |
<title>fluentReports</title> | |
<meta name="description" content="Node and Browser based Reporting engine"> | |
<meta name="keywords" content="fluentReports pdf report development data driven javascript engine node node.js io.js browser chrome firefox safari"> | |
<meta name="author" content="Nathanael Anderson"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<script src="./fluentReportsGenerator.js"></script> | |
<style type="text/css" media="screen"> | |
body { |
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
<!doctype html> | |
<meta charset="utf-8"> | |
<script src="http://cdn.rawgit.com/dmauro/Keypress/master/keypress.js"></script> | |
<script> | |
window.onload = function () { | |
var counter = 0, | |
counterElement = document.getElementById('counter'), | |
listener = new window.keypress.Listener(); | |
listener.register_combo({ |
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
<!doctype html> | |
<meta charset="utf-8"> | |
<base href="http://polygit.org/polymer+v1.2.4/components/"> | |
<script src="webcomponentsjs/webcomponents-lite.js"></script> | |
<link href="polymer/polymer.html" rel="import"> | |
<script> | |
addEventListener('WebComponentsReady', function () { | |
window.InputBehavior = { | |
properties: { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Polymer</title> | |
<script src="http://polygit.org/components/webcomponentsjs/webcomponents-lite.js"></script> | |
<link href="http://polygit.org/polymer+v1.2.3/components/polymer/polymer.html" rel="import"> | |
</head> | |
<body> | |
<dom-module id="x-element"> |
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
/******************************************************************************** | |
Copyright (C) 2013 Christophe Jeannin <[email protected]> | |
Hugh Bailey <[email protected]> | |
This program is free software; you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation; either version 2 of the License, or | |
(at your option) any later version. | |
This program is distributed in the hope that it will be useful, |