Skip to content

Instantly share code, notes, and snippets.

@BobbySig
BobbySig / ArcanaMeme.html
Last active December 20, 2015 13:19
Calculate which Major Arcana you belong to based on the formula described in a deviantart post!
<!DOCTYPE html>
<html>
<head>
<title>Arcana Calculator</title>
</head>
<body>
<script type="text/javascript">
//document.write("I Pity The Fool Who Thinks This Actually Works Right Now <br>");
@BobbySig
BobbySig / PigLatinTranslator.html
Last active May 20, 2016 13:51
Simple javascript English to Pig Latin translator.
<!DOCTYPE html>
<html>
<head>
<title>Simple Pig Latin Translator</title>
<script type="text/javascript">
function isVowel(char) {
return ['a', 'e', 'i', 'o', 'u'].indexOf(char) != -1;
}
@BobbySig
BobbySig / snowflakes.js
Last active January 1, 2016 21:59
Determines whether to display snowflakes on my tumblr.
{
var tmp = document.getElementById("theme_snowflakes").innerHTML
if ({MonthNumber} == 1 || {MonthNumber} == 12) {
tmp = "<script src='http://static.tumblr.com/2w7y46r/xtmlvfnoc/snowstorm.js'></script>";
}
}