Skip to content

Instantly share code, notes, and snippets.

@hemogoblinoid
hemogoblinoid / Hide RYM Bias.user.js
Last active November 11, 2024 05:45
Userscript that hides average ratings and other potential sources of bias on RateYourMusic. Developed using Tampermonkey.
// ==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 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
@ThomasBurleson
ThomasBurleson / $QDecorator.js
Created March 23, 2014 15:51
Decorate the AngularJS $q instance to inject spread() and resolve() functionality.
/**
* @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.
*