Skip to content

Instantly share code, notes, and snippets.

View ennui2342's full-sized avatar

Mark Cheverton ennui2342

View GitHub Profile
@igrigorik
igrigorik / TweetEvent.java
Created May 27, 2011 06:19
wrapping esper with JRuby embrace
// A simple Tweet POJO:
// $> javac TweetEvent.java
public class TweetEvent {
private String user;
private String text;
private String timezone;
private int retweets;
public TweetEvent(String user, String text, String timezone, int retweets) {