Skip to content

Instantly share code, notes, and snippets.

View tfolbrecht's full-sized avatar
🤠
New boot goofin

tfolbrecht

🤠
New boot goofin
View GitHub Profile
@tfolbrecht
tfolbrecht / git-understanding-qs.md
Last active January 24, 2020 21:06 — forked from githubteacher/git-understanding-qs.md
Questions to check your understanding of some Git and GitHub concepts.

Beginner: Check for understanding

  1. (multiple answer) Git is:

    • a. A version control system
    • b. Centralized
    • c. Distributed
    • d. The same as GitHub
  2. (T/F) Git and GitHub are the same thing.

  • False
@tfolbrecht
tfolbrecht / blur_faces.py
Created June 10, 2019 04:28 — forked from mcdickenson/blur_faces.py
Blur faces in imagery with Google Cloud Vision
import cv2
import io
import json
import numpy as np
import os
from google.cloud import vision
from PIL import Image, ImageDraw
from StringIO import StringIO
@tfolbrecht
tfolbrecht / wpa2-wifi-connect.sh
Created November 13, 2018 10:21 — forked from rjcorwin/wpa2-wifi-connect.sh
A simple `wifi` command for Debian that will connect you to a WPA2 WiFi network
#!/bin/sh
## A simple `wifi` command for Debian that will connect you to a WPA2 WiFi network
## usage:
## sudo ./wpa2-wifi-connect.sh <ssid> <pass>
ifdown wlan0
# build the interfaces file that will point to the file that holds our configuration
rm /etc/network/interfaces
touch /etc/network/interfaces