Skip to content

Instantly share code, notes, and snippets.

\\ Proposing this structure for getters and senders.
export interface Pong {
response: string;
}
export class Ping<TBigNumber> {
public static PingParams = t.type({});
@Getter()
@justinbarry
justinbarry / gist:4188246
Created December 2, 2012 11:11 — forked from tankchintan/gist:1335220
Procedure for installing and setting Sun JDK Java on Default Amazon Linux AMI
# Get the latest Sun Java SDK from Oracle http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u1-download-513651.html
wget "http://download.oracle.com/otn-pub/java/jdk/6u37-b06/jdk-6u37-linux-x64.bin"
# Install Java
sudo rpm -i jdk-6u37-linux-x64.bin
# Check if the default java version is set to sun jdk
java -version
# If not then lets create one more alternative for Java for Sun JDK