Skip to content

Instantly share code, notes, and snippets.

Taken from the live recording of 'The Cadavers Jamboree' Musical.
Lyrics By Vladimirdlc
Music By MattTheGreat2008
Performed By ScariestLlama
Lyrics:
[Gravedigger]
My body is filled with scars
and there's not a soul to blame
@vladimirdlc
vladimirdlc / .gitignore
Last active August 29, 2015 14:03
A simple .gitignore for Unity3D
#################
## Visual Studio
#################
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
@vladimirdlc
vladimirdlc / Guava Transform Function Example
Created November 7, 2012 18:36
Transform a List from a type into another type List using Guava. Practical example.
final List<State> states = new ArrayList<State>();
final int n = 10;
for (int i = 0; i < n; i++) {
final State state = new State(i, DeliveryReceiptState.ACCEPTD);
states.add(state);
}
final List<Status<DeliveryReceiptState>> statuses = Lists.transform(