I hereby claim:
- I am drdougphd on github.
- I am drdoug (https://keybase.io/drdoug) on keybase.
- I have a public key ASDvf1tLRDX94Aoo5GNdwBhw8Cgc-YnLJxeoJaNIBfwO_go
To claim this, I am signing this object:
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC+nuVUEk0Kiv1uYAy0Tv2OLSEe8HL1nnLrJef3Aj8PZmvhVkjMzIvz027pGwO4RHFpTEkgssIC6Rz2vn4600k34aYhgrWdbcLZdDiwUiGwP8U5LyCAQxYivYK9cR0ZJ1AZwmnX4vMye/iXcp2HvGy1O2wIasWZJNwFTmXp50mVFs0fF84WNQibKPJcDsceUM81NQfBTgSLDFPj9BVwS/OQei1bDYNnaAp6TM5LcT0/Z+4k91m862Wn+qMkrWN3kh+GUotf5EehVM3UdcAXgmwPOuxskpy7sLe7GL1N5bh3LmEIGdB4/HF0hbBRYfjl0IyNwEHkSHZc8eclIPODdoaReVk57rCjgiqHhJY1J8vkcnkn6y11PtdkhWExHWXuuLEkm6iuiraam7e94BxH5macznI1xn9obDjk4nOCRMsuNV8b2y3uqESsvYGjAkxRPUt0Z7bxkKTMGbwFgCTP7/ROU23Usdxh7sdPUGcZZx0Xok3UGG90G4I63CXkd6x6yPU= doug@jaculus |
I hereby claim:
To claim this, I am signing this object:
| import os | |
| import pathlib | |
| import pickle | |
| import logging | |
| import numbers | |
| logger = logging.getLogger(__name__) | |
| enabled = True |
| import logging | |
| import os | |
| import pathlib | |
| import colorlog | |
| default_level = 'DEBUG' | |
| def setup(verbosity: str = default_level): |
This is incomplete. Don't follow these directions.
Install rtorrent
root@omv:~# apt-get install rtorrent -y
Install PHP7 and other ruTorrent dependencies
root@omv:# echo "deb http://packages.dotdeb.org jessie all" >>/etc/apt/sources.list.d/dotdeb-org.list
root@omv:# echo "deb-src http://packages.dotdeb.org jessie all" >>/etc/apt/sources.list.d/dotdeb-org.list
| import bencoder | |
| import sys | |
| import os | |
| import termcolor | |
| def main(args): | |
| torrent_path = args[-1] | |
| if not os.path.isfile(torrent_path) or not torrent_path.endswith('.torrent'): | |
| print('Usage: python {} TORRENT_PATH.torrent'.format(args[0])) |
| ''' | |
| Copyright 2017 Doug McGeehan under the GPLv3. | |
| ''' | |
| import os | |
| def verified_absolute_path(path): | |
| abs_path = os.path.abspath(path) | |
| assert os.path.isdir(abs_path),\ |
| Hyvää Huomenta | |
| DJ SunMetal | |
| Stored in /var/www/HyvaaHuomenta | |
| ................................................................................ | |
| It's Quiet Hours | |
| DJ Undecided | |
| Stored in /var/www/ItsQuietHours | |
| ................................................................................ | |
| The Bat Signal | |
| DJ Batman |
| #!/usr/bin/env python3 | |
| # | |
| # Create pretty line headers, padded with dashes, equals, octothorpes, tildes, | |
| # and whatever else you want. | |
| # | |
| # Examples: | |
| # | |
| # ==========================: Hello, World! :========================== | |
| # | |
| # ~~~~~~~~~~~~~~~: Error Messages:~~~~~~~~~~~~~~~ |
| #!/usr/bin/env bash | |
| # | |
| # Automatically recover a backup to a destination drive. | |
| # NOTE: Must be run as root. | |
| # | |
| # DEPENDENCIES | |
| # | |
| # Lziprecover - for decompressing possibly corrupted lzip archives. | |
| # pv - for status of writing image to drive | |
| # smartmontools - for printing out drive info, used as safety measure to |