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
| # Steps needed to build and install pytorch (version 1.11.0a0+gitbe281fc) | |
| # on a Raspberry Pi 3 Model B Rev 1.2, running Raspbian 10 (Buster) | |
| # Linux malpi 5.10.63-v7+ #1459 SMP Wed Oct 6 16:41:10 BST 2021 armv7l GNU/Linux | |
| export NO_CUDA=1 | |
| export NO_DISTRIBUTED=1 | |
| export NO_MKLDNN=1 | |
| export NO_NNPACK=1 | |
| export NO_QNNPACK=1 | |
| export NO_XNNPACK=1 |
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
| """ Prototype of a simple way of keeping notes for starred Github repos. | |
| """ | |
| import requests | |
| import json | |
| import argparse | |
| import os | |
| import time | |
| from collections import defaultdict | |
| def fetchJson( user ): |
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
| #python -c "import sys; print( '{}'.format( sys.stdin.read().title() ) )" | |
| #or | |
| alias title_case 'python -c "import sys; print( sys.stdin.read().title() )"' | |
| # It seems python does the right thing by ignoring formatting commands in the print statement |