Skip to content

Instantly share code, notes, and snippets.

@jnewc
jnewc / yolo.swift
Created August 15, 2020 17:15
More natural (fight me) OptionSet syntax for Swift
func |<T>(_ first: T, _ second: T) -> T where T: OptionSet {
return first.union(second)
}
@jnewc
jnewc / gist:0e8ee1e33e3bd40d6af619c3081f0d40
Created November 28, 2024 19:17
Make the YouTube progress bar red again (TamperMonkey UserScript)
// ==UserScript==
// @name Make the YouTube progress bar red again
// @namespace http://tampermonkey.net/
// @version 2024-11-24
// @description try to take over the world!
// @author You
// @match https://www.youtube.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant GM_addStyle
// ==/UserScript==