Skip to content

Instantly share code, notes, and snippets.

View sweeneyapps's full-sized avatar

Paul Sweeney Jr sweeneyapps

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<script>
var webkitRequestAnimationFrame;
var c, canvas;
var leftWall, floorWall, rightWall;
var gravity = 1;
var xVel = 1;
var yVel = 1;
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>
)
}
document.body.style.overflow = '';
let login = document.querySelector('body > div[role=presentation]');
login.parentElement.removeChild(login);
@sweeneyapps
sweeneyapps / peerreview.js
Last active December 27, 2019 18:27
Peer Review helper
// ==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==
@sweeneyapps
sweeneyapps / accounts.js
Created December 27, 2019 18:22
Login buttons for accessing various of customers account during test writing
// ==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==
@sweeneyapps
sweeneyapps / videometadata.js
Created December 27, 2019 18:16
Peers Review Video MetaData
// ==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==
@sweeneyapps
sweeneyapps / forumlogo.js
Last active December 27, 2018 17:22
Forum Logo fix for RF
// ==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==
@sweeneyapps
sweeneyapps / troubleshooting.js
Last active October 8, 2018 20:07
Troubleshooting History page
// ==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
@sweeneyapps
sweeneyapps / rfui.js
Last active June 10, 2020 09:33
Rainforest UI for New Rainforest Terminal Design
// ==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==
@sweeneyapps
sweeneyapps / rfportal.js
Last active January 5, 2019 00:53
Rainforest Portal Page tampermonkey script
// ==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