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
/* | |
Simple 2D JavaScript Vector Class | |
Hacked from evanw's lightgl.js | |
https://github.com/evanw/lightgl.js/blob/master/src/vector.js | |
*/ | |
function Vector(x, y) { |
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
git-recursive () { | |
find . -name .git -type d -execdir printf "\033[0;34m" \; -execdir pwd \; -execdir printf "\033[0m" \; -execdir git "$@" \; -execdir echo "" \; | |
} | |
alias grc="git-recursive" |
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
var l = document.body.children.length | |
for(var i = 0; i < l; i++){ document.body.children[0].remove() } | |
var c = document.createElement("canvas") | |
c.width = 400; | |
c.height = 400; | |
c.style.width = "800px" | |
c.style.height = "800px" | |
document.body.appendChild(c) | |
var style = document.createElement('style') |
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
function init(){ | |
var emulator = document.querySelector('#emulator_target') | |
emulator.style.top = "71px"; | |
emulator.style.left = "166px"; | |
emulator.style.width = "240px"; | |
emulator.style.height = "160px"; | |
emulator.style.opacity = "0.3"; | |
emulator.style.zIndex = "200"; | |
var gameboy = new Image() |
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> | |
<script src='https://cdn.firebase.com/v0/firebase-debug.js'></script> | |
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script> | |
<link rel='stylesheet' type='text/css' href='/resources/tutorial/css/example.css'> | |
</head> | |
<body> | |
<div id='messagesDiv'></div> | |
<div id='temp'></div> |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<style> | |
* { | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; |
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
<html> | |
<head> | |
<!-- You can include external scripts here like so... --> | |
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.0/zepto.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>--> | |
<style> | |
html, body { width: 100%; height 100%; overflow: hidden; margin: 0; background-color: black; } | |
</style> | |
</head> | |
<body> |
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
<html> | |
<head> | |
<!-- You can include external scripts here like so... --> | |
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.0/zepto.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>--> | |
<link rel="stylesheet" href="https://rawgit.com/hakimel/reveal.js/master/css/reveal.css"> | |
<link rel="stylesheet" href="https://rawgit.com/hakimel/reveal.js/master/css/theme/default.css"> | |
<style> | |
html, body { | |
/*width: 100%; height 100%; overflow: hidden; margin: 0;*/ |
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
<html> | |
<head> | |
<!-- You can include external scripts here like so... --> | |
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.0/zepto.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>--> | |
<style> | |
html, body { width: 100%; height 100%; overflow: hidden; margin: 0; background-color: black; } | |
</style> | |
</head> | |
<body> |
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
function Branch(type, depth){ | |
this.branches = []; | |
this.type = type || 0; // 1 or 0 | |
this.depth = depth || 0; | |
} | |
Branch.prototype.grow = function(){ | |
if(this.branches.length == 0){ | |
if(this.type){ | |
this.branches.push(new Branch(0, this.depth+1)); | |
} |
NewerOlder