Skip to content

Instantly share code, notes, and snippets.

View erkgmz's full-sized avatar

Erik Gomez erkgmz

View GitHub Profile
@erkgmz
erkgmz / raceGame.html
Created November 13, 2014 16:36
Race Game
<script>
function Animal(name, speed, health){
this.name = name;
this.speed = speed;
this.health = health;
this.position =0;
this.isFocused = function(){
return Math.floor(Math.random() * 10) < this.health;
}
this.advance = function(){
@erkgmz
erkgmz / myfile.html
Created November 7, 2014 22:12
Codefellows rebuild website homework
<!DOCTYPE html>
<html>
<head>
<title>Tim Ferriss Blog</title>
</head>
<header>
<h1>The blog of Tim Ferriss</h1>
<p><b>experiments in lifestyle design</b></p>
</header>
<body>