Skip to content

Instantly share code, notes, and snippets.

View edwardmlyte's full-sized avatar
🏠
Working from home

Edward Maxwell-Lyte edwardmlyte

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am edwardmlyte on github.
  • I am edwardmlyte (https://keybase.io/edwardmlyte) on keybase.
  • I have a public key ASCOKyA5wHMyYec5T4x0Iv2SGS6R_p1O2N1V7oP82waCSQo

To claim this, I am signing this object:

@edwardmlyte
edwardmlyte / dadjokejob.yaml
Last active September 26, 2019 16:09
Alpine Kubernetes job to curl an endpoint
apiVersion: batch/v1
kind: Job
metadata:
name: curl
spec:
template:
spec:
containers:
- name: alpine
image: alpine:3
@edwardmlyte
edwardmlyte / happy_git_on_osx.md
Created March 29, 2019 22:25 — forked from trey/happy_git_on_osx.md
Creating a Happy Git Environment on OS X

Creating a Happy Git Environment on OS X

Step 1: Install Git

brew install git bash-completion

Configure things:

git config --global user.name "Your Name"

git config --global user.email "you@example.com"