전체 글 359

How to provision AWS resources (Elastic Beanstalk, CloudFormation)

API (Application programming interface) Interacting with AWS Services AWS Management Console AWS Command Line Interface (CLI) AWS Software Development Kits (SDKs) Various other tools AWS Management Console The AWS Management Console is a web-based interface for accessing and managing AWS services. You can quickly access recently used services and search for other services by name, keyword, or ac..

[Cloud Practitioner] AWS Global Infrastructure and reliability

AWS Global Infrastructure High availability and fault tolerance All sorts of deferent areas (regions) AWS DATA CENTERS Helps with when disasters happen. Building our data centers in the large data group High-Speed Fiber Network Each Area is isolated (Security) AWS Regions Data in one region doesn't go to others except for making it specifically. How to choose AWS Regions? Compliance Look at requ..

[JavaScript] Scheduling: setTimeout and setInterval

Javascript Scheduling: setTimeout and setInterval A block of JavaScript code is generally executed synchronously. But there are some JavaScript native functions (timers) which allow us to delay the execution of arbitrary instructions. setTimeout() setInterval() These let you run a piece of JavaScript code at some point in the future. That’s called “scheduling a call”. In this tutorial I’ll expla..