Advanced Search
Search Results
229 total results found
Introduction to Operating System
Monolithic os Every hardware service that it will provide or every service that an application that will require from the operating system is part of the operating system already. Everything is packaged altogether into the operating system, making it really ...
OAuth 2.0
Time before OAuth Before OAuth was invented, a common way to give third-party application access to your account is to just provide them your password. This way of allowing third-party application accessing your account information of course have number of pr...
Overview about the certificate
What this certificate covers This certificate proves that you are able to design and implement systems on AWS, the system you designed have high resiliency, have high performance, have good security, and is cost optimized.
Domain 1: Resilient architrectures
Multi-tier solutions Exam item will require you to understand and implement several aspects across topics. Multi-tier solutions refers a general framework that divides up independently scalable applications components, that can be independently developed, ma...
Questions and AWS resource differences
AWS Lambda Can have a maximum runtime of only 15 minutes. A great option for hosting microservices that does a certain task independently of others. Combine with API Gateway to host the API, they both scale very fast and is great against DDos. Hard to overw...
Domain 2: High-performing architectures
Elastic vs scalable Although they both mean adapting to dynamic environments they don't really mean the same thing. Scalable means that you are allocating resource expansion on a more persistent level to meet workload growth. Take the example of pizza place,...
Domain 3: Secure Applications
Secure resource access Security should be considered at every level, stage, and architecture. The biggest security decision you make early is how the people tool and applications you build will access the necessary AWS resources. It will tell you how to mana...
Domain 4: Cost-optimized architectures
Cost-effective storage solutions Yous should know which storage service should be used, an object storage, or a file storage and identify the cost optimized storage. Right-size EBS volumes Pick the right size, don't over provision more than you need You ne...
AWS Introduction
AWS Region and Availability zone An AWS region is a geographical location with a collection of availability zones mapped to a physical data center in that region. Each region operate independent of one of another, they have each of their own power, water supp...
Lab: Intro to Storage Services
Cloud computing models Infrastructure as a service Offer services that are present in on-premise data center. Servers, storage, and networking hardware, so like VPN are all available as a service in AWS. Ex: EC2, VPC, EBS. Platform as a service AWS helps ...
Parameterization and string substitution
String substitution In the context of building a database query like so: CREATE TABLE fish (name TEXT, species TEXT, tank_number INTEGER) you would likely want to include for example user input for say a search query into a database. There are two ways to go...
Lab: Intro to Database Services
AWS relational database services (RDS) A fully managed database services, makes it easy for you to launch a database servers. You get to choose the different type of database engine from MySQL, MariaDB, PostgresSQL, Oracle, Microsoft SQL Server. AWS Aurora ...
Lab: intro to Compute and Networking Services
AWS compute services EC2 Allow you to launch on-demand virtual machines. EC2 autoscaling Allow you to dynamically scale EC2 capacity up or down according to conditions you defined. Scale up by launching more EC2 instances, and scale down by terminating EC2...
Lab: Intro to Management Services
Management tools CloudFormation Use a text file to define and deploy your infrastructure on AWS. AWS Service Catalog Allow enterprises to look at what type of resources can be deployed to be governance compliant. What is allowed to be deployed on AWS cloud...
Lab: Intro to Application Services
Application integration Step functions Make it easy to orchestrate bunch of microservice in a particular order. You define your application visually as series of step and then you can deploy it. Say you only want microservice B to run after microservice A is...
CSS Max-width
Max-width This property is interesting because if you specify a max-width, the content's width will never exceed the value you have specified. So if you set a <p> tag to a max-width of say 200px, the box-model will never exceed 200 pixels, although the conte...
Lab: Intro to Analytics and Machine Learning
Analytics service Amazon EMR Hadoop framework as service. Data can be analyzed. Athena Analyzed data stored in Amazon S3 bucket using standard SQL statement Elasticsearch Service Allow high speed query Kinesis Collect and process and analyze real-time ...
Lab: Intro to Security, Identity, and Compliance
Security, identity, and compliance AWS Artifact Online portal that give access to AWS security and compliance documentation. You can read documentation about security and how to make your application government compliance. AWS Certificate Manager Issues SS...
Downloading and Installing Rust
Instructions To download and install Rust it is pretty simple. Just run the following curl command and pipe it into bash. curl https://sh.rustup.rs | bash This will install rustup which is a tool that helps you install Rust across all platforms. Update and...
Getting started
Hello world fn main() { println!("Hello, world!"); } The main function is always the first function that is executed in every Rust program. The body of the function is wrapped in {}. println! call is actually not a function call, but rather is calling a R...