Skip to content

Instantly share code, notes, and snippets.

@hgbrown
hgbrown / gist:4701415
Created February 3, 2013 11:35
JavaScript: Jquery ready handler - short version
$(function() {
// Handler for .ready() called.
});
@hgbrown
hgbrown / TextFileReader.java
Last active July 8, 2018 22:25
Java: TextFileReader
import java.io.IOException;
import java.util.Iterator;
import java.io.FileReader;
import java.io.BufferedReader;
/**
* Abstraction for reading the context of a text file into a String. Implements the
* Iterator pattern to read the content of a text file a single line at a time.
*
* @author <a href='mailto:[email protected]'>[email protected]</a>