Skip to content

Instantly share code, notes, and snippets.

View Xorboo's full-sized avatar

Kirill Korepanov Xorboo

View GitHub Profile
@Xorboo
Xorboo / yt-remove-overlay.js
Last active October 21, 2023 17:36
Remove annoying panel covering up the video when paused
// ==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==
@Xorboo
Xorboo / yt-embed.js
Last active October 21, 2023 17:36
Open Youtube video in embed mode to bypass ads
// ==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==
@Xorboo
Xorboo / kp_checker.py
Last active March 29, 2020 00:20
Script to check residence permit decision state on https://klient.gdansk.uw.gov.pl and notify via telegram bot. Barely works, but does its thing
# -*- 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
@Xorboo
Xorboo / paint_tracker.js
Created March 6, 2020 04:21
Script for Google Sheets to track available miniature paints. Extremely unstable and requires specific setup but ‾\_(ツ)_/‾
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';