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
#!/usr/bin/env python3 | |
""" | |
OCR an image using Google Vision API. | |
Requires: | |
- google-cloud-vision = "^3.8.0" | |
usage: googleocr.py [-h] -i INPUT_FILE [-o OUTPUT_FILE] | |
Google Vision OCR script. You'll need an API key from Google Console. |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# need the following for PyQt linting | |
# pylint: disable=c-extension-no-member | |
"""bulk_export_pdf.py | |
Bulk convert a selection of Scribus files to PDF with the built-in | |
export preferences. This script must be run from inside scribus with | |
the Scripts->Execute feature. |
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/env python3 | |
""" | |
Convert a string from stdin into a thunderbird-compatible URL body. | |
Run this as follows: | |
thunderbird -compose "to='[email protected]',body="'<output here>'"" | |
Public domain, Bader Zaidan, 2022 |
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/env bash | |
set -euo pipefail | |
EXIT_SUCCESS=0 | |
EXIT_FAILURE=1 | |
## insert functions here... | |
print_help() { | |
echo "Commands:" |
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
linters: with_defaults(line_length_linter(120), | |
object_name_linter("lowercase"), | |
cyclocomp_linter(64), | |
semicolon_terminator_linter("compound"), | |
no_tab_linter, | |
assignment_linter) |
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
# CC0 Bader Zaidan, 2020 | |
# Call via: $ python get_coordinates.py CITY,COUNTRY | |
import geopy | |
import sys | |
from geopy.geocoders import Nominatim | |
geolocator = Nominatim(user_agent="ChangeMe") | |
coord = geolocator.geocode(sys.argv[1]) |