View nodered-syslog-to-elasticsearch.json
This file contains 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": "1dffb66d.88ae0a", | |
"type": "function", | |
"z": "7be8537a.9bbd5c", | |
"name": "Reset dropped entry count", | |
"func": "flow.set(\"dropped_entries\", 0);\nreturn null;", | |
"outputs": "0", | |
"noerr": 0, | |
"x": 603.8958129882812, |
View nodered-elasticsearch-50x-check.json
This file contains 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": "d1f664fb.d8fb38", | |
"type": "tab", | |
"label": "Recent 50x proxy entries" | |
}, | |
{ | |
"id": "8b520419.7182e8", | |
"type": "inject", | |
"z": "d1f664fb.d8fb38", |
View gist:6efe978b482b2062ed2bd3f3ea6a4949
This file contains 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
Verifying my Blockstack ID is secured with the address 16ukZMicPrZsMfXjqq3zq5LudRNK4vGexV https://explorer.blockstack.org/address/16ukZMicPrZsMfXjqq3zq5LudRNK4vGexV |
View deploy-docker-and-compose.sh
This file contains 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/bash | |
export LC_ALL=C | |
export DEBIAN_FRONTEND=noninteractive | |
# Install Docker engine | |
echo "Installing docker engine..." | |
apt -q install --assume-yes \ | |
apt-transport-https \ | |
ca-certificates \ |
View xpub_checker.py
This file contains 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/python | |
import pycoin.key | |
import sys | |
import requests | |
import json | |
import datetime | |
def getbalance(address): | |
response = requests.get("https://bitaps.com/api/address/%s" % address) |
View main.go
This file contains 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
package main | |
import ( | |
"fmt" | |
"net" | |
"net/http" | |
"alexejk.io/go-xmlrpc" | |
) |
OlderNewer