Skip to content

Instantly share code, notes, and snippets.

View dglsparsons's full-sized avatar
👋

Douglas Harcourt Parsons dglsparsons

👋
View GitHub Profile
2022-02-14T10:53:05.200Z [INFO] Terraform version: 1.1.5
2022-02-14T10:53:05.200Z [INFO] Go runtime version: go1.17.2
2022-02-14T10:53:05.200Z [INFO] CLI args: []string{"/opt/homebrew/Cellar/tfenv/2.2.3/versions/1.1.5/terraform", "plan"}
2022-02-14T10:53:05.200Z [TRACE] Stdout is a terminal of width 118
2022-02-14T10:53:05.200Z [TRACE] Stderr is not a terminal
2022-02-14T10:53:05.200Z [TRACE] Stdin is a terminal
2022-02-14T10:53:05.200Z [DEBUG] Attempting to open CLI config file: /Users/dgls/.terraformrc
2022-02-14T10:53:05.200Z [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2022-02-14T10:53:05.200Z [INFO] Loading CLI configuration from /Users/dgls/.terraform.d/credentials.tfrc.json
2022-02-14T10:53:05.200Z [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
@dglsparsons
dglsparsons / neovim-config.vim
Last active January 6, 2022 09:57
My current neovim setup
set nocompatible " Disable vi compatibility
" Disable swap files
set noswapfile
set updatecount=0
call plug#begin('~/.local/share/nvim/plugged')
Plug 'sheerun/vim-polyglot'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'tpope/vim-fugitive'

Hi, I'm Doug, a full-stack engineer working at Shamaazi. 👋

I've been working in technology and programming since 2013. BEng in Computer Science from the University of York, UK.

You can follow me on:

Keybase proof

I hereby claim:

  • I am dglsparsons on github.
  • I am dgls (https://keybase.io/dgls) on keybase.
  • I have a public key ASBYB2smvJAJ0RtPNFHSWMA5j759BTeXjDMFBOiA7B-38Qo

To claim this, I am signing this object:

#!/usr/bin/rdmd
import std.stdio;
import core.thread;
import core.sync.mutex;
__gshared Mutex myMutex;
void lockMutex()
{