Skip to content

Instantly share code, notes, and snippets.

Hive

Goal: Surround your opponent's Bee completely (either color).

Setup: Each player should have:
* 1 Bee
* 3 Ants
@pebreo
pebreo / js-snippets.md
Last active July 28, 2016 17:40
Javascript Snippets

Using reduce without lodash

a = [1,2,3];
var y = a.reduce(function(sum, n){
	return sum + n;
}, 0);

console.log(y);
@pebreo
pebreo / math-patterns.md
Last active May 31, 2017 15:52
Math Patterns

Math Links

Attitude

Math is like riding a bicycle. The best way to learn is to get on the bicycle and start peddling. You may fall but ultimately each fall means you are getting better and better.

Word Problems