Skip to content

Instantly share code, notes, and snippets.

@sheeley
sheeley / build.sh
Last active May 3, 2021 18:58
Terraform API Gateway Lambda setup
#! /usr/bin/env bash
GOOS=linux GOARCH=amd64 go build -o main main.go
zip main.zip main
@sheeley
sheeley / rap.md
Created May 26, 2019 01:02
I Want You to Know
  • Jungle Brothers - Raw Deluxe
  • ATCQ, Busta Rhymes, Charlie Brown, Scenario, Black Sheep, De La Soul,
  • Busta w/Flipmode, Spliff Starr, Beatminerz
  • Jay-Z vs. Nas
  • Cocoa Brovas, Smif n Wesson
  • Cam’ron, Juelz Santana, chipmunk soul, Kanye
  • THPS, b-boy document
  • Rawkus, Mos Def, Talib Kweli, Common, DCQ
  • 7L & Esoteric - The Soul Purpose
  • Kanye round 2
@sheeley
sheeley / obsidian.tf
Created October 18, 2021 22:26
Setting up Cloudformation for Obsidian using Terraform
resource "aws_acm_certificate" "aigee_org" {
domain_name = "aigee.org"
subject_alternative_names = ["notes.aigee.org"]
validation_method = "DNS"
lifecycle {
create_before_destroy = true
}
}