We can make this file beautiful and searchable if this error is corrected: It looks like row 5 should actually have 1 column, instead of 2 in line 4.
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
# A table of sample names for Pathfinder player-characters. | |
# Sources: | |
# - wg: Inner Sea World Guide (2011) | |
# - a1: Archives of Nethys for Pathfinder 1e (August 2024) | |
# - a2: Archives of Nethys for Pathfinder 2e (August 2024), favoring | |
# premaster over remaster | |
# Generally, I tried to pick the source that had the most names for | |
# each race, without mixing sources per race. | |
source,race,ethnicity,type,subtype,name | |
wg,human,Azlanti,f,,Aliandara |
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 | |
'Zephyr Breeze, a Ponyvania cheater.' | |
# This program is in the public domain. | |
# It's tested on the Windows build of Ponyvania v2.0.2. | |
# Call it with the option `--help` for usage. | |
import re, subprocess | |
from pathlib import Path | |
from tempfile import TemporaryDirectory |
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
# UPDATE: Instead of using this script, you should probably | |
# use http://web.archive.org/web/2021id_/https://modis.ornl.gov/files/modis_sin.kmz | |
#!/usr/bin/env python3 | |
""" | |
Draw the shapes of tiles used by Moderate Resolution Imaging | |
Spectroradiometer (MODIS) satellite products. The output is a TSV file | |
with the shapes as well-known text (WKT) that can be read into QGIS. | |
""" |
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 | |
# (Requires Python 3.8 or later.) | |
# | |
# This script edits a JAR distribution of Remnants of the Precursors | |
# to rename the game's races. Edit `replacements` below to set | |
# the new names, or comment out a line to leave that race alone. | |
# Only English names are changed. | |
# | |
# This script was tested with RotP version 1.04. | |
# |
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
Jul 31 08:42:06 Frost kernel: Linux version 5.15.0-43-generic (buildd@lcy02-amd64-076) (gcc (Ubuntu 11.2.0-19ubuntu1) 11.2.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #46-Ubuntu SMP Tue Jul 12 10:30:17 UTC 2022 (Ubuntu 5.15.0-43.46-generic 5.15.39) | |
Jul 31 08:42:06 Frost kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-43-generic root=UUID=2634c2da-e3dc-4f9b-9a95-db104146b26f ro quiet splash vt.handoff=7 | |
Jul 31 08:42:06 Frost kernel: KERNEL supported cpus: | |
Jul 31 08:42:06 Frost kernel: Intel GenuineIntel | |
Jul 31 08:42:06 Frost kernel: AMD AuthenticAMD | |
Jul 31 08:42:06 Frost kernel: Hygon HygonGenuine | |
Jul 31 08:42:06 Frost kernel: Centaur CentaurHauls | |
Jul 31 08:42:06 Frost kernel: zhaoxin Shanghai | |
Jul 31 08:42:06 Frost kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' | |
Jul 31 08:42:06 Frost kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' |
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 | |
# (Requires Python 3.8 or later.) | |
# | |
# Remove the license check from the Thunderbird add-on SmartTemplate4: | |
# https://github.com/RealRaven2000/SmartTemplate4 | |
# This script is up to date as of SmartTemplate4 version 3.7. | |
# | |
# Usage: python3 smarttemplate4_crack.py INPUT_XPI_PATH OUTPUT_PATH | |
import sys, re |
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
; Compare a debug weather log generated by Cataclysm DDA to real | |
; data from the NOAA dataset Local Climatological Data (LCD). | |
; The data is downloaded automatically. | |
; | |
; Dependencies: | |
; - pandas | |
; - matplotlib | |
; - metpy | |
; - https://github.com/Kodiologist/Kodhy |
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 | |
""" | |
A simple implementation of the Madey Upy Namey Emulator (MUNE; | |
https://homebrewery.naturalcrit.com/share/rkmo0t9k4Q ). | |
Usage examples: | |
$ python3 -i mune.py |
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 | |
""" | |
Embed images into an HTML document | |
""" | |
import base64, mimetypes, re, sys | |
## from https://gist.github.com/jsocol/1089733 | |
def img_to_data(path): | |
"""Convert a file (specified by a path) into a data URI.""" |
NewerOlder