Skip to content

Instantly share code, notes, and snippets.

View binitshah's full-sized avatar

Binit Shah binitshah

View GitHub Profile
@justbuchanan
justbuchanan / GTwifi
Last active March 26, 2018 12:53
Arch Linux netctl config for GTwifi at Georgia Tech
# This netctl profile is for connecting to Georgia Tech's GTwifi network
# Usage:
# 1. Copy/download it to /etc/netctl/GTwifi
# 2. Set the 'identity' and 'password' fields appropriately
# 3. Set file permissions and ownership:
# chown root:root /etc/netctl/GTwifi
# chmod 0600 /etc/netctl/GTwifi
Description='GTwifi'
Interface=wlan0
@okaufmann
okaufmann / README.md
Created December 18, 2019 18:27
Fix `warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)` error on Raspberry PI

Run the following:

echo "LC_ALL=en_US.UTF-8" | sudo tee -a /etc/environment > /dev/null
echo "en_US.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen > /dev/null
echo "LANG=en_US.UTF-8" | sudo tee /etc/locale.conf > /dev/null
sudo locale-gen en_US.UTF-8