The Raft consensus algorithm requires an even number of etcd servers to ensure high availability.
Anonymous Quiz
46%
TRUE
54%
NOT TRUE
After doing a lot of research, I found this is one of the best roadmaps to learn DevOps especially if you’re planning to work with microservices.
Assuming you already have a base knowledge of Linux and basic networking:
1️⃣ Start with Docker – Learn Docker architecture, essential commands, Docker Compose, and how to build and push your images.
2️⃣ Move to Kubernetes – Understand Kubernetes architecture, pods, clusters, nodes, and kubectl/API basics.
3️⃣ Pick one cloud provider – In this case, AWS. Focus on core services like EC2, ECS, EKS, VPC, IAM, S3, and Fargate.
4️⃣ Learn Infrastructure as Code (IaC) – Study Terraform fundamentals: commands, project structure, variables, and modules.
5️⃣ Monitoring & Logging – Learn Prometheus and Grafana for observability.
I create cloud-related content @codemaxing 🚀
Assuming you already have a base knowledge of Linux and basic networking:
1️⃣ Start with Docker – Learn Docker architecture, essential commands, Docker Compose, and how to build and push your images.
2️⃣ Move to Kubernetes – Understand Kubernetes architecture, pods, clusters, nodes, and kubectl/API basics.
3️⃣ Pick one cloud provider – In this case, AWS. Focus on core services like EC2, ECS, EKS, VPC, IAM, S3, and Fargate.
4️⃣ Learn Infrastructure as Code (IaC) – Study Terraform fundamentals: commands, project structure, variables, and modules.
5️⃣ Monitoring & Logging – Learn Prometheus and Grafana for observability.
I create cloud-related content @codemaxing 🚀
This media is not supported in your browser
VIEW IN TELEGRAM
😂 Why the Russian one is black tho
AWS Services Series — AWS EC2
AWS EC2 is basically just a server in the cloud but you configure everything.
You choose the image (OS), but you install and configure things like Nginx, security groups (firewall), networking, storage, etc.
👉 Total flexibility.
💰 Pricing:
EC2 charges you per uptime from the moment the instance starts until you stop it.
Typical pricing (varies by region):
* t3.medium: ~$0.0416/hour
* Also you will be paying for storage EBS(~$0.08–$0.125 per GB/month) also Public IPV4 address
⚠️ If your instance is running idle, you STILL pay.
@codemaxing
AWS EC2 is basically just a server in the cloud but you configure everything.
You choose the image (OS), but you install and configure things like Nginx, security groups (firewall), networking, storage, etc.
👉 Total flexibility.
💰 Pricing:
EC2 charges you per uptime from the moment the instance starts until you stop it.
Typical pricing (varies by region):
* t3.medium: ~$0.0416/hour
* Also you will be paying for storage EBS(~$0.08–$0.125 per GB/month) also Public IPV4 address
⚠️ If your instance is running idle, you STILL pay.
@codemaxing
Which statement about AWS EC2 pricing is TRUE?
Anonymous Quiz
23%
You only pay when your server receives traffic
39%
You pay as long as the instance is running, even if idle
5%
Inbound data transfer to EC2 is free
32%
B and C
Whenever I am building an API, I make sure it handles these things
✅ Rate Limiting
✅ Caching
✅ Auth
✅ Validation
✅ Logging
✅ Versioning
✅ Graceful Failure
If you're just returning JSON, you're just exposing a DB.
@codemaxing
✅ Rate Limiting
✅ Caching
✅ Auth
✅ Validation
✅ Logging
✅ Versioning
✅ Graceful Failure
If you're just returning JSON, you're just exposing a DB.
@codemaxing
Might sound a bit weird 😁, but I’m building Current.fm, a platform where you can stream your Spotify music listening to the world. It aggregates everyone listening to the same song as you, shows who they are, and displays the top 10 songs being streamed right now, including breakdowns by country.
You can just connect your Spotify and just leave it and it will stream as long as you don't pause the song.
What do you think?
Watch the demo.
@codemaxing
You can just connect your Spotify and just leave it and it will stream as long as you don't pause the song.
What do you think?
Watch the demo.
@codemaxing
🔥5❤1
Recommended Backend Data Flow
1. Client side HTTP request
2. Server parses request to JSON
3. Middleware checks auth
4. Controller maps routes
5. Service layer does logic
6. DB query runs
7. Response returns
Your fs should look like this
@codemaxing
1. Client side HTTP request
2. Server parses request to JSON
3. Middleware checks auth
4. Controller maps routes
5. Service layer does logic
6. DB query runs
7. Response returns
Your fs should look like this
├── src/
│ ├── middleware/
│ │ └── auth.ts
│ │
│ ├── routes/
│ │ └── user.routes.ts
│ │
│ ├── controllers/
│ │ └── user.controller.ts
│ │
│ ├── services/
│ │ └── user.service.ts
│ │
│ ├── models/
│ │ └── user.model.ts
│ │
│ ├── app.ts
│ └── server.ts
│
├── package.json
└── .env
@codemaxing
❤3🔥2
We hit 1⃣0⃣0⃣ subscribers — thank you, everyone!! 🙌
Special thanks to @Nahom_Biruk for pushing me to start this channel.
Be sure to check out his channel too: https://news.1rj.ru/str/cyber_Guardian5
Now that we’ve reached 100 subscribers, I’m planning to expand to other platforms like X, Instagram, LinkedIn, and TikTok. Stay Tuned!!
Special thanks to @Nahom_Biruk for pushing me to start this channel.
Be sure to check out his channel too: https://news.1rj.ru/str/cyber_Guardian5
Now that we’ve reached 100 subscribers, I’m planning to expand to other platforms like X, Instagram, LinkedIn, and TikTok. Stay Tuned!!
❤5