- Related Setup: https://gist.github.com/hofmannsven/6814278
- Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
- Interactive Beginners Tutorial: http://try.github.io/
- Git Cheatsheet by GitHub: https://services.github.com/on-demand/downloads/github-git-cheat-sheet/
This file contains 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
""" | |
https://github.com/fronzbot/blinkpy | |
When you attempt to log in to your Blink account youβll receive a one-time, six-digit code to verify it's you. This is sent to your mobile device as a text message (SMS). You can choose to receive this one-time passcode via the email address you have listed on your Blink account or on your phone as a text message (SMS). | |
https://support.blinkforhome.com/en_US/account-and-login/multiple-factor-security | |
Tap Settings at the bottom of your home screen. |
This file contains 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
import numpy as np | |
from py3j.system import system as m_system | |
""" | |
https://stackoverflow.com/questions/45580975/opencv-handling-arrow-keys-with-waitkey-function/45584477 | |
https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes | |
in main: | |
cv2_key = cv2.waitKeyEx( 1 ) & m_cv2.Key.mask |
This file contains 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
('AD', 42.546245, 1.601554, 'Andorra'), | |
('AE', 23.424076, 53.847818, 'United Arab Emirates'), | |
('AF', 33.93911, 67.709953, 'Afghanistan'), | |
('AG', 17.060816, -61.796428, 'Antigua and Barbuda'), | |
('AI', 18.220554, -63.068615, 'Anguilla'), | |
('AL', 41.153332, 20.168331, 'Albania'), | |
('AM', 40.069099, 45.038189, 'Armenia'), | |
('AN', 12.226079, -69.060087, 'Netherlands Antilles'), | |
('AO', -11.202692, 17.873887, 'Angola'), | |
('AQ', -75.250973, -0.071389, 'Antarctica'), |
This file contains 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
#!/bin/bash | |
#----------------------------------------------------------------------------- | |
# | |
# βββββββ βββ | |
# ββββββββ βββ | |
# βββββββ βββ | |
# βββββββββ βββ | |
# ββββββββββββββββ | |
# βββββββ ββββββ |
This file contains 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
@ECHO OFF | |
REM convert a series of .odt first into .docx and then into .pdf | |
REM needs conversion to doc first, otherwise there are faulty expression errors | |
REM https://askubuntu.com/questions/60778/how-can-i-convert-an-odt-file-to-a-pdf | |
:: https://stackoverflow.com/questions/22211104/batch-file-will-not-run-as-administrator | |
echo(%cd% | |
pushd %~dp0 | |
echo(%cd% |