Moving forward, updates to this subflow will be found at the following repository: https://github.com/sstratoti/actionable-notifications-subflow-for-ios
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
server: | |
http_listen_port: 9080 | |
grpc_listen_port: 0 | |
positions: | |
filename: /tmp/positions.yaml | |
clients: | |
- url: http://192.168.100.8:3100/loki/api/v1/push |
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
{ | |
"meta" : { | |
"theme" : "stackoverflow" | |
}, | |
"basics": { | |
"name": "John Dyer", | |
"label": "Manager of Platform Operations at Cisco", | |
"image": "https://gist.githubusercontent.com/johntdyer/b58cebbebfea59b3e718409d235ef85f/raw/8a8cdceceb88e879ab1e04d5de6ba8d071072971/Screen%2520Shot%25202021-05-21%2520at%25204.51.52%2520PM.png", | |
"email": "[email protected]", | |
"phone": "+1.407.474.0214", |
title | date | draft | categories | tags | thumbnail | ||||
---|---|---|---|---|---|---|---|---|---|
Using Let's Encrypt Certificates with Unifi |
2018-04-25 |
false |
|
|
/images/2018/04/lets-encrypt-logo.png |
Let's Encrypt is a great service that automates deployment and renewal of SSL certificates, at a bargain price. For most situations where you have a regular OS, the default Certbot Acme client works well. However for more embedded solutions, like Ubiquiti's Unifi Cloudkey this is not an option as there is no full Linux OS. After researching a few of the alternative options, Acme Shell was the clear winner. It runs using the Bourne shell, and has Unifi support built in.
I hereby claim:
- I am johntdyer on github.
- I am johntdyer (https://keybase.io/johntdyer) on keybase.
- I have a public key ASC5X1rNrAiAXBWkpmH-ah3tgdCry5RpcZGHUf3d8SmFhQo
To claim this, I am signing this object:
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
// PUT YOUR AWS ACCOUNT NUMBER HERE | |
var AWS_ACCOUNT_ID= '12345'; | |
// PUT YOUR SQS QUEUE NAME HERE | |
var AWS_SQS_QUEUE_NAME='catch-dlr-dyer-testing'; | |
var QUEUE_URL = 'https://sqs.us-east-1.amazonaws.com/' + AWS_ACCOUNT_ID + '/' + AWS_SQS_QUEUE_NAME; | |
var AWS = require('aws-sdk'); | |
var sqs = new AWS.SQS({region : 'us-east-1'}); |
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
require 'openssl' | |
# Module for encoding and decoding in Base32 per RFC 3548 | |
module Base32 | |
TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'.freeze | |
@table = TABLE | |
class <<self | |
attr_reader :table | |
end |
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 ( | |
"encoding/json" | |
. "github.com/smartystreets/goconvey/convey" | |
"os" | |
"testing" | |
) | |
func TestSpeechCalculatorSpec(t *testing.T) { |
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
local dt = require "date_time" | |
local l = require 'lpeg' | |
local ip = require "ip_address" | |
local ip_address = l.Cg(l.Ct(l.Cg(ip.v4, "value") * l.Cg(l.Cc"ipv4", "representation")), "address") | |
l.locale(l) | |
local msg = { | |
Timestamp = nil, | |
type = nil, |
NewerOlder