This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Joystick Reaction Test</title> | |
<style> | |
html, body { | |
margin: 0; | |
padding: 0; | |
height: 100%; |
This file contains hidden or 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 Trakt.tv quick torrent search | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Quickly open torrent search for the episode. Only tested on [Progress] tab. | |
// @author Xorboo | |
// @match https://trakt.tv/* | |
// @match https://www.trakt.tv/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 Youtube remove "More Videos" | |
// @description Remove annoying panel covering up the video when paused | |
// @author Xorboo | |
// @namespace https://www.youtube.com | |
// @version 1.1 | |
// @match *://www.youtube.com/* | |
// @match *://youtube.com/* | |
// ==/UserScript== |
This file contains hidden or 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 Youtube embed button | |
// @description Fuck ads | |
// @author Xorboo | |
// @namespace https://www.youtube.com | |
// @version 1.1 | |
// @match *://www.youtube.com/* | |
// @match *://youtube.com/* | |
// ==/UserScript== |
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
import os | |
import time | |
import requests | |
from selenium import webdriver | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.common.by import By |
This file contains hidden or 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
const SheetNames = { colorsData: 'Colors', availableColors: 'Available' }; | |
const NewColorCell = 'C2'; | |
const PaintTypes = { 'Base': 'B', 'Contrast': 'E', 'Layer': 'H', 'Shade': 'K', 'Dry': 'N', 'Texture': 'Q', 'Technical': 'T', 'Unknown': 'W' }; | |
const FallbackType = 'Unknown'; | |
const CleanColumns = { min: 'B', max: 'X' }; | |
const ListRows = { start: 5, end: 101 }; | |
const EmptyColor = '#FFFFFF'; | |
const FallbackColor = '#FFFFFF'; |