This file contains 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
#!/usr/bin/env bash | |
# Usage: dockify-config-file.sh PREFIX INFILE OUTFILE | |
# | |
# Will lockup environment variables that start with PREFIX_ | |
# and replace all occurences of ${PREFIX_...} in INFILE, | |
# writing to OUTFILE. | |
# | |
# Useful for converting a non-docker friendly configuration file into | |
# a template which can be populated at runtime. |
This file contains 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
//------------------------------------------------------------- | |
// your-company.js | |
window.yourCompany = { | |
version: '1.0', | |
namespace: function(path) { | |
var part, | |
currentObject = window, | |
parts = path.split('.') | |
; |
This file contains 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
(function() { | |
// Offending code. | |
})() |
This file contains 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
build | |
dist | |
*.egg-info | |
*.pyc | |
*~ | |
.DS_Store |
This file contains 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
.DS_Store | |
*.swp | |
*~.nib | |
build/ | |
*.pbxuser | |
*.perspective | |
*.perspectivev3 | |
*.mode1v3 | |
*.mode2v3 | |
xcuserdata |