aws configure --profile profile-a
aws configure --profile profile-b
aws configure --profile profile-c
aws configure --profile profile-d
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
/** | |
* https://repl.it/@marquesanderson/pongo-aggregation-events-by-account-id | |
*/ | |
const RxJS = require('rxjs') | |
const filter = require('rxjs/operators').filter | |
const map = require('rxjs/operators').map | |
const groupBy = require('rxjs/operators').groupBy | |
const flatMap = require('rxjs/operators').flatMap | |
const toArray = require('rxjs/operators').toArray |
I hereby claim:
- I am anderson-marques on github.
- I am andersoncarvalho (https://keybase.io/andersoncarvalho) on keybase.
- I have a public key whose fingerprint is 1CDB 3A1C 5A87 0862 D629 2DD3 370B 91A1 8775 8452
To claim this, I am signing this object:
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
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
#include <stdio.h> | |
float calculaValorImposto(salario){ | |
// TODO: Calcular o valor | |
} | |
void imprimeValorImposto(impostoAPagar){ | |
// TODO: imprimir o valor | |
} |
NewerOlder