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 Hide RYM Bias | |
// @namespace http://tampermonkey.net/ | |
// @version 0.5 | |
// @description Hide rating information to minimize outside influence when forming your opinions. | |
// @author Hemogoblinoid | |
// @match https://rateyourmusic.com/* | |
// @grant GM_addStyle | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js | |
// @run-at document-start |
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
// This will open up a prompt for text to send to a console session on digital ocean | |
// Useful for long passwords | |
(function () { | |
var t = prompt("Enter text to be sent to console, (This wont send the enter keystroke)").split(""); | |
function f() { | |
var character = t.shift(); | |
var i=[]; | |
var code = character.charCodeAt(); | |
var needs_shift = "!@#$%^&*()_+{}:\"<>?~|".indexOf(character) !== -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
/** | |
* @author Thomas Burleson | |
* @date November, 2013 | |
* @copyright 2013 Mindspace LLC. | |
* @web http://solutionOptimist.com | |
* | |
* @description | |
* | |
* Used within AngularJS to decorate/enhance the AngularJS `$q` service. | |
* |