This file contains 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
<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(){ |
This file contains 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
<!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> |