Skip to content

Instantly share code, notes, and snippets.

View comradequinn's full-sized avatar

comradequinn

  • Staffordshire, UK
View GitHub Profile
@comradequinn
comradequinn / goto.sh
Last active March 1, 2024 09:51
Script to Switch Between Active Versions of Go
#! /bin/bash
go_dir="/usr/local/go"
version=${1}
version_dir="#unset#"
dl_url="#unset#"
gos_dir="/usr/local/gos"
tar_file=".temp-go.tar.gz"
temp_dir=".temp"
arch=linux-amd64
@fnky
fnky / ANSI.md
Last active July 22, 2024 12:03
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27