Skip to content

Instantly share code, notes, and snippets.

@marlibs3-zz
marlibs3-zz / main.js
Created July 16, 2018 10:36
R(edux)PG - Run on JSFiddle
const { createStore, combineReducers } = Redux;
// The Hero
const initialState = {
xp: 0,
level: 1,
position: {
x: 0,
y: 0,
},
@marlibs3-zz
marlibs3-zz / personalwebiste.html
Created November 10, 2015 18:32
My First Website (by marta, age 21 3/4)
<!DOCTYPE html>
<html>
<head>
<title>
Butts are wonderful!
</title>
</head>
<body>
<h1>
MARTA
@marlibs3-zz
marlibs3-zz / namefinder.js
Created November 9, 2015 07:13
Find my Name
/*jshint multistr:true */
var text = "One day Marta went to the shops and ate an entire chicken.\
She was so full that the chicken wings came out of her back and Marta became a hybrid chicken human. As she went rabid and started pecking people Andrew started crying and shouting 'Marta! No!'. It was all very sad because they all died."
var myName = "Marta"
var hits = []
for (var i = 0; i < text.length; i++)
{
if (text[i] === 'M')
@marlibs3-zz
marlibs3-zz / rps.js
Last active November 8, 2015 20:43
Rock, Paper, Scissors
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";
} console.log("Computer: " + computerChoice);