Skip to content

Instantly share code, notes, and snippets.

@3rdfoundation
3rdfoundation / database.yml
Last active March 17, 2018 22:35
Ruby files for implementing an IMDB video library : PART I
development:
adapter: postgresql
database: library
username: postgres
password: xxx
host: localhost
port: 5432
pool: 5
timeout: 5000
@3rdfoundation
3rdfoundation / CustomGame.uc
Created October 25, 2013 03:53
Unrealscript to create custom footsteps. Goes with this blog entry: http://oculusdrifter.blogspot.com/2013/10/custom-footstep-sounds-in-udk.html
class CustomGame extends UTGame;
static event class<GameInfo> SetGameType(string MapName, string Options, string Portal) {
`log("CustomGame.SetGameType: ==================================================");
return Default.class;
}
event InitGame( string Options, out string ErrorMessage ) {
`log("CustomGame.InitGame: ------------------------------------------------------");
super.InitGame(Options,ErrorMessage);