Skip to content

Instantly share code, notes, and snippets.

View SKalt's full-sized avatar

Steven Kalt SKalt

View GitHub Profile
@SKalt
SKalt / plan.log
Created August 25, 2022 15:52
tf aws_iam_openid_connect_provider output
2022-08-25T11:49:22.394-0400 [INFO] provider: configuring client automatic mTLS
2022-08-25T11:49:22.405-0400 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/hashicorp/aws/4.27.0/darwin_arm64/terraform-provider-aws_v4.27.0_x5 args=[.terraform/providers/registry.terraform.io/hashicorp/aws/4.27.0/darwin_arm64/terraform-provider-aws_v4.27.0_x5]
2022-08-25T11:49:22.413-0400 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/hashicorp/aws/4.27.0/darwin_arm64/terraform-provider-aws_v4.27.0_x5 pid=21697
2022-08-25T11:49:22.413-0400 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/hashicorp/aws/4.27.0/darwin_arm64/terraform-provider-aws_v4.27.0_x5
2022-08-25T11:49:22.547-0400 [INFO] provider.terraform-provider-aws_v4.27.0_x5: configuring server automatic mTLS: timestamp=2022-08-25T11:49:22.546-0400
2022-08-25T11:49:22.556-0400 [DEBUG] provider.terraform-provider-aws_v4.27.0_x5: plugin address: address=/var/fol
@SKalt
SKalt / object_class_edges.tsv
Last active May 30, 2022 12:52
pg object class dependencies research
dependent dependency label notes citation
access function method handler_function https://www.postgresql.org/docs/current/sql-create-access-method.html
aggregate function https://www.postgresql.org/docs/current/sql-createaggregate.html
aggregate operator https://www.postgresql.org/docs/current/sql-createaggregate.html
aggregate schema https://www.postgresql.org/docs/current/sql-createaggregate.html
aggregate type arg_data_type An input data type on which this aggregate function operates. https://www.postgresql.org/docs/current/sql-createaggregate.html
aggregate type base_type https://www.postgresql.org/docs/current/sql-createaggregate.html
aggregate type state_data_type https://www.postgresql.org/docs/current/sql-createaggregate.html
cast function https://www.postgresql.org/docs/current/sql-createcast.html
cast type {source,target}_type https://www.postgresql.org/docs/current/sql-createcast.html
@SKalt
SKalt / install-republic-anywhere.sh
Created April 30, 2020 00:55
install republic anywhere
#! /usr/bin/env bash
# copied from https://help.republicwireless.com/hc/en-us/articles/115009437747-How-to-Install-Republic-Anywhere-on-Linux
# written here in pastable form
function install_republic_anywhere() {
sudo sh -c 'echo "deb [arch=amd64] https://s3.amazonaws.com/files.republicwireless.com/public/apps/anywhere/debian main main" > /etc/apt/sources.list.d/republicanywhere.list' &&
wget -O - https://s3.amazonaws.com/files.republicwireless.com/public/apps/anywhere/debian/key/public | sudo apt-key add - &&
sudo apt-get update &&
sudo apt-get install republicanywhere
}
@SKalt
SKalt / openapi.yml
Created March 7, 2020 23:15
Openapi.yml built from OTP dev-1.x
openapi: 3.0.0
info:
title: "OpenTripPlanner"
version: "1.5.0-SNAPSHOT"
description: "<h1>OpenTripPlanner</h1><p>The OpenTripPlanner multimodal journey planning system</p>"
license:
name: "GNU Lesser General Public License"
url: "https://www.gnu.org/licenses/lgpl-3.0.txt"
servers: []
paths:
@SKalt
SKalt / openapi.yml
Last active September 21, 2021 11:59
Openapi.yml generated from OTP dev-2.x
openapi: 3.0.0
info:
title: "OpenTripPlanner"
version: "2.0.0-SNAPSHOT"
description: "<h1>OpenTripPlanner</h1><p>The OpenTripPlanner multimodal journey planning system</p>"
license:
name: "GNU Lesser General Public License"
url: "https://www.gnu.org/licenses/lgpl-3.0.txt"
servers: []
paths:
@SKalt
SKalt / README.md
Created May 29, 2019 03:26
quick linux/windows python dev setup

linux/windows dev environment setup

It's dangerous to go alone! Take this.

TL:DR;

#!/usr/bin/env bash
mkdir your-project
cd your-project
@SKalt
SKalt / README.md
Last active May 29, 2019 02:55
sci-stack
@SKalt
SKalt / .gitignore
Last active June 9, 2022 13:51
node.js client, python asyncio TCP server connection
__pycache__
node_modules
@SKalt
SKalt / 0_script.sh
Created November 3, 2018 19:24
Run a jupyter lab with json folding viewing
docker run -it -p 8888:8888 -v $(pwd):/home skalt/dev-env
# in container
jupyter labextension install @jupyterlab/json-extension
jupyter lab --ip=0.0.0.0 --port=8888 --allow-root
@SKalt
SKalt / get-atom-service-names.js
Created July 3, 2018 19:27
List all available service names in the atom editor
/* global atom */
const allServiceNames = () => {
return atom.packages.serviceHub.providers.map((s) => {
return Object.values(s.servicesByVersion)
.map((v) => Object.keys(v));
}).reduce((acc, red) => acc.concat(...red), []);
}