Skip to content

Instantly share code, notes, and snippets.

View ryanml's full-sized avatar
🦷
picking up my teeth off of the floor

ryanml

🦷
picking up my teeth off of the floor
View GitHub Profile
// ==UserScript==
// @name Release Merge Sanity Checker
// @version 1.0
// @description :^)
// @author ryanml
// @match https://github.com/MetaMask/metamask-extension/pull/*
// @grant none
// ==/UserScript==
(function() {
// ==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/tesseract.js@v2.1.0/dist/tesseract.min.js
// ==/UserScript==
// ==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==
// ==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() {
// ==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() {
// ==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==
@ryanml
ryanml / stranger-things.bas
Last active May 13, 2018 02:48
Bob's Password Brute-Forcer from Stranger Things Season 2
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