I hereby claim:
- I am sroze on github.
- I am sroze (https://keybase.io/sroze) on keybase.
- I have a public key whose fingerprint is D12F 83A6 F476 C26A 0563 3F12 8354 26F5 5A19 FB84
To claim this, I am signing this object:
| environment_variables: | |
| - name: GITHUB_TOKEN | |
| value: thevalue | |
| - name: SOME_SECRET | |
| value: blahblha |
I hereby claim:
To claim this, I am signing this object:
| curl https://transfer.sh/<unique-string>/database.sql | gpg -o- > database.sql |
| #define _GNU_SOURCE | |
| #include <fcntl.h> | |
| #include <unistd.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <sys/mman.h> | |
| #include <err.h> | |
| #include <stdbool.h> | |
| #include <ctype.h> |
| #define _GNU_SOURCE | |
| #include <fcntl.h> | |
| #include <unistd.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <sys/mman.h> | |
| #include <err.h> | |
| #include <stdbool.h> | |
| #include <ctype.h> |
| <?php | |
| // Expected output: | |
| // Got exception do nothing | |
| // Got message test2 | |
| // Got message test3 | |
| // Actual output: | |
| // Got exception do nothing | |
| // Got message test3 |
| const execSync = require('child_process').execSync; | |
| module.exports = () => { | |
| const configuration = {}; | |
| const terraformFolder = process.env.SERVERLESS_ENVIRONMENT == 'production' ? 'production' : 'staging'; | |
| const cwd = __dirname + '/' + terraformFolder; | |
| const output = execSync('terraform output -json', { | |
| cwd, | |
| encoding: 'utf-8', |