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
s = gets.downcase.chomp | |
uniq_s = s.split(//).uniq.sort | |
uniq_s.shift if uniq_s[0] == " " | |
puts 'pangram' if uniq_s.length == 26 | |
puts 'not pangram' if uniq_s.length != 26 |
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
Opportunity -> New Record Type -> Select the Sales process |
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 declaration | |
function age(n) { | |
return n*n | |
} | |
//function expression | |
var age = fuction(n) { | |
return n * n | |
} | |
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
18 regions | |
2/more AZ's | |
AWS uses Intel Xeon processors | |
H1 - storage optimized - high disk throughput and high sequential IO | |
` | |
EC2 Purchasing Options: | |
- On demand |
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
/********************************************** | |
*** GENERAL | |
**********************************************/ | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} |
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
NOkram@TX590-4RYTQN2 MINGW64 ~/Documents/iTrack/s3Test | |
$ aws s3 mb s3://itrack-okram --profile okram | |
make_bucket: itrack-okram | |
NOkram@TX590-4RYTQN2 MINGW64 ~/Documents/iTrack/s3Test | |
$ aws s3 cp s3://itrack-okram/3/ download/ --recursive --profile okram | |
download: s3://itrack-okram/3/Config/web-dev.config to download\Config\web-dev.c onfig | |
download: s3://itrack-okram/3/iTack.zip to download\iTack.zip |
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
Kafka: | |
Topics/Partitions/Offsets: | |
* Think of it as a database, which have streams of data | |
* Can have many topics, identified by names | |
* Topics are splitted into partitions | |
-- partitions are ordered | |
-- each msg within each partition gets an incremental id called OFFSETS | |
-- Order of a msg is only garantueed within a partition. NOT accross partitions |
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
Follow this https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_cwet2.html | |
And create the rule and the target. | |
Note: The document doesnt match the latest AWS web console |
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
Create VPC's | |
10.200.0.0/16 | |
- 10.200.1.0/24 - public | |
- 10.200.2.0/24 - private | |
10.25.0.0/16 | |
- 10.25.0.0/24 - private | |
Create Subnets | |
- 10.200.1.0/24 - public |
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
Route53 | |
DynamoDB | |
Kinesis | |
EMR | |
ElasticCache | |
Memcached | |
- Not persistent | |
- Cannot be used as a data store | |
- Supports large nodes with multiple cores or threads |