System: Debian/Ubuntu/Fedora. Might work for others as well.
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go directory by:
| // ==UserScript== | |
| // @name Fade Twitter | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.3 | |
| // @description fades twitter over time and by scrolling to protect me from myself | |
| // @author You | |
| // @match https://twitter.com/* | |
| // @grant none | |
| // ==/UserScript== |
| SELECT table, | |
| formatReadableSize(sum(bytes)) as size, | |
| min(min_date) as min_date, | |
| max(max_date) as max_date | |
| FROM system.parts | |
| WHERE active | |
| GROUP BY table |
System: Debian/Ubuntu/Fedora. Might work for others as well.
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go directory by:
| from operator import itemgetter | |
| from PIL import Image, ImageDraw, ImageFont | |
| # Make a lowercase + uppercase alphabet. | |
| alphabet = 'abcdefghijklmnopqrstuvwxyz' | |
| alphabet += ''.join(map(str.upper, alphabet)) | |
| # We'll use Helvetica in big type. |