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
@article{powsner_graphical_1994, | |
title = {Graphical Summary of Patient Status}, | |
volume = {344}, | |
url = {http://www.sciencedirect.com/science/article/pii/S0140673694914060}, | |
timestamp = {2015-09-09T18:25:01Z}, | |
number = {8919}, | |
journaltitle = {The Lancet}, | |
author = {Powsner, Seth M. and Tufte, Edward R.}, | |
urldate = {2015-09-09}, |
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
#!/bin/bash | |
python -m SimpleHTTPServer |
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
### Keybase proof | |
I hereby claim: | |
* I am jromeem on github. | |
* I am jromeem (https://keybase.io/jromeem) on keybase. | |
* I have a public key whose fingerprint is D5B0 C2C5 9145 2274 EE63 7387 B18E F40F 0E90 71A2 | |
To claim this, I am signing this object: |
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
int numFlorets = 500; | |
float angleFloret = 137.5; | |
int scaleFloret = 15; | |
void setup() { | |
size(500,500); | |
} | |
void draw() { | |
background(255); |
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
int[] numbers = {1,2,3,6,1,6,48,38,77,23}; | |
void setup() { | |
int x = findMaximum(numbers); | |
println(x); | |
} | |
int findMaximum(int[] someNumbers) { | |
int currentMax = someNumbers[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
#define OFF_THE_CHARTS 10000000000000000000000000000000000000000bitch00000000000000000 | |
Class Victor : Person | |
{ | |
Private: | |
int mDramaticLevel; | |
int mCoolnessLevel; | |
int mNerdLevel; | |
Public: |
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
#!/bin/sh | |
# Jerome Martinez | |
# MON20-APR15: gif making or whatev idk | |
# nyoom | |
WOOSH1="woosh1.gif" | |
WOOSH2="woosh2.gif" | |
OUTFILE="woosh.gif" | |
# lmao im gurl |
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
# Jerome Martinez | |
# 19 February 2013 | |
# Context-free grammar production | |
# This is our grammar: | |
# | |
# S -> SS [NonTerm, NonTerm] | |
# S -> ( S ) [LPAREN, NonTerm, RPAREN] | |
# S -> [ S ] [LBRACK, NonTerm, RBRACK] | |
# S -> { S } [LBRACE, NonTerm, RBRACE] |
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
cd ~ | |
sudo apt-get update | |
sudo apt-get install openjdk-7-jre -y | |
wget http://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.20.1.tar.gz -O elasticsearch.tar.gz | |
tar -xf elasticsearch.tar.gz | |
rm elasticsearch.tar.gz | |
sudo mv elasticsearch-* elasticsearch | |
sudo mv elasticsearch /usr/local/share |
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
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.Random; | |
import org.lwjgl.LWJGLException; | |
import org.lwjgl.input.Keyboard; | |
import org.lwjgl.input.Mouse; | |
import org.lwjgl.opengl.Display; | |
import org.lwjgl.opengl.DisplayMode; | |
import org.lwjgl.opengl.GL11; |
NewerOlder