Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python3
# Requires pypinyin, can be installed with pip: https://github.com/mozillazg/python-pinyin
# Thanks to XerCis on CSDN: https://blog.csdn.net/lly1122334/article/details/105380586
# Example: psort file-with-Chinese-words-on-each-line.txt
import sys
from pypinyin import pinyin, Style
from itertools import chain
@kmlawson
kmlawson / zotero-collection-merge.sh
Created March 16, 2021 17:46
Takes a set of exported bibtex collections from Zotero using Better BibTeX plugin, converts them to bibliography entries in markdown format with sub-headings for each collection.
#!/bin/sh
# Can be used to create a merged bibliography from a set of exported collectiions
# list files by name length:
MAINCOLLECTION=`ls *.bib | perl -e 'print sort { length($a) <=> length($b) } <>' | head -n 1`
MAINROOT=$(echo "$MAINCOLLECTION" | cut -f 1 -d '.')
rm -f "$MAINCOLLECTION Bibliography.md" # In case we already created one before
for FILE in *.bib
@kmlawson
kmlawson / CSL JSON with Tags.js
Last active October 27, 2023 14:29
Zotero Export Translator CSL JSON with Tags
{
"translatorID": "955a4265-fa78-4410-b937-d3e57b799ba6",
"translatorType": 3,
"label": "JSON with Tags",
"creator": "Simon Korblith",
"target": "json",
"minVersion": "3.0",
"maxVersion": null,
"priority": 100,
"inRepository": true,