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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script> | |
| var webkitRequestAnimationFrame; | |
| var c, canvas; | |
| var leftWall, floorWall, rightWall; | |
| var gravity = 1; | |
| var xVel = 1; | |
| var yVel = 1; |
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
| import React, { useState } from 'react' | |
| function DropDown({digit}) { | |
| const numbers = '0123456789' | |
| return ( | |
| <select name="phone" id="phone"> | |
| {numbers.split('').map(num => <option value={num} selected={num === digit}>{num}</option>)} | |
| </select> | |
| ) | |
| } |
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
| document.body.style.overflow = ''; | |
| let login = document.querySelector('body > div[role=presentation]'); | |
| login.parentElement.removeChild(login); |
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 Super Testers | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.46 Beta | |
| // @description try to take over the world! | |
| // @author Paul Sweeney Jr. / JP (from 1.40+) | |
| // @match https://portal.rainforestqa.com/peer_review/* | |
| // @exclude https://portal.rainforestqa.com/peer_review/*/video_metadata | |
| // @grant none | |
| // ==/UserScript== |
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 RF Accounts | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author Paul Sweeney Jr. | |
| // @match https://app.rainforestqa.com/login | |
| // @grant none | |
| // ==/UserScript== |
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 Peers Review Video MetaData | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description try to take over the world! | |
| // @author Paul Sweeney Jr, credits: Helloworld111 | |
| // @match https://portal.rainforestqa.com/peer_review/*/video_metadata | |
| // @grant none | |
| // ==/UserScript== |
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 Forum Logo Fix | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description try to take over the world! | |
| // @author Paul Sweeney Jr. (sweeneyapps) | |
| // @match https://forum.rainforestqa.com/* | |
| // @grant none | |
| // ==/UserScript== |
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 Rainforest Job History TroubleShooting | |
| // @namespace http://tampermonkey.net/ | |
| // @version 59 | |
| // @description everything on rainforst portal!! | |
| // @author Paul Sweeney Jr. (Code cleaner), ixamy (original idea) | |
| // @modifier JrRandy | |
| // @credits taruga, marco.aguiaram, russ, uangonline2016, mariusb | |
| // @match https://portal.rainforestqa.com/* | |
| // @run-at document-end |
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 Rainforest UI Job (New and in Beta Stage) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description Refresh UI for New Rainforest Design | |
| // @author Paul Sweeney Jr. | |
| // @match https://tester.rainforestqa.com/tester/* | |
| // @grant none | |
| // ==/UserScript== |
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 Rainforest PORTAL! | |
| // @namespace http://tampermonkey.net/ | |
| // @version 63 | |
| // @description everything on rainforst portal!! | |
| // @author Paul Sweeney Jr. (Code cleaner), ixamy (original idea) | |
| // @modifier JrRandy | |
| // @credits taruga, marco.aguiaram, russ, uangonline2016, mariusb | |
| // @match https://portal.rainforestqa.com/* | |
| // @run-at document-end |