Skip to content

Instantly share code, notes, and snippets.

View colin-axner's full-sized avatar
🪴

colin axnér colin-axner

🪴
View GitHub Profile

0x30575c0f42065c32131d0bb9e0794d2083e358c01fca4c23f9d8f5b7d1f27b61

@colin-axner
colin-axner / flactags.sh
Last active April 16, 2020 21:16 — forked from sillage/flactags.sh
flac tags with metaflac
#!/bin/bash
# file format: ARTIST/ALBUM/01-TITLE.flac
# name of file for the cover art
read -p "ART " ART
read -p "GENRE? " GENRE
read -p "TOTAL TRACKS? " TRACKTOTAL
read -p "YEAR? " -n 4 YEAR
ALBUM="${PWD##*/}" # ALBUM=$(basename "${PWD}")
ARTIST=$(echo $(cd .. && echo "${PWD##*/}"))
@colin-axner
colin-axner / gaia_upgrade.sh
Created December 19, 2018 07:43 — forked from kwunyeung/gaia_upgrade.sh
script to upgrade the Cosmos gaia testnet
#!/bin/bash
# Upgrade Cosmos SDK and restart gaiad
POSITIONAL=()
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
-t|--tag)
@colin-axner
colin-axner / gaia_install.sh
Last active January 22, 2019 00:52 — forked from kwunyeung/gaia_install.sh
bash script for installing go and gaia testnet on Ubuntu
#!/bin/bash
# Upgrade the system and install go
sudo apt update
sudo apt upgrade -y
sudo apt install gcc git make -y
sudo snap install --classic go
sudo mkdir -p /opt/go/bin
# Export environment variables