Skip to content

Instantly share code, notes, and snippets.

View weeping-somnambulist's full-sized avatar

Sean Brady weeping-somnambulist

  • Haiku Business Engineering
View GitHub Profile
@weeping-somnambulist
weeping-somnambulist / code-rust.sh
Last active December 11, 2020 03:39
Simple BASH script to start a vscode container
#!/usr/bin/env bash
set -o errexit
set -o pipefail
# Enable interruption signal handling
trap - INT TERM
# For debug mode change this to "TRUE"
DEBUG="FALSE"