-
(multiple answer) Git is:
- a. A version control system
- b. Centralized
- c. Distributed
- d. The same as GitHub
-
(T/F) Git and GitHub are the same thing.
- False
| 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 |
| #!/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 |