Using security groups you can allow/restrict access by adding protocol rules. In our project we use only TCP protocol rules.
Security groups:
ec2-security-group
(Inbound ports: 80, 22)AutoScaling-Security-Group
(Inbound ports: 80, 22)
<!-- Source: https://nurdabolatov.com/trie-search-in-javascript --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Trie Search in JavaScript</title> | |
</head> | |
<body> | |
<input id="search" placeholder="Search" onkeyup="search()"/> |
# Source: https://nurdabolatov.com/parallel-processing-large-file-in-python | |
import multiprocessing as mp | |
import time | |
import os | |
def process_line(line): | |
# Count frequency for every character | |
counter = {} |