Skip to content

Instantly share code, notes, and snippets.

View evanchooly's full-sized avatar

Justin Lee evanchooly

View GitHub Profile
@evanchooly
evanchooly / dailyprogrammer290.java
Created November 3, 2016 16:06 — forked from anonymous/dailyprogrammer290.java
reddit dailyprogrammer 290 2016-11-02
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/* https://www.reddit.com/r/dailyprogrammer/comments/5as91q/20161102_challenge_290_intermediate_blinking_leds/ */
@evanchooly
evanchooly / baz.mirah
Created April 26, 2011 17:29 — forked from railsfactory/baz.mirah
mirah import example
#in bar folder
class Bar
class Baz
def hello
puts "hello from Baz"
end
end
end