Skip to content

Instantly share code, notes, and snippets.

View nerdgrass's full-sized avatar

Alex nerdgrass

View GitHub Profile
@nerdgrass
nerdgrass / Basic CSS Popover Animation.markdown
Created June 24, 2015 19:44
Basic CSS Popover Animation
@nerdgrass
nerdgrass / rps.js
Created November 23, 2013 16:05
Rock, Paper, Scissors script based on Codeacademy project.
var userChoice = prompt("Do you choose rock, paper or scissors?");
var computerChoice = Math.random();
if (computerChoice < 0.34) {
computerChoice = "rock";
} else if(computerChoice <= 0.67) {
computerChoice = "paper";
} else {
computerChoice = "scissors";
}
var compare = function(choice1,choice2) {