This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# commands for OpenBSD: | |
# ifconfig iwn0 scan | |
# ifconfig iwn0 nwid eduroam chan x bssid xx:xx:xx:xx:xx:xx wpa wpaakms 802.1x up | |
# wpa_supplicant -D openbsd -B -i iwn0 -c /etc/wpa_supplicant.conf | |
# dhclient iwn0 | |
ctrl_interface=/var/run/wpa_supplicant | |
ctrl_interface_group=wheel | |
network={ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# python3 sqlite3 cheat | |
# [0] https://docs.python.org/3/library/sqlite3.html | |
import sqlite3 | |
# create a Connection | |
con = sqlite3.connect('users.db') | |
# create a Cursor | |
c = con.cursor() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I reviewed foo as checked into bar. This shouldn't be | |
considered a full audit but rather a quick gauge of maintainability. ANY | |
OTHER NOTES REGARDING THE NATURE OF THE REVIEW ITSELF. | |
foo is a FILL IN DESCRIPTION HERE TO DEMONSTRATE YOU HAVE REVIEWED THE | |
PACKAGE IN ENOUGH DETAIL TO UNDERSTAND WHAT IT IS AND HOW IT WORKS. | |
FOR EACH OF THE FOLLOWING ADD RELEVANT DETAILS AS NEEDED SO THAT NONE ARE | |
QUESTION MARKS ANYMORE AND REMOVE THESE ALL-CAPS HINTS. |