This file contains hidden or 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
| # requires: | |
| # pip install openpyxl repro-zipfile | |
| from pathlib import Path | |
| import openpyxl | |
| from repro_zipfile import ReproducibleZipFile | |
| def save_reproducible_excel(path: Path, workbook: openpyxl.Workbook) -> None: | |
| """save a reproducible/deterministic excel file |
This file contains hidden or 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
| # Requires Python 3.12+, IPython, rich | |
| import datetime | |
| import hashlib | |
| import importlib | |
| import inspect | |
| import json | |
| import logging | |
| import os | |
| import pkgutil |
This file contains hidden or 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
| # serve your offline website static files retrieved by: | |
| # wget --mirror --convert-links --adjust-extension --page-requisites --no-parent | |
| # usage: | |
| # python3 wgetserver.py [-p 8080] | |
| import http.server | |
| import os | |
| import argparse | |
| class CustomHTTPRequestHandler(http.server.SimpleHTTPRequestHandler): |
This file contains hidden or 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 | |
| """ | |
| Joplin Note Creator | |
| A command line tool to create notes in Joplin. Features: | |
| - Create notes from stdin or clipboard | |
| - Specify note title | |
| - Create notes in specific folders (supports partial folder name matching) | |
| Usage: |
This file contains hidden or 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
| STATIONNAME:"87600=北京文艺广播,88700=CRI HitFM,90000=央广音乐之声,90500=CRI环球资讯,91500=CRI EasyFM,94500=北京新闻广播,96600=央广经济之声,97400=北京音乐广播,99600=央广中国交通广播,100600=北京京津冀之声,101800=CNR经典音乐广播,103900=北京交通广播,104400=央广老年之声,106100=央广中国之声,106600=央广文艺之声,102500=北京体育广播,88100=河北音乐广播,88300=河北农民广播,90800=河北经济广播电台,91000=河北生活广播,91100=天津生活台,91900=河北交通广播,92000=天津滨海台,92800=延庆人民广播电台,92900=顺义人民广播电台,93800=承德人民广播电台,94800=河北文艺广播,95100=廊房人民广播电台,97200=天津新闻,99300=河北交通广播,100300=廊房交通广播电台,105200=河北人民广播电台,107300=北京城市广播副中心之声" |
OlderNewer