Skip to content

Instantly share code, notes, and snippets.

View ThePutzy's full-sized avatar

Steven Wroblewski ThePutzy

View GitHub Profile
@ThePutzy
ThePutzy / install_go_pi.sh
Last active October 6, 2021 09:22 — forked from pcgeek86/install_go_pi.sh
Install Go Lang on Raspberry Pi 3 B+
cd $HOME
FileName='go1.17.1.linux-armv6l.tar.gz'
wget https://dl.google.com/go/$FileName
sudo tar -C /usr/local -xvf $FileName
mkdir $HOME/go
cat >> ~/.bashrc << 'EOF'
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=auto
export PATH=/usr/local/go/bin:$PATH:$GOPATH/bin
@ThePutzy
ThePutzy / .bash_profile
Created November 12, 2018 11:14 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management