Skip to content

Instantly share code, notes, and snippets.

View jmeekhof's full-sized avatar

Josh Meekhof jmeekhof

  • Charlie Health
  • Grand Rapids, MI
View GitHub Profile
[push]
default = simple
[user]
name = Josh Meekhof
email = jmeekhof@twotheleft.com
# signingkey = C8F74B09BC7585D7
signingkey = 2E33DCF691A233A8E7766F09E652FD21A4CEAFB9
[alias]
st = status
df = diff
import com.optum.giraffle.tasks.GsqlTask
import com.optum.giraffle.tasks.GsqlTokenTask
import io.github.httpbuilderng.http.HttpTask
buildscript {
this.dependencies{
this.classpath("com.opencsv:opencsv:3.8")
}
}
@jmeekhof
jmeekhof / openpgp.txt
Created December 28, 2017 00:53
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:04ca386d703cfe462d98f250c8f74b09bc7585d7]
@jmeekhof
jmeekhof / openpgp.txt
Created December 28, 2017 00:53
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:04ca386d703cfe462d98f250c8f74b09bc7585d7]
RUN yum -y install epel-release && \
curl -o /etc/yum.repos.d/dperson-neovim-epel-7.repo https://copr.fedorainfracloud.org/coprs/dperson/neovim/repo/epel-7/dperson-neovim-epel-7.repo && \
yum -y install neovim && \
yum clean headers && \
yum clean packages
@jmeekhof
jmeekhof / tmux.conf
Created November 18, 2017 00:44
my tmux.conf
bind r source-file ~/.tmux.conf
set -g set-titles on
set -g set-titles-string '#(whoami)::#h'
set -g status-interval 5
set -g default-terminal "xterm"
set -g escape-time 10
set -g default-shell $SHELL
set -g default-command "reattach-to-user-namespace -l ${SHELL}"
@jmeekhof
jmeekhof / Dockerfile
Last active January 17, 2019 00:08
quick and dirty docker for python-lambda
FROM amazonlinux
RUN yum update -y && \
yum install -y shadow-utils \
which \
gcc \
zlib \
zlib-devel \
openssl \
openssl-devel \