2025/03/30
HTTP
2025/03/29
DOCKER
2025/03/23
AWS
ECS
LOAD-BALANCING
TARGET-GROUP
2025/02/22
What is Container-Optimized OS? Alternatives?
is Google's own operating system specifically designed to run containerized images.
Other alternatives such as
Alpine Linux, Ubuntu/Debian, and the now-discontinued CoreOS, etc.
After RedHat got Cor...2024/10/30
AWS
2024/10/30
AWS
EMR
2024/10/29
JavaScript Bundlers & Transformers
I’ve been using Next.js for a long time, from having to configure everything to now almost zero setup, so I took some time to explore the evolution of JavaScript ecosystem tools.
Nowadays, we almost...2024/10/28
AWS
CLOUDTRAIL
INSPECTOR
MACIE
2024/10/24
AWS
DATASYNC
DMS
SNOW
2024/10/24
AWS
IAM
S3
2024/10/21
AWS
CLOUDTRAIL
CLOUDWATCH
2024/10/20
VUE
2024/10/20
AWS
NETWORKING
2024/10/20
AWS
2024/10/16
AWS RDS Database Enginesssss Comparison
I read about RDS and thought it would be good to make a comparison. There are many SQL options available in the market, but aside from simple query usage, I haven’t seriously looked into why there a...2024/10/16
NEXTJS
2024/10/12
AWS
2024/10/08
Behind the Scenes: Anycast and Its Impact on CDNs
When looking into content delivery solutions offered by major companies like Cloudflare, Amazon CloudFront, and Google Cloud CDN, you'll find they all provide similar content delivery network service...2024/10/07
AWS
EC2
ROUTE53
2024/10/06
GOLANG
CHANNEL
TIME.SLEEP
WAITGROUP
2024/10/03
PYTHON
DJANGO
NGINX
SOCKET
UWSGI
2024/10/02
GOLANG
MUTEX
PANIC
2024/10/01
The Multi-Core Revolution in CPUs
Around 2007, CPU frequency growth began to slow down or even decrease, but the number of logical cores increased significantly.
Clock speed, clock frequency, and frequency are the same thing in this ...2024/10/01
AWS
AZURE
GCP
VPC
2024/09/30
Why Mobile Hotspot IPs Are Not What They Seem
When using the same WiFi network, we can easily find each other's IP addresses (192.168.0.x) using ifconfig/ipconfig. This is useful for tasks like testing websites on mobile devices, as CSS may ren...2024/09/29
HTTP
NEXTJS
REACTJS
2024/09/29
ANGULAR
FIREBASE
2024/09/29
AWS
API-GATEWAY
DYNAMODB
LAMBDA
2024/09/29
DOCKER
2024/09/29
GOLANG
AWS
ECR
ECS
ELB
FARGATE
ROUTE53
2024/09/29
DOCKER
2024/09/29
AWS
2024/09/27
Broad Translators
Usually what we write in
The term "source code" depends on context; it can refer to high-level language or assembly language.
Broadly includes all tools capable of form conversion:
Not necessarily ...2024/09/27
Python Execution — From Interpreters to Compilers and Packaging tools
From a performance perspective: Static/AOT compilation > JIT compilation > JIT implementation > Interpreter
note1
Note 1: In the Python world, VM and interpreter are often used interchangeably, but ...2024/09/26
Linux Variants: Ubuntu, Kali, Debian, Red Hat, Fedora & CentOS…
With numerous Linux distributions like Red Hat, CentOS, Debian, and Ubuntu often mentioned, it's easy to get lost in the mix. This guide aims to clear up your confusion and help you better understand...2024/09/26
rwxrwxrwx Also, SUID, SGID & SBIT?
You already know about rwx rwx rwx, which represents owner, group, and others respectively. Each group has its own rwx, and if you're the owner, you look at the first rwx group.
Using ls -l, you'll...2024/09/25
loopback(127.0.0.1, ::1), localhost, and 0.0.0.0 in Local Development
I found an issue where my backend server was listening on 127.0.0.1:1234, but I couldn't access to it using localhost:1234 in my browser or curl. Initially I thought it’s a backend issue, I found no ...2024/09/23
Linux Network Troubleshooting Tools: nslookup/ping/ssh/netstat/curl/nc
The most commonly used tools are ping and nslookup.
OSI Layer Reference:
"Go Deeper!" - dig provides detailed DNS information.
dig can query specific record types: TXT, A, etc. dig soa.yourdomain...2024/09/19
HTTP Headers: Set-Cookie - SameSite Configuration
The issue arose when cookies obtained after logging in at localhost:3000 couldn't be used at thembase-subdomain.localhost:3000.
The solution involves using these cookie options:
SameSite has three ...2024/09/19
HTTP 1.1/2/3
1 RTT represents a round trip. Below are all 1 RTT.
TCP operates at the Transport layer, which is below the Network layer, also known as IP.
Regardless of the HTTP version, TCP always requires a 3-w...