This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################# | |
## Visual Studio | |
################# | |
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
# User-specific files | |
*.suo | |
*.user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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( |