This file has been truncated, but you can view the full file.
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Technicolor -> Vantiva | |
// @run-at document-start | |
// @namespace http://tampermonkey.net/ | |
// @version 0.5 | |
// @description Replace technicolor.com with vantiva.com in URLs so that old links work without manual intervention. | |
// @author You | |
// @match https://*.technicolor.com/* | |
// @icon https://github.com/frakman1/icons/raw/main/rainbow-convert.png | |
// @grant none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/main/binary-i386/ | |
# deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/restricted/binary-i386/ | |
# deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ precise main restricted | |
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
# newer versions of the distribution. | |
deb http://old-releases.ubuntu.com/ubuntu precise main restricted | |
deb-src http://old-releases.ubuntu.com/ubuntu precise main restricted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Amazon URL Cleaner | |
// @description Show the shortest possible URL for Amazon items. | |
// @namespace http://tampermonkey.net/ | |
// @match https://www.amazon.com/dp/* | |
// @match https://www.amazon.com/*/dp/* | |
// @match https://www.amazon.com/gp/product/* | |
// @match https://www.amazon.com/*/ASIN/* | |
// @run-at document-start | |
// @version 0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Python screenshot tool (fullscreen/area selection) | |
# Ported from https://gist.github.com/initbrain/6628609 | |
# Tested on Windows 7 64bit using PyQt5 and python 3.7 | |
# area selection NOT working | |
import sys | |
from PyQt5 import QtCore, QtGui, QtWidgets | |
from subprocess import getoutput |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Python screenshot tool (fullscreen/area selection) | |
# Tested on: | |
# Lubuntu 13.04 x86_64 | |
# Gentoo 4.1.7-hardened-r1 x86_64 | |
import sys | |
from PyQt5 import QtCore, QtGui, QtWidgets | |
from subprocess import getoutput |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Python screenshot tool (fullscreen/area selection) | |
# Tested on: | |
# Lubuntu 13.04 x86_64 | |
# Gentoo 4.1.7-hardened-r1 x86_64 | |
import sys | |
from PyQt5 import QtCore, QtGui, QtWidgets | |
from subprocess import getoutput |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# coding: utf-8 | |
import sys | |
import re | |
import subprocess | |
import datetime | |
class bcolors: | |
HEADER = '\033[95m' |