Skip to content

Instantly share code, notes, and snippets.

View CCint3's full-sized avatar
🎯
Focusing

CCint3 CCint3

🎯
Focusing
View GitHub Profile
/////////////////////////////////////////////////////
// Customized for Lefthanded Keyboard Alignment (QWEASZ)
// Simply place this Customkeys.txt file into your WC3
// folder usually under Documents or Program Files then
// in the game options Enable Custom Keyboard Shortcuts
///////////////////////////////////////////////////////
/////////////////////////////////////////////////////////
// This Custom Keys setup aligns all races units, heroes,
@steinwaywhw
steinwaywhw / One Liner to Download the Latest Release from Github Repo.md
Last active July 2, 2024 16:16
One Liner to Download the Latest Release from Github Repo
  • Use curl to get the JSON response for the latest release
  • Use grep to find the line containing file URL
  • Use cut and tr to extract the URL
  • Use wget to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \