Skip to content

Instantly share code, notes, and snippets.

View muokicaleb's full-sized avatar
🎯
Focusing

Muoki Caleb muokicaleb

🎯
Focusing
View GitHub Profile
@muokicaleb
muokicaleb / wpa_supplicant.conf
Created December 22, 2021 09:10 — forked from AlexLynd/wpa_supplicant.conf
Raspberry Pi headless WiFi configuration file
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=US
network={
ssid="network"
psk="password"
key_mgmt=WPA-PSK
}
@muokicaleb
muokicaleb / tweet_dumper.py
Created November 2, 2020 08:42 — forked from yanofsky/LICENSE
A script to download all of a user's tweets into a csv
#!/usr/bin/env python
# encoding: utf-8
import tweepy #https://github.com/tweepy/tweepy
import csv
#Twitter API credentials
consumer_key = ""
consumer_secret = ""
access_key = ""
@muokicaleb
muokicaleb / nginx.conf
Created August 7, 2020 13:16 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream