Skip to content

Instantly share code, notes, and snippets.

View zachwhaley's full-sized avatar
🐳
Hi!

Zachary Whaley zachwhaley

🐳
Hi!
View GitHub Profile
@zachwhaley
zachwhaley / page.cpp
Last active July 31, 2018 21:33
Dumb pager program
#include <sys/ioctl.h>
#include <unistd.h>
#include <termios.h>
#include <iostream>
#include <fstream>
#include <string>
#include <cstdio>
int main(int argc, char* argv[])
@zachwhaley
zachwhaley / zachwhaley:ignore-tf-datadir
Last active June 5, 2020 18:58
Terragrunt: Ignore Terraform data directories when running *-all commands https://github.com/gruntwork-io/terragrunt/pull/1208
=== RUN TestTerragruntConfigAsCtyDrift
--- PASS: TestTerragruntConfigAsCtyDrift (0.00s)
=== RUN TestRemoteStateAsCtyDrift
--- PASS: TestRemoteStateAsCtyDrift (0.00s)
=== RUN TestTerraformConfigAsCtyDrift
--- PASS: TestTerraformConfigAsCtyDrift (0.00s)
=== RUN TestPathRelativeToInclude
=== PAUSE TestPathRelativeToInclude
=== RUN TestPathRelativeFromInclude
=== PAUSE TestPathRelativeFromInclude

Code Review Workflow

Start Your Work

Before starting any work, create a new branch off of the base branch your changes will be submitted to.

E.g. if you are working on a bug, your base branch would be main; if you are working on a feature, your base branch would be that feature's branch.

It is good practice to give the branch a name that is relevant to the work being done.