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
| 68, 71, 74, 77, 79, 82, 85, 89, 92, 95, 98, 101, 105, 108, 112, 115, | |
| 119, 122, 126, 130, 134, 137, 141, 145, 149, 153, 157, 160, 164, 168, 172, 176, | |
| 180, 184, 187, 191, 195, 198, 202, 206, 209, 212, 216, 219, 222, 225, 228, 230, | |
| 233, 236, 238, 240, 242, 244, 246, 248, 249, 250, 252, 252, 253, 254, 254, 255, | |
| 255, 255, 254, 254, 253, 253, 252, 250, 249, 248, 246, 244, 242, 240, 238, 236, | |
| 233, 230, 228, 225, 222, 219, 216, 212, 209, 206, 202, 199, 195, 191, 187, 184, | |
| 180, 176, 172, 168, 164, 161, 157, 153, 149, 145, 141, 137, 134, 130, 126, 123, | |
| 119, 115, 112, 108, 105, 102, 98, 95, 92, 89, 86, 82, 80, 77, 74, 71, | |
| 68, 66, 63, 61, 58, 56, 54, 51, 49, 47, 45, 43, 41, 39, 37, 36, | |
| 34, 32, 31, 29, 28, 26, 25, 23, 22, 21, 20, 18, 17, 16, 15, 14, |
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
| # send messages with database-tag = mbmd to influxdb mbmd | |
| [[outputs.influxdb]] | |
| urls = ["http://influxdb.host:8086"] | |
| database = "mbmd" | |
| tagexclude = ["influxdb_database", "src", "measurement"] | |
| [outputs.influxdb.tagpass] | |
| influxdb_database = ["mbmd"] | |
| ########################################################################################### |
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
| { | |
| "annotations": { | |
| "list": [ | |
| { | |
| "builtIn": 1, | |
| "datasource": "-- Grafana --", | |
| "enable": true, | |
| "hide": true, | |
| "iconColor": "rgba(0, 211, 255, 1)", | |
| "name": "Annotations & Alerts", |
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
| [ | |
| { | |
| "id": "8fac7d4.a8d298", | |
| "type": "tab", | |
| "label": "PV", | |
| "disabled": false, | |
| "info": "" | |
| }, | |
| { | |
| "id": "83528e7.dc0fc7", |
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
| plugins { | |
| id 'java' | |
| } | |
| repositories { | |
| jcenter() | |
| mavenLocal() | |
| } | |
| def cucumberVersion = '5.5.0' |
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
| alias mwc='grep -v -e '\''^;'\'' -e '\''^[[:space:]]*#'\'' -e '\''^[[:space:]]*$'\''' |
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
| --- | |
| - hosts: localhost | |
| tasks: | |
| - name: create file | |
| copy: src=./demo dest=/tmp/demo | |
| # not working as expected | |
| - name: update xxxx | |
| lineinfile: | |
| dest: /tmp/demo |
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
| import collections | |
| import multiprocessing | |
| import time | |
| startzeit = time.time() | |
| Scientist = collections.namedtuple('Scientist', [ | |
| 'name', | |
| 'born', | |
| ]) |
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/sh | |
| ### BEGIN INIT INFO | |
| # Provides: mkdir-tmpfs | |
| # Required-Start: mountall | |
| # Required-Stop: | |
| # Should-Stop: | |
| # X-Start-Before: | |
| # Default-Start: 1 2 3 4 5 | |
| # Default-Stop: |
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
| //jQuery extension to fetch an rss feed and return it as json via YQL | |
| //created by [email protected] | |
| (function($) { | |
| $.extend({ | |
| feedToJson: function(options, callback) { | |
| if ($.isFunction(options)) { | |
| callback = options; | |
| options = null; | |
| } |
NewerOlder