Skip to content

Instantly share code, notes, and snippets.

This let's me git clone a template repo, cd into and fire up a new template in my editor of choice:

$ clone starter # clones https://github.com/addyosmani/starter (a personal boilerplate)

$ clone h5bp html5-boilerplate # get me HTML5 Boilerplate

$ clone angular angular-seed # same for AngularJS seed

$ clone polymerlabs seed-element # same for a new Polymer element
@ar1g
ar1g / CommandClasses_Action.java
Created June 12, 2014 23:17
Command pattern demo
package CommandClasses;
/**
* @author Ari
* @version 1.0
* command interface
*/
public interface Action {
public void exec();
}