Note that this is a very quick thing. In particular, it only handles two levels of documentation in the manual, and it doesn't include images. Both would need to be fixed for this to actually be useful; however, this was entirely sufficient to drop a copy onto my phone where I could read it while my stupid mobile operator pretends to fix my network, sigh, etc.
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
BEGIN:VCALENDAR | |
VERSION:2.0 | |
PRODID:-//Stuart Hacky Script For Ian//kryogenix.org// | |
BEGIN:VEVENT | |
DTEND;TZID="UTC+02:00";VALUE=DATE-TIME:20240527T093000 | |
DTEND;TZID="UTC+02:00";VALUE=DATE-TIME:20240527T093000 | |
DESCRIPTION:Die TINCON Berlin startet! Und sie wird größer und läuft l | |
änger als je zuvor – wie aufregend!!\nTessniem Kadiri\, | |
Prince Ofori\n/en/node/6194 | |
LOCATION:Stage 5 |
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
from atproto.firehose import FirehoseSubscribeReposClient, parse_subscribe_repos_message | |
import sys | |
from atproto import CAR, models | |
from atproto.cbor import decode_dag, decode_dag_multi | |
from atproto.xrpc_client.models.utils import get_or_create | |
import json | |
class JSONExtra(json.JSONEncoder): | |
"""raw objects sometimes contain CID() objects, which | |
seem to be references to something elsewhere in bluesky. |
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 | |
import requests | |
import requests_cache | |
import json | |
requests_cache.install_cache('masto_cache') | |
MASTODON_USERNAME = "[email protected]" | |
def fetch(endpoint): | |
url = f"https://{server}/api/v1/accounts/{account_id}/{endpoint}" |
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
# this file is $a, $b, expected answer for imul($a, $b) | |
$ cat tests/imul.txt | |
2,4,8 | |
1,1,1 | |
10,10,100 | |
-1, -2, 2 | |
1, 2, 2 | |
-1, 2, -2 | |
1, -2, -2 | |
-0, 0, 0 |
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 | |
""" | |
Find "tubewhacks"; words or phrases whose letters appear in all but a single tube station's name | |
https://www.reload.me.uk/tubewhack/ | |
Yeah, I'm just here to ruin the fun of thinking them up, by applying code to the problem. Sorry. | |
""" | |
import os | |
import textwrap |
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 | |
import sys, subprocess | |
HIGHLIGHT_BEFORE = "👉" | |
HIGHLIGHT_AFTER = "👈" # if you just want a highlight before, make this "" | |
cmd = ["aspell", "pipe"] | |
# add any extra options given to our command to the aspell command | |
if len(sys.argv) > 2: | |
cmd += sys.argv[1:] | |
for line in sys.stdin.readlines(): | |
# feed the line to aspell; will throw obvious error on failure |
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 | |
""" | |
Github won't let you say "don't subscribe me to new repos" for | |
one specific org only. You can either turn off autosubscribe | |
for everything, or for nothing. | |
This is extremely annoying if you're added to a very busy | |
new organisation, most of which you don't care about. This is | |
because you don't want to turn off all autosubscriptions -- if your | |
friend adds you to her new repo as a committer, you still want |
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 | |
import requests | |
try: | |
from requests_cache import CachedSession as MySession | |
except: | |
MySession = requests.Session | |
def unstring(s): |
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 | |
import requests | |
import requests_cache | |
import urllib.parse | |
import os.path | |
requests_cache.install_cache(os.path.join(os.path.dirname(__file__), 'million_sellers')) | |
#https://www.officialcharts.com/chart-news/the-best-selling-singles-of-all-time-on-the-official-uk-chart__21298/ |
NewerOlder