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
| # mongo.conf | |
| #where to log | |
| logpath=/log/mongod.log | |
| logappend=true | |
| # fork and run in background | |
| fork = true |
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
| git push origin :branch-name |
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
| function testDynamicFunction(){ | |
| var dynamicFunctionCall = "thisWillBeCalledDynamically"; | |
| window[dynamicFunctionCall ](); //javascript function being called dynamically! | |
| } | |
| function thisWillBeCalledDynamically(){ | |
| alert("Woh! How did you call me!"); | |
| } |
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
| private String s = ""; |