Skip to content

Instantly share code, notes, and snippets.

View udondan's full-sized avatar
🤠

Daniel Schroeder udondan

🤠
View GitHub Profile
@udondan
udondan / cdk
Last active July 24, 2020 06:48
Disabling fancy AWS CDK output
View cdk
#!/bin/bash
if [[ "$1" != "deploy" ]]; then
/usr/local/bin/cdk "$@"
exit
fi
CDK_LOG=$(mktemp)
tail -f "${CDK_LOG}" &
PID=$!
@udondan
udondan / keybase.md
Created November 17, 2019 18:58
keybase.md
View keybase.md

Keybase proof

I hereby claim:

  • I am udondan on github.
  • I am udondan (https://keybase.io/udondan) on keybase.
  • I have a public key ASByIy09-TGoshZYDjj9wd70hc68FgNlN4SQRfr3_FQecgo

To claim this, I am signing this object:

View IAM write actions.txt
a4b:Approve*
a4b:Associate*
a4b:Create*
a4b:Delete*
a4b:Disassociate*
a4b:Forget*
a4b:Put*
a4b:Register*
a4b:Reject*
a4b:Revoke*
View iTerm color highlight triggers.txt
Green BG with black FG
(?i)(success(ful(ly)?)?|passing|passed|pass(?!word|phrase|wd))|done|(?<![a-z])ok(?![a-z])|(?<![^\s:])(?:1|2)\d{2}(?![^\s:])(?! (k(ilo)?|M(ega)?|G(iga)?|T(era)?|P(eta)?)(i)?B(yte|it)?)
Orange BG
(?i)warnings|warning|warn|rejected|(?<![^\s:])(?:3)\d{2}(?![^\s:])(?! (k(ilo)?|M(ega)?|G(iga)?|T(era)?|P(eta)?)(i)?B(yte|it)?)
Red BG
(?i)error(s)?|fail(s|ed(?!=0)|ure(s(?!: \[]))?)?(?![a-z])|exception(s(?!: \[]))?(?![a-z])|abort(ed)?|decline(d)?|denied|fatal|TODO|(?<![^\s:])(?:4|5)\d{2}(?![^\s:])(?! (k(ilo)?|M(ega)?|G(iga)?|T(era)?|P(eta)?)(i)?B(yte|it)?)
Orange BG (for Terraform)
@udondan
udondan / Example: golang gorm postgres uuid relation.md
Last active July 14, 2023 02:54
Example: golang gorm postgres uuid relation
View Example: golang gorm postgres uuid relation.md

Example: golang gorm postgres uuid relation

I was trying forever to get autoloading relationships working with postgres 9.4 and gorm and primary keys of type uuid.

Many tutorials and examples, even those on the official docs were just not workiong or missing important details.

The program in this gist creates the table structure and inserts a nested record. A parent and a child object is created by simply creating the child, which holds the relation to a parent. The child element then is queried by ID. The returned object holds the nested parent object.

Used package versions:

@udondan
udondan / commandContext.go
Last active May 3, 2018 07:45
os/exec CommandContext example
View commandContext.go
package main
import (
"context"
"os"
"os/exec"
"time"
)
func main() {
View consul-render
#!/bin/bash
CONTENT="$1"
# Create a random file name for tmp files
RAND=$(cat /dev/urandom | env LC_CTYPE=C tr -dc 'a-zA-Z0-9' | head -c 32)
TMPFILE="/tmp/$RAND"
# Render content to tmp file and output content
echo -e "$CONTENT" > "$TMPFILE.in"
@udondan
udondan / iterable.py
Created March 16, 2015 10:42
Ansible filter plugin for testing if variables are iterable - available in Jinja2 but not in the version Ansible currently uses
View iterable.py
from ansible import errors
from jinja2.filters import environmentfilter
class FilterModule(object):
def filters(self):
return {
'iterable': self.iterable
}
def iterable(*args):
try:
@udondan
udondan / ansible.cfg
Last active August 29, 2015 14:14
Cloned module fails
View ansible.cfg
[defaults]
# we don't want no paramiko!
transport = ssh
forks = 50
gathering = smart
host_key_checking = true
timeout = 30
scp_if_ssh = true
View MyModalWindowController.swift
import Cocoa
class MyModalWindowController: NSWindowController {
var mainW: NSWindow = NSWindow()
override init() {
super.init()
}