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
'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
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
<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
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
#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") |
NewerOlder