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
/* | |
* Added additional null checks when closing the ResultSet and Statements. | |
* | |
* Thanks to pihug12 and Grzegorz Oledzki at stackoverflow.com | |
* http://stackoverflow.com/questions/5332149/jdbc-scriptrunner-java-lang-nullpointerexception?tab=active#tab-top | |
*/ | |
/* | |
* Modified: Use logWriter in print(Object), JavaDoc comments, correct Typo. | |
*/ | |
/* |
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
Use case: | |
http://gitlab.com/UnderGrounder96/awx_install.git | |
Reference Bash: | |
https://tutorialkart.com/bash-shell-scripting/bash-tutorial/ | |
shebang: #!/bin/bash | |
1 - Variables | |
SYSTEM VARIABLES vs USER VARIABLES |
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
[react-redux-typescript-guide](https://github.com/piotrwitek/react-redux-typescript-guide) | |
[FAQ](http://redux.js.org/docs/FAQ.html) | |
[Redux Actions in typescript](https://spin.atomicobject.com/2017/07/24/redux-action-pattern-typescript/) | |
```typescript | |
export enum TypeKeys { | |
INC = 'INC', | |
DEC = 'DEC', | |
OTHER_ACTION = '__any_other_action_type__' | |
} |