This file contains 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 Release Merge Sanity Checker | |
// @version 1.0 | |
// @description :^) | |
// @author ryanml | |
// @match https://github.com/MetaMask/metamask-extension/pull/* | |
// @grant none | |
// ==/UserScript== | |
(function() { |
This file contains 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 Ebay NGC/PCGS Lookup | |
// @namespace https://ebay.com | |
// @version 0.1 | |
// @description Extracts Coin cert information from item photos | |
// @author ryanml | |
// @match https://www.ebay.com/itm/* | |
// @grant none | |
// @require https://unpkg.com/[email protected]/dist/tesseract.min.js | |
// ==/UserScript== |
This file contains 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 Instagram Delete All | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Adds an "Unsend All" button to a DM thread view. | |
// @author ryanml && christopher | |
// @match https://www.instagram.com/direct/inbox/ | |
// @grant GM_xmlhttpRequest | |
// ==/UserScript== |
This file contains 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 Alien Trends | |
// @namespace https://github.com/ryanml | |
// @version 0.1 | |
// @description green | |
// @author You | |
// @match https://www.facebook.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { |
This file contains 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 Video Tipper | |
// @namespace https://github.com/ryanml | |
// @version 0.1 | |
// @description Prompts user to tip Youtuber in BAT. | |
// @author ryanml | |
// @match https://www.youtube.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { |
This file contains 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 Hide Snapshots | |
// @namespace https://github.com/ryanml | |
// @version 1.0 | |
// @description Hides testing snapshots in Github PR file view | |
// @author ryanml | |
// @match *://github.com/brave/brave-ui/pull/*/files | |
// @grant none | |
// ==/UserScript== |
This file contains 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
10 DIM FourDigitPassword INTEGER | |
20 FOR i = 0 TO 9 | |
30 FOR j = 0 TO 9 | |
40 FOR k = 0 TO 9 | |
50 FOR l = 0 TO 9 | |
60 FourDigitPassword = getFourDigits (i,j,k,l) | |
70 IF checkPasswordMatch(FourDigitPassword) = TRUE THEN | |
80 GOTO 140 | |
90 END | |
100 NEXT l |