Skip to content

Instantly share code, notes, and snippets.

@RikerW
RikerW / bitsbox
Created February 9, 2016 20:36
Hello!
#Bitsbox code
These are all the commands/code I discovered.
##Rickroll:
window.open("http://bit.ly/IqT6zt","_parent")
**alt:**
window.open("http://bit.ly/defcon","_parent")
var xkcd;
var xkcdLoaded = false;
function chat(msg) {
document.getElementById('input').value = msg.replace(/<\/?i>/g, "*");
document.getElementById("sayit-button").click();
}
function getMessage(number) {
var messages = document.getElementsByClassName("content");
@RikerW
RikerW / epicness_abounds.html
Created May 1, 2016 23:59
Epicness Abounds
<audio controls autoplay hidden> <source src="http://rikerw.github.io/Rick%20Astley%20-%20Never%20Gonna%20Give%20You%20Up.mp3" type="audio/mp3"> </audio>
@RikerW
RikerW / mothers.py
Created May 8, 2016 04:19
Mother's Day
import termcolor, pyfiglet
print termcolor.colored(pyfiglet.figlet_format("Happy Mother's Day Mom!!!", "bubble"),"yellow")
'use strict';
// ==UserScript==
// @name TF2 Wiki Englishifier
// @namespace Riker Wachtler
// @version 1.2
// @description Redirects a non-English TF2 Wiki page to the English one.
// @author You
// @match https://wiki.teamfortress.com/wiki/*
// @grant none
@RikerW
RikerW / logic-operators.py
Last active July 6, 2016 17:23
logical functions
{'AND': ('∧', (lambda a,b:bool(operator.and_(a,b)))),
'OR': ('∨', (lambda a,b:bool(operator.or_(a,b)))),
'NOT': ('¬', (lambda a,b:bool(operator.not_(a)))),
'NOR': ('↓', (lambda a,b:bool(operator.not_(operator.or_(a,b))))),
'XOR': ('↮', (lambda a,b:bool(operator.xor(a,b)))),
'XNOR': ('↔', (lambda a,b:bool(operator.not_(operator.xor(a,b))))),
'NAND': ('↑', (lambda a,b:bool(operator.not_(operator.and_(a,b)))))}
git clone https://github.com/skishore/dNAO.git ~/.dnethack
cd ~/.dnethack
make install
cd
alias dnethack="cd ~/.dnethack/dnethackdir ; ./dnethack ; cd"
@RikerW
RikerW / reviewstalker.user.js
Last active May 14, 2017 20:30
reviewstalker for mith
// ==UserScript==
// @name Review Stalker Reloaded
// @namespace com.tuggy.nathan
// @description Reloads specified Stack Exchange review pages, opening tasks as they show up
// @include *://*.stackexchange.com/review*
// @exclude *://*.stackexchange.com/review/site-eval*
// @include /^https?://[^\.]*\.?stackoverflow\.com/review/
// @include /^https?://[^\.]*\.?serverfault\.com/review/
// @include /^https?://[^\.]*\.?superuser\.com/review/
// @include /^https?://[^\.]*\.?askubuntu\.com/review/
<html><head>
<title>Fanatic - Badge - Literature Stack Exchange</title>
<link rel="shortcut icon" href="https://cdn.sstatic.net/Sites/literature/img/favicon.ico?v=d04b2271c4bc">
<link rel="apple-touch-icon image_src" href="https://cdn.sstatic.net/Sites/literature/img/apple-touch-icon.png?v=b17e8bdfe65e">
<link rel="search" type="application/opensearchdescription+xml" title="Literature Stack Exchange" href="/opensearch.xml">
<meta name="twitter:card" content="summary">
<meta name="twitter:domain" content="literature.stackexchange.com">
<meta property="og:type" content="website">
// ==UserScript==
// @name Moderator Flasher Userscript
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Alerts you if very scary and dangerous moderators are there
// @author The Hivemind of the TL
// @match http://chat.stackexchange.com/*
// @grant GM_addStyle
// ==/UserScript==