I hereby claim:
- I am gphan on github.
- I am gphan (https://keybase.io/gphan) on keybase.
- I have a public key whose fingerprint is CE8D 077F E07B C50A 91BD D227 13CA 5B0D 108D 357A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| #!/bin/bash | |
| dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get -y purge |
| /* http://jsfiddle.net/4YuZp/ */ | |
| /* | |
| <h1>Conway's Game of Life</h1> | |
| <canvas id="screen" width="300px" height="300px"> | |
| </canvas> | |
| <form> | |
| <div> | |
| <label for="chanceOfLife">% of Alive</label> | |
| <input id="chanceOfLife" type="text" value="5"/> | |
| <input id="random" type="button" value="Randomize" /> |
| import java.util.List; | |
| import java.util.ArrayList; | |
| interface NumberTest { | |
| boolean testNumber(int number); | |
| String numberTestString(int number); | |
| } | |
| class FizzTest implements NumberTest { | |
| public boolean testNumber(int number) { |