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 Mod User Notes - /r/LeagueOfLegends version | |
// @namespace http://www.reddit.com/r/toolbox | |
// @author agentlame, creesch, EnigmaBlade | |
// @description Create and display user notes for mods. Modified specifically for /r/LeagueOfLegends mods. | |
// @include *://www.reddit.com/* | |
// @include *://reddit.com/* | |
// @include *://*.reddit.com/* | |
// @downloadURL http://userscripts.org/scripts/source/172486.user.js | |
// @version 2.0.0 |
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 Reddit - redditremove://* button | |
// @include *://reddit.com/* | |
// @include *://*.reddit.com/* | |
// @version 1.0 | |
// @run-at document-start | |
// ==/UserScript== | |
function addRemovalButtons() { | |
reason = 'just_because'; |
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
public class RuneSlot implements Comparable<RuneSlot> { | |
private int id; | |
//... | |
public boolean compareTo(RuneSlot slot) { | |
return id - slot.id; | |
} | |
} |
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 Reddit Mod Nuke Userscript | |
// @version 3.141.592.653 | |
// @include htt*://*.reddit.com/* | |
// @author djimbob (dr jimbob) | |
// @description This userscript helps reddit moderators delete threads. | |
// ==/UserScript== | |
delete_function = function(thread_root) { | |
var elmnts = document.getElementsByClassName('id-'+thread_root)[0].querySelectorAll('form input[value="removed"]~span.option.error a.yes,a[onclick^="return big_mod_action($(this), -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
body { | |
background-image: url(%%bg1%%); | |
background-repeat: no-repeat; | |
background-color: black; | |
background-position: 100% 10px; | |
background-size: 40%; | |
} | |
body:before { | |
content: ""; |
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
@echo off | |
echo Activating SDK... | |
call addon-sdk\bin\activate.bat | |
echo. | |
echo Building extension... | |
call cfx xpi | |
echo. |
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
title+body: ["ヽ༼ຈل͜ຈ༽ノ", "(ง ͠° ل͜ °)ง", "( ͝° ͜ʖ͡°)", "ºل͟º", "Ѱζ༼ᴼل͜ᴼ༽ᶘѰ", "ヽ༼◕ل͜◕༽ノ", "༼-ل͜ຈ༽", "༼ つ ◕_◕ ༽つ", "༼ ᕤ◕◡◕ ༽ᕤ", "༼ つ ◡_◡༽つ", "༼ つ ◕_◕ ༽つ", "ᕙ༼ຈل͜ຈ༽ᕗ", "ᕕ( ᐛ )ᕗ", "( ° ͡ ͜ ͡ʖ ͡ °)","ᕕ( ° ل͜ °)ᕗ", "ノ(ಠ_ಠノ)", "\"\\.'--'\\.\"", "つ ◕_◕ ༽つ", "つ◕_◕ ༽つ", "(raise|lower)\\s+(your|ur)\\s+dongers", "ʀᴀɪsᴇ ᴜʀ ᴅᴏɴɢᴇʀs", "dong\\s*squad", "bowflexin"] | |
modifiers: regex | |
action: remove |
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
.side .md > ol { | |
left: 350px; | |
list-style: none outside none; | |
margin: 0; | |
padding: 0; | |
position: absolute; | |
top: 23px; | |
z-index: 200; | |
} |
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
package net.enigmablade.x.randimage; | |
import java.awt.*; | |
import java.awt.image.*; | |
import java.util.*; | |
import javax.swing.*; | |
public class ImageReplicator | |
{ | |
private static Random rand; |
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
/* Remove default reason */ | |
.report-form li:not(:last-child) label { /* For users */ | |
font-size: 0; | |
} | |
.report-reasons li.report-reason[title="spam"], /* For mods */ | |
.report-reasons li.report-reason[title="vote manipulation"], | |
.report-reasons li.report-reason[title="personal information"], | |
.report-reasons li.report-reason[title="sexualizing minors"], |
OlderNewer