This serves as a quick reference and showcase of GitHub Flavored Markdown. For more complete info, see John Gruber's original spec and the Github-flavored Markdown info page.
The user experience of Python on a minimal Debian or Ubuntu installation is bad. Core features like virtual environments, pip bootstrapping, and the ssl module are either missing or do not work like designed and documented. Some Python core developers including me are worried and consider Debian/Ubuntu's packaging harmful for Python's reputation and branding. Users don't get what they expect.
The problems can be easily reproduced with official Debian and Ubuntu containers in Docker or Podman. Debian Stable (Debian 10 Buster) comes with Python 3.7.3. Ubuntu Focal (20.04 LTS) has Python 3.8.5.
// ==UserScript== | |
// @name Python glossary permalinks | |
// @version 1.0.1 | |
// @description Adds clickable link anchors to the python glossary | |
// @match *://docs.python.org/*/glossary.html | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; |
// ==UserScript== | |
// @name StackOverflow auto documentation links | |
// @description Converts text enclosed in quotation marks like ?list.append()? to a link to the relevant documentation | |
// @version 1.3.3 | |
// @author Paul Pinterits | |
// @include *://*.stackexchange.com/questions/* | |
// @include *://meta.serverfault.com/questions/* | |
// @include *://meta.stackoverflow.com/questions/* | |
// @include *://meta.superuser.com/questions/* | |
// @include *://serverfault.com/questions/* |
[ Update 2020-05-31: I won't be maintaining this page or responding to comments anymore (except for perhaps a few exceptional occasions). ]
Most of the terminal emulators auto-detect when a URL appears onscreen and allow to conveniently open them (e.g. via Ctrl+click or Cmd+click, or the right click menu).
It was, however, not possible until now for arbitrary text to point to URLs, just as on webpages.
// ==UserScript== | |
// @name Remove FB Sponsored Posts | |
// @namespace https://gist.github.com/CricketofLocusts/6109689af6c78b5e2ee23258970eaffa.js | |
// @description A Tampermonkey script to remove Sponsored posts from your newsfeed on Facebook. | |
// @version 1.21 | |
// @author Cricket | |
// @include https://www.facebook.com/?ref=tn_tnmn | |
// @include https://www.facebook.com | |
// @require http://code.jquery.com/jquery-latest.min.js | |
// ==/UserScript== |
# Set inotify watch limit high enough for IntelliJ IDEA (PhpStorm, PyCharm, RubyMine, WebStorm). | |
# Create this file as /etc/sysctl.d/60-jetbrains.conf (Debian, Ubuntu), and | |
# run `sudo service procps start` or reboot. | |
# Source: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit | |
# | |
# More information resources: | |
# -$ man inotify # manpage | |
# -$ man sysctl.conf # manpage | |
# -$ cat /proc/sys/fs/inotify/max_user_watches # print current value in use |