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
#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") |
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
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"); |
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
<audio controls autoplay hidden> <source src="http://rikerw.github.io/Rick%20Astley%20-%20Never%20Gonna%20Give%20You%20Up.mp3" type="audio/mp3"> </audio> |
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
import termcolor, pyfiglet | |
print termcolor.colored(pyfiglet.figlet_format("Happy Mother's Day Mom!!!", "bubble"),"yellow") |
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
'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 |
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
{'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)))))} |
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
git clone https://github.com/skishore/dNAO.git ~/.dnethack | |
cd ~/.dnethack | |
make install | |
cd | |
alias dnethack="cd ~/.dnethack/dnethackdir ; ./dnethack ; cd" |
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 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/ |
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
<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"> |
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 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== |
OlderNewer