Skip to content

Instantly share code, notes, and snippets.

View MarkGalloway's full-sized avatar

Mark Galloway MarkGalloway

  • Amazon
  • Edmonton, Alberta, Canada
View GitHub Profile
@MarkGalloway
MarkGalloway / devcontainer.json
Created September 18, 2019 13:39
Grease VSCode DevContainer Test Settings
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
"name": "Grease (Extend)",
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
"dockerComposeFile": [
"../docker-compose.yml",
"docker-compose.yml"
@MarkGalloway
MarkGalloway / .bash_profile
Last active September 18, 2019 13:36
bash files
if [ -f $HOME/.bashrc ]; then
source $HOME/.bashrc
fi

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@MarkGalloway
MarkGalloway / docker-compose.yml
Created April 3, 2018 17:48
How to prevent volume mount from copying specific paths
version: '2'
services:
api:
build: .
command: npm run watch
volumes:
- .:/code
- /code/node_modules # Protects this path on api from being mounted with node_modules from local machine
@MarkGalloway
MarkGalloway / marmoproj.settings.json
Created May 5, 2017 15:40
vscode: market mobile flow project settings
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/node_modules": true,
"build/**": true,
"flow-typed/**": true
@MarkGalloway
MarkGalloway / sublimeForReact.md
Last active April 28, 2017 16:54
Sublime setup for Javascript/React