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
"""Copyright (c) 2025 Jonathan Voss (k98kurz) | |
Permission to use, copy, modify, and/or distribute this software | |
for any purpose with or without fee is hereby granted, provided | |
that the above copyleft notice and this permission notice appear in | |
all copies. | |
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL | |
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED | |
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE |
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
"""Copyright (c) 2025 Jonathan Voss (k98kurz) | |
Permission to use, copy, modify, and/or distribute this software | |
for any purpose with or without fee is hereby granted, provided | |
that the above copyleft notice and this permission notice appear in | |
all copies. | |
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL | |
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED | |
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE |
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 Number YouTube Videos | |
// @namespace https://github.com/k98kurz | |
// @version 0.2 | |
// @description Number YouTube videos in chronological (reverse sequential) order. Should load all videos by scrolling down first. | |
// @author k98kurz | |
// @match https://www.youtube.com/@*/videos | |
// @match https://www.youtube.com/@*/streams | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
// @grant none |
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
<?php | |
use Illuminate\Console\Command; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Console\Input\InputArgument; | |
class ClearBeanstalkdQueueCommand extends Command { | |
/** | |
* The console command name. |
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
// Copyleft Jon Tyler, 2015+ | |
// MIT license | |
// requires jQuery | |
// requires an api endpoint; array of headers is optional | |
// probably pointless without modification/extension | |
function Resource(endpoint, options) { | |
var settings = {}; | |
settings.endpoint = endpoint; | |
settings.headers = (typeof options == "object") ? options.headers || [] : []; |
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 Autoplay Toggle | |
// @namespace https://gist.github.com/k98kurz | |
// @updateUrl https://gist.githubusercontent.com/k98kurz/76c08ff2dbe0a479c955/raw/ | |
// @version 1.2 | |
// @description This makes the list autoplay toggle actually work; i.e., it is now a global setting rather than per-page clickfest. | |
// @match https://www.youtube.com/watch?v=*&list=* | |
// @match http://www.youtube.com/watch?v=*&list=* | |
// @match https://www.youtube.com/watch?list=*&v=* | |
// @match http://www.youtube.com/watch?list=*&v=* |
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 No More YouTube Uploads Playlist | |
// @namespace https://gist.github.com/k98kurz | |
// @updateUrl https://gist.githubusercontent.com/k98kurz/3ba6ac71a32bd36d21c3/raw/ | |
// @version 2.1 | |
// @description This removes the "uploads" playlist from video links on channels | |
// @match https://www.youtube.com/user/*/videos | |
// @match http://www.youtube.com/user/*/videos | |
// @match https://www.youtube.com/channel/*/videos | |
// @match http://www.youtube.com/channel/*/videos |
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 Facebook fix | |
// @namespace https://gist.github.com/k98kurz | |
// @updateURL https://gist.githubusercontent.com/k98kurz/6026739/raw | |
// @version 1.2.1 | |
// @description blah | |
// @match https://*.facebook.com/* | |
// @copyright 2014+, k98kurz | |
// ==/UserScript== |