Skip to content

Instantly share code, notes, and snippets.

View scrool's full-sized avatar

Pavol Babinčák‏ scrool

View GitHub Profile
@scrool
scrool / xled-release-checklist.md
Last active January 2, 2018 20:29 — forked from audreyfeldroy/pypi-release-checklist.md
Xled Release Checklist
  • Update HISTORY.rst
  • Commit the changes:
git add HISTORY.rst
git commit -m "Changelog for version 0.1.1"
  • Update version number (can also be minor or major)
bumpversion patch
@scrool
scrool / download_zeal_user_docsets.py
Last active December 31, 2017 11:14 — forked from crmne/download_zeal_user_docsets.py
A solution to the lack of UI for Dash's user docsets in Zeal. Uses Python 3 and easygui (pip3 install easygui)
import os
import json
import tarfile
import urllib.request
import easygui
import configparser
user_docsets_url = 'https://dashes-to-dashes.herokuapp.com/docsets/contrib'
app_title = 'Download Zeal user docsets'