Skip to content

Instantly share code, notes, and snippets.

View dhcav's full-sized avatar

Damian Cavanagh dhcav

  • Compnow
  • Melbourne, VIC, Australia
  • 08:37 (UTC +10:00)
View GitHub Profile
@0xdevalias
0xdevalias / decompile-apple-shortcuts.md
Last active July 30, 2025 20:38
A few notes on decompiling Apple Shortcuts workflows into their raw XML 'source code'.
@sgraaf
sgraaf / download_wiki_dump.sh
Last active October 26, 2022 04:02
Simple bash script to download the latest Wikipedia dump in the chosen language. Adapted from: https://github.com/facebookresearch/XLM/blob/master/get-data-wiki.sh
#!/bin/sh
set -e
LG=$1
WIKI_DUMP_NAME=${LG}wiki-latest-pages-articles.xml.bz2
WIKI_DUMP_DOWNLOAD_URL=https://dumps.wikimedia.org/${LG}wiki/latest/$WIKI_DUMP_NAME
# download latest Wikipedia dump in chosen language
echo "Downloading the latest $LG-language Wikipedia dump from $WIKI_DUMP_DOWNLOAD_URL..."
wget -c $WIKI_DUMP_DOWNLOAD_URL