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
| #!/usr/bin/env ruby | |
| require 'time' | |
| class App | |
| CUTOFF_DAYS = 30 | |
| def initialize(args) | |
| args.size <= 1 or | |
| abort "USAGE: #$0 [remote]" |
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
| #!/usr/bin/env ruby | |
| require 'optparse' | |
| require 'ostruct' | |
| require 'set' | |
| require 'nokogiri' | |
| CARDS_PATH = '~/Library/Application Support/Cockatrice/Cockatrice/cards.xml' |
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 Deathsie Card Previews | |
| // @namespace Violentmonkey Scripts | |
| // @include https://docs.google.com/spreadsheets/d/e/2PACX-1vR1eo40sfGoZ-MLxXZsGRHEeAWlKBHYxLFGbTY64l0ZFmsXN25iXOHRYvN7Dt4AsCalgj_RK7KAMr9G/pubhtml | |
| // @grant none | |
| // @version 1.0 | |
| // @author George Ogata | |
| // @description 9/13/2021, 1:34:27 AM | |
| // ==/UserScript== |
OlderNewer