Skip to content

Instantly share code, notes, and snippets.

View codiac-killer's full-sized avatar

codiac-killer

View GitHub Profile
// ==UserScript==
// @name Auto Skip YouTube Ads
// @version 1.0.2
// @description Speed up and skip YouTube ads automatically
// @author codiac-killer
// @match *://*.youtube.com/*
// @exclude *://*.youtube.com/subscribe_embed?*
// ==/UserScript==
let main = new MutationObserver(() => {
set smoothscroll
" don't allow site to focus their input fields when they load
set noautofocus
" have console on bottom
let barposition = "bottom"
" Set avialable search engines
let searchengine brave = 'https://search.brave.com/search?q=%s'
@codiac-killer
codiac-killer / scrolled_frames.py
Last active October 30, 2019 21:39
Frames with scroll bars that function properly, written in python with tkinter.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#---------------------------------------------------------------------------
#This gist is heavily based on a gist from novel-yet-trivial
#https://gist.github.com/novel-yet-trivial/3eddfce704db3082e38c84664fc1fdf8
#---------------------------------------------------------------------------
import tkinter as tk