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: Wake-up Sunrise (Kelvin, smooth & smart) | |
| description: > | |
| Modern alarm clock with sunrise effect. Default: warm white (≈2200 K) → daylight white (≈6500 K), | |
| automatically adapted to device limits. Optionally use an RGB color curve from start to end color instead of Kelvin. | |
| Future-proof thanks to color_temp_kelvin. For multiple lamps, please select a Light Group. | |
| domain: automation | |
| input: | |
| light_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
| #!/usr/bin/env perl | |
| #You need to install File::KeePass module, with cpan or manually | |
| #have a look here if you need help: http://www.thegeekstuff.com/2008/09/how-to-install-perl-modules-manually-and-using-cpan-command/ | |
| use v5.14; | |
| use strict; | |
| use warnings; | |
| use File::KeePass; |
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
| //Go to chrome://settings/passwords and run in console | |
| //Tested on Chrome v62 | |
| //You will get lots of "Error in event handler for passwordsPrivate.onPlaintextPasswordRetrieved: TypeError: Cannot read property 'origin' of undefined" | |
| var decryptedRow=""; | |
| var pm = PasswordManagerImpl.getInstance(); | |
| var pl; | |
| var getNextPassword = function(index) { | |
| pm.getPlaintextPassword(pl[index].loginPair, function(pwd) { |