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.
View transcript
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 |
View tubewhack.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 | |
""" | |
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 |
View sil-aspell-highlighter.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 | |
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 |
View github-org-unsubscribe.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 | |
""" | |
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 |
View linuxtree.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 | |
import requests | |
try: | |
from requests_cache import CachedSession as MySession | |
except: | |
MySession = requests.Session | |
def unstring(s): |
View million_sellers_by_country.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 | |
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/ |
View README.md
This is a SCRIPT-8 cassette.
View example.js
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
const getSvgNamesForNodes = () => { | |
// this is guesswork. When Figma has two nodes with the same name (say, "Union"), | |
// it serialises them into SVG with names "Union" and "Union_2", but it's not | |
// clear which one becomes "Union" and which "Union_2". It is theorised that this | |
// is done in the same order that .findAll returns, so we make use of that. | |
// Figma might decide to change this at any time, of course. It would be much | |
// nicer if there were an SVG export option which also serialised getPluginData() | |
// data as data-* attributes in the output SVG, but there isn't, yet. | |
let names = {}; | |
let nameIndices = {}; |
View markov-blog.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
import numpy as np | |
import glob | |
import markdown | |
import re | |
from bs4 import BeautifulSoup | |
def make_pairs(corpus): | |
for i in range(len(corpus)-1): | |
yield (corpus[i], corpus[i+1]) |
NewerOlder