Skip to content

Instantly share code, notes, and snippets.

View paleite's full-sized avatar
:fishsticks:
TS ❤️

Patrick Aleite paleite

:fishsticks:
TS ❤️
View GitHub Profile
@paleite
paleite / aseprite_install.sh
Last active April 9, 2025 09:26 — forked from ryancat/aseprite_install.sh
Download and install aseprite
#!/bin/bash
# Must have git, homebrew, and xcode to install
# Check for git
if ! command -v git &> /dev/null
then
echo "git could not be found, please install git before proceeding."
exit
fi
@paleite
paleite / golang_on_rpi.md
Created July 19, 2017 11:18 — forked from konradko/golang_on_rpi.md
Install Golang 1.7 on Raspberry Pi
wget https://storage.googleapis.com/golang/go1.7.linux-armv6l.tar.gz
tar -C /usr/local -xzf go1.7.linux-armv6l.tar.gz
export PATH=$PATH:/usr/local/go/bin