[pcronin@cronin src]$ cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)
[pcronin@cronin src]$ uname -a
Linux cronin 3.10.0-957.21.3.el7.x86_64 #1 SMP Tue Jun 18 16:35:19 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
[pcronin@cronin src]$
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
<?xml version="1.0" encoding="utf-8"?> | |
<Product xmlns='http://code.google.com/p/open-zwave/'> | |
<!-- | |
Radio Thermostat Company of America CT80B Thermostat connected to a ZWave | |
network with an RTZW-02 USNAP module. | |
Installation and operation manual available at: | |
https://radiothermostat.desk.com/customer/en/portal/articles/1216509-ct80b-installation-and-operation-manuals | |
Details of the RTZW-02 USNAP module available at: | |
https://radiothermostat.desk.com/customer/portal/kb_article_attachments/20336/original.pdf?1379455676 |
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
(virtualenv) -bash-4.2$ pyozw_check -i -d /dev/zstick | |
------------------------------------------------------------------------------- | |
Intialize device /dev/zstick | |
Try to get options | |
Try to get manager | |
2019-06-01 15:05:54.237 Always, OpenZwave Version 1.6-417-g3431825-dirty Starting Up | |
2019-06-01 15:05:54.240 Info, Loading Localization File /home/homeassistant/virtualenv/lib64/python3.6/site-packages/python_openzwave/ozw_config/Localization.xml | |
2019-06-01 15:05:54.241 Info, Loaded /home/homeassistant/virtualenv/lib64/python3.6/site-packages/python_openzwave/ozw_config/Localization.xml With Revision 6 | |
2019-06-01 15:05:54.241 Always, Using Language Localization | |
2019-06-01 15:05:54.242 Info, Loading NotificationCCTypes File /home/homeassistant/virtualenv/lib64/python3.6/site-packages/python_openzwave/ozw_config/NotificationCCTypes.xml |
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
$ docker-compose up | |
Starting metacpan_elasticsearch_test_1 ... done | |
Starting metacpan_pgdb_1 ... done | |
Starting metacpan_logspout_1 ... done | |
Starting metacpan_elasticsearch_1 ... done | |
Starting metacpan_web_1 ... done | |
Starting metacpan_mongodb_1 ... done | |
Starting metacpan_github-meets-cpan-cron_1 ... done | |
Starting metacpan_github-meets-cpan_1 ... done | |
Starting metacpan_api_1 ... done |
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
foreach inputs as $in ( | |
{}; | |
if has("postcode") and has("network") then null | |
else . as $x | |
| $in | |
| if length == 1 and .[0][-1] == "Record" then {} | |
elif length == 2 and .[0][-1] == "Network" then ($x + {network: .[-1]}) | |
elif length == 2 and .[0][-2] == "postal" and .[0][-1] == "code" and .[-1] == "12061" then ($x + {postcode: .[-1]}) | |
else $x | |
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
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
# The #__ correspond to the pattern # being tested. | |
#23: double-quoted terminator, embedded HTML | |
my @double_quoted_html = (<<"HTML", 1); | |
<i>some text</i> |
Individual rules exist for the following scopes
| Definition | Indented? | Quoted? | Scope | Notes |
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
my @vals = (<<'SQL', 1); | |
SELECT * | |
FROM the_table | |
WHERE id=$1 | |
SQL | |
my @vals = (<<~'SQL', 1); | |
SELECT * | |
FROM the_table | |
WHERE id=$1 |
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/local/bin/perl | |
use strict; | |
use warnings; | |
my $sql = <<~'SQL'; | |
SELECT * | |
FROM some_table | |
SQL |
OlderNewer