Skip to content

Instantly share code, notes, and snippets.

View tmclnk's full-sized avatar

Tom McLaughlin tmclnk

View GitHub Profile

Introduction

You'll need a working git installation. These examples use powershell and the git-tfs package from github.

Install git-tfs

# by default powershell uses tls 1.0 :-(
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
invoke-webrequest 'https://github.com/git-tfs/git-tfs/releases/download/v0.28.0/GitTfs-0.28.0.zip' -outfile git-tfs.zip
expand-archive git-tfs.zip
set-alias 'git-tfs' "$($pwd.path)\git-tfs\git-tfs.exe"
<#
.SYNOPSIS
Replaces tokens in the form ##TOKENNAME## with tokens from a hashmap. Also includes Environment Variables, so
you can use things like ##RELEASE_RELEASENAME## in VSTS.
.DESCRIPTION
Environment variables are included as tokens here, so you may reference variables like ##PATH## or ##USERNAME## or ##JAVA_HOME##. Additionally, the following tokens are set by default.
'BUILDTIMESTAMP' = $(get-date).ToString('yyyy-MM-dd HH:mm')
'BUILDDATE' = $(get-date).ToString('yyyy-MM-dd')
@tmclnk
tmclnk / checklinks.bash
Last active July 11, 2019 13:35
given a directory, recursively finds files which reference the (dbml) files in that directory
@tmclnk
tmclnk / python-ansible-env.sh
Created September 6, 2019 22:19
Ansible EC2 inventory on Mac
################################################################################
# When you need to run the AWS inventory tasks from ansible on
# a Mac Mojave, you may run into environment issues, especially if you're
# like me and can't remember whether or not to run pip as root,
# which pip to run, and which tools require python2 vs python3.
#
# With ansible, I've stopped using homebrew as the installer,
# and instead install it with pip.
#
# Use the python virtualenv mechanism to set up python dependencies,
@tmclnk
tmclnk / install-resolv-linkage.sh
Last active December 30, 2020 19:20
OpenVPN, but allow SSH
sudo apt install openvpn-systemd-resolved
@tmclnk
tmclnk / gist:872e5235986f317834c37522a3fbd106
Created August 25, 2021 19:34
Update ElasticSearch Field Limit (Kibana Dev Tools Console)
PUT /test-fluent-2021.08*/_settings
{
"index.mapping.total_fields.limit" : "5000"
}
# SCP through jumpbox-1 (ssh >= 7.3)
scp -oProxyJump=jumpbox-1 LOCALFILE TARGET:
# SCP through jumpbox-1 (ssh < 7.3)
scp -oProxyCommand="ssh -W %h:%p jumpbox-1" LOCALFILE TARGET:
# Transfer via Unix Pipes
tail -50 hello.csv | ssh ip-10-150-81-90.ec2.internal "cat >/var/tmp/$(date +%s).csv"
@tmclnk
tmclnk / curl.sh
Created February 16, 2022 19:30
GraphQL Introspection Query
curl --location --request POST 'http://localhost:8080/session-api' \
--header 'Content-Type: application/json' \
--data-raw '{"query":"query IntrospectionQuery {\n __schema {\n queryType {\n name\n }\n mutationType {\n name\n }\n subscriptionType {\n name\n }\n types {\n ...FullType\n }\n directives {\n name\n description\n locations\n args {\n ...InputValue\n }\n }\n }\n}\n\nfragment FullType on __Type {\n kind\n name\n description\n fields(includeDeprecated: true) {\n name\n description\n args {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: true) {\n name\n description\n isDeprecated\n deprecationReason\n }\n possibleTypes {\n ...TypeRef\n }\n}\n\nfragment InputValue on __InputValue {\n name\n description\n type {\n
@tmclnk
tmclnk / header.png
Last active April 7, 2022 14:39
Postman - set authorization header
header.png
// AgilityPayload canonical payload shape for agility "REST" methods.
// Use this if you don't want to make structs for your backend call,
// but still want to access deeply nested fields which you wouldn't
// be able to dereference when using map[string]interface{}.
type AgilityPayload map[string]map[string]map[string][]map[string]interface{}
// ToMap to let you dump a map of names to meaningless objects
// into an even less useful map of names to meaningless objects.
// _this_ is what you'd pass to the RequestBody.
func (c *AgilityPayload) ToMap() map[string]interface{} {