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
| -- Collision-resistant ids optimized for horizontal scaling and performance, for PL/PgSQL. | |
| -- Based on https://github.com/ericelliott/cuid | |
| -- Version 1.0.0 | |
| -- Usage: SELECT cuid(); | |
| -- BEGIN CONFIG --- | |
| -- Put a unique host ID (int) here per server instance. | |
| -- Once set, this value should not be changed. |
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
| aws_access_key_id: | |
| aws_secret_access_key: | |
| rs_user: | |
| rs_server: | |
| rs_db: | |
| rs_port: | |
| rs_password: |
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
| aws_access_key_id: | |
| aws_secret_access_key: | |
| rs_user: | |
| rs_server: | |
| rs_db: | |
| rs_port: | |
| rs_password: |
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
| Python script to perform multiple commands sequentially over SSH in a single connection | |
| Known issue: | |
| Execution of commands goes on one after another, even though one/many intermediate commands fails | |
| (NOT recommended, if your commands and dependant on previous commands execution) | |
| Kindly share your thoughts on this script. | |
| Link to answer: https://stackoverflow.com/a/43071039/5243762 |