I hereby claim:
- I am johnweldon on github.
- I am johnweldon (https://keybase.io/johnweldon) on keybase.
- I have a public key whose fingerprint is 77E9 1E85 501D 0B6A 476D 9B39 9CF9 AF9D 7956 0500
To claim this, I am signing this object:
$ gcm start-sshagent | fl | |
Name : start-sshagent | |
CommandType : Function | |
Definition : | |
if($env:SSH_AGENT_PID) { echo "ssh-agent running"; return } | |
$private:gp = get-gitbinpath | |
if($private:gp) { | |
$private:out = & (join-path $private:gp "ssh-agent") |
DROP TABLE tempA; CREATE TABLE tempA ( style_cd CHAR(3), id_cd VARCHAR(15) ); | |
DROP TABLE tempB; CREATE TABLE tempB ( item_desc VARCHAR(50), item_num CHAR(4), style_cd CHAR(3), id_cd VARCHAR(15) ); | |
INSERT INTO tempA | |
SELECT 'A', 123456 | |
UNION SELECT 'A', 654321 | |
UNION SELECT 'B', 321456 | |
UNION SELECT 'A', 654123 | |
UNION SELECT 'C', 424242; |
#!/bin/bash | |
read -r -d '' AWK <<EOF | |
{ | |
date=\$1; | |
refname=\$2; | |
subject=substr(\$3,1,72); | |
sha=\$4; | |
len=split(refname, ref, "/"); |
package main | |
import ( | |
"fmt" | |
"io" | |
"net/http" | |
"net/http/httputil" | |
"os" | |
) |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# | |
# Update Google Domains Dynamic DNS from Zyxel C3000Z modem information. | |
# Tested on a Centurylink issued modem, YMMV | |
# | |
# See https://support.google.com/domains/answer/6147083?hl=en for | |
# Google Domains help and credentials information | |
# |
#!/usr/bin/env bash | |
set -euo pipefail | |
TODAY="$(date "+%Y-%m-%d")" | |
NEXTM="$(date -v+1m "+%Y-%m-%d")" | |
THREE="$(date -v-3m "+%Y-%m-%d")" | |
BEGIN="${THREE:0:8}01" | |
END="${NEXTM:0:8}01" |