[GUEST ACCESS MODE: Data is scrambled or limited to provide examples. Make requests using your API key to unlock full data. Check https://lunarcrush.ai/auth for authentication information.] #  @brankopetric00 Branko Branko posts on X about infrastructure, azure, ip, stack the most. They currently have XXXXX followers and XX posts still getting attention that total XXXXXX engagements in the last XX hours. ### Engagements: XXXXXX [#](/creator/twitter::1157414015666184192/interactions)  - X Week XXXXXXX +49% - X Months XXXXXXX -XX% ### Mentions: XX [#](/creator/twitter::1157414015666184192/posts_active)  ### Followers: XXXXX [#](/creator/twitter::1157414015666184192/followers)  - X Week XXXXX +16% - X Months XXXXX +40% ### CreatorRank: XXXXXXX [#](/creator/twitter::1157414015666184192/influencer_rank)  ### Social Influence [#](/creator/twitter::1157414015666184192/influence) --- **Social category influence** [technology brands](/list/technology-brands) XX% [stocks](/list/stocks) #5285 [social networks](/list/social-networks) XXXX% **Social topic influence** [infrastructure](/topic/infrastructure) #401, [azure](/topic/azure) #29, [ip](/topic/ip) #244, [stack](/topic/stack) #376, [git](/topic/git) #17, [$0096hour](/topic/$0096hour) 1.67%, [hardware](/topic/hardware) 1.67%, [cosmos](/topic/cosmos) 1.67%, [files](/topic/files) 1.67%, [tools for](/topic/tools-for) XXXX% **Top accounts mentioned or mentioned by** [@cordasfilip](/creator/undefined) [@realbirdman85](/creator/undefined) [@prmptvault](/creator/undefined) [@kelvinjay1](/creator/undefined) [@codetocloudxx](/creator/undefined) [@cryptoapew3](/creator/undefined) [@echamudi](/creator/undefined) [@producthunt](/creator/undefined) [@srijaanaparthystepbystepguidetoinstalldockeronubuntuinawsa39746e5a63d](/creator/undefined) [@yourec2publicip](/creator/undefined) [@hb_fl3x](/creator/undefined) [@ahenkainii](/creator/undefined) [@pawanpa98011176](/creator/undefined) [@praveshstwt](/creator/undefined) [@manthanp1313](/creator/undefined) [@kiddojazz](/creator/undefined) [@grajat21](/creator/undefined) [@taras_shpek](/creator/undefined) [@sanaullahkx](/creator/undefined) [@coding_with_mrm](/creator/undefined) **Top assets mentioned** [New Relic, Inc. (NEWR)](/topic/$newr) [Intuit Inc. (INTU)](/topic/$intu) [Cloudflare, Inc. (NET)](/topic/cloudflare) [Microsoft Corp. (MSFT)](/topic/microsoft) ### Top Social Posts [#](/creator/twitter::1157414015666184192/posts) --- Top posts by engagements in the last XX hours "AWS EC2: On-Demand vs Spot vs Reserved Instances You're paying 3x more than you need to for compute. Here's the difference: On-Demand Instances: - Pay fixed hourly rate - Available whenever you need them - No commitments or upfront costs - Never get interrupted - Example: $0.096/hour for t3.large Spot Instances: - Pay up to XX% less (same hardware) - Use spare AWS capacity - Can be interrupted with 2-minute warning - Bid on unused capacity - Example: $0.029/hour for t3.large (70% cheaper) Reserved Instances: - Commit for X or X years - Save up to XX% vs On-Demand - Pay upfront partial or no" [X Link](https://x.com/brankopetric00/status/1977397785038049483) [@brankopetric00](/creator/x/brankopetric00) 2025-10-12T15:35Z 5092 followers, 3757 engagements "Simple guide to understand Serverless on AWS: 1) No servers to manage - you write code AWS runs it 2) Pay only when code executes (per request not per hour) 3) Lambda - your code that runs when triggered 4) API Gateway - receives HTTP requests and triggers Lambda 5) DynamoDB - NoSQL database that stores JSON data 6) Auto-scales from X to millions of requests automatically Simple newsletter serverless system project: 1) Create Lambda function to handle email submissions 2) Set up API Gateway POST endpoint to trigger Lambda 3) Create DynamoDB table to store emails as JSON 4) Write Lambda code" [X Link](https://x.com/brankopetric00/status/1976045854088888711) [@brankopetric00](/creator/x/brankopetric00) 2025-10-08T22:03Z 5248 followers, 6361 engagements "AWS vs Azure - Common services comparison: Compute: - EC2 Azure VMs (virtual servers) - Lambda Azure Functions (serverless) - EKS AKS (Kubernetes) Storage: - S3 Blob Storage (object storage) - EBS Managed Disks (block storage) - EFS Azure Files (file storage) Database: - RDS Azure Database (managed SQL) - DynamoDB Cosmos DB (NoSQL) - Aurora Azure SQL (high performance) Networking: - VPC Virtual Network (private network) - Route XX Azure DNS (domain management) - CloudFront Azure CDN (content delivery) Identity: IAM Azure RBAC (resource access control) IAM Identity Center Entra ID (formerly" [X Link](https://x.com/brankopetric00/status/1977390926508003758) [@brankopetric00](/creator/x/brankopetric00) 2025-10-12T15:08Z 5258 followers, 16.9K engagements "AWS: ALB vs NLB Application Load Balancer (ALB) - Works at Layer X (HTTP/HTTPS) - Routes based on URL path headers hostnames - Perfect for web apps & microservices - SSL termination built-in - Slower but smarter routing Network Load Balancer (NLB) - Works at Layer X (TCP/UDP) - Routes based on IP & port only - Ultra-fast millions of requests/sec - Static IP support - Best for extreme performance needs Use ALB When - Running web applications - Need path-based routing (/api /admin) - Host-based routing (app1.com app2.com) - Want AWS WAF integration Use NLB When - Need extreme performance/low" [X Link](https://x.com/brankopetric00/status/1978691624491471044) [@brankopetric00](/creator/x/brankopetric00) 2025-10-16T05:17Z 5251 followers, 6966 engagements "REST vs GraphQL vs gRPC: Which API Style REST - Most common easiest to learn - Multiple endpoints for different data - Example: GET /users/123 GET /posts/456 - Use for: Simple APIs public APIs MVPs GraphQL - Request exactly what you need - Single endpoint flexible queries - Example: Query user(id: 123) name email - Use for: Complex data mobile apps dashboards gRPC - Super fast binary protocol - Strongly typed with contracts - Example: Service calls with protobuf - Use for: Microservices high performance needs Quick Comparison Speed: gRPC REST GraphQL Ease: REST GraphQL gRPC Flexibility:" [X Link](https://x.com/brankopetric00/status/1979029350000529653) [@brankopetric00](/creator/x/brankopetric00) 2025-10-17T03:39Z 5290 followers, XXX engagements "HTTP Status Codes Every Dev Should Know XXX OK - Success everything worked XXX Created - Successfully made something new XXX No Content - Success but nothing to return XXX Moved Permanently - Resource moved forever update your links XXX Found - Temporary redirect XXX Bad Request - Your request is malformed XXX Unauthorized - Need to login first XXX Forbidden - Logged in but not allowed XXX Not Found - Resource doesn't exist XXX Too Many Requests - You're being rate limited XXX Internal Server Error - Something broke on server XXX Bad Gateway - Proxy/load balancer can't reach server 503" [X Link](https://x.com/brankopetric00/status/1979293591974613060) [@brankopetric00](/creator/x/brankopetric00) 2025-10-17T21:09Z 5325 followers, 13.6K engagements "AWS VPC basics for beginners: X. VPC - your private network in AWS cloud X. Subnet - segment of VPC IP range (public or private) X. Internet Gateway - allows internet access to VPC X. Route Table - directs network traffic X. Security Group - instance-level firewall X. NACL - subnet-level firewall X. NAT Gateway - lets private subnet access internet X. VPC Peering - connects two VPCs Understand networking before launching EC2 instances" [X Link](https://x.com/brankopetric00/status/1979599607501066378) [@brankopetric00](/creator/x/brankopetric00) 2025-10-18T17:25Z 5325 followers, XXX engagements "DevSecOps scanning tools for CI/CD pipelines: SAST (Static Analysis): X. SonarQube - scans code for bugs vulnerabilities and code smells X. Semgrep - fast customizable static analysis with simple rules Dependency Scanning: X. Snyk - finds vulnerabilities in open-source dependencies X. OWASP Dependency-Check - free tool for known vulnerable components Container Security: X. Trivy - scans container images for vulnerabilities and misconfigurations X. Grype - fast vulnerability scanner for container images and filesystems Secret Detection: X. GitGuardian - detects secrets API keys credentials in" [X Link](https://x.com/brankopetric00/status/1977382339970764835) [@brankopetric00](/creator/x/brankopetric00) 2025-10-12T14:34Z 5322 followers, 14.9K engagements "DevOps project for beginners 1) Create EC2 instance 2) Find X tier application (FE BE DB) 3) Containerize application with Docker 4) Build Docker image and push to AWS ECR 5) SSH into EC2 and get AWS ECR credentials 6) Pull Docker image and start container 7) Install nginx web server 8) Configure nginx to point to local container 9) Try accessing application on EC2 public IP Advanced: 1) Create GitHub Actions pipeline for automated deployment 2) Create EC2 IAM profile for accessing AWS ECR 3) Configure Route53 domain and point to EC2 public IP This project covers the basics of deploying an" [X Link](https://x.com/brankopetric00/status/1978811939904991556) [@brankopetric00](/creator/x/brankopetric00) 2025-10-16T13:15Z 5321 followers, 63K engagements "DevOps project for beginners Terraform + AWS X. Install and configure Terraform X. Create AWS IAM credentials for Terraform X. Create S3 bucket for Terraform state X. Create DynamoDB for Terraform state locking X. Create X Terraform modules: VPC Subnet EC2 X. Write Terraform configuration which uses X modules to provision infrastructure X. Use Terraform Workspaces to provision infrastructure to three different environments (dev qa prod) Ansible X. Create Ansible playbook to install Docker on all three EC2 servers X. Create Ansible playbook deploy Nginx on all three EC2 servers XX. Use Ansible" [X Link](https://x.com/brankopetric00/status/1979330082641744338) [@brankopetric00](/creator/x/brankopetric00) 2025-10-17T23:34Z 5324 followers, 8119 engagements "@CordasFilip @kelvinjay1 @RealBirdman85 Personally I do not like their UI" [X Link](https://x.com/brankopetric00/status/1979534062583701943) [@brankopetric00](/creator/x/brankopetric00) 2025-10-18T13:04Z 5322 followers, XX engagements "Top X DevOps monitoring tools in 2025: X. Prometheus - metrics and alerting industry standard X. Grafana - visualization pairs perfectly with Prometheus X. Datadog - all-in-one but pricey great for enterprises X. New Relic - APM focused excellent for troubleshooting X. ELK Stack - logs analysis steep learning curve X. CloudWatch - AWS native easiest if you're all-in on AWS Start with Prometheus and Grafana for free learning" [X Link](https://x.com/brankopetric00/status/1979612945115210035) [@brankopetric00](/creator/x/brankopetric00) 2025-10-18T18:18Z 5324 followers, 2512 engagements "Most common vibe coding security vulnerabilities: SQL Injection - AI forgets parameterized queries concatenates user input directly XSS (86% failure rate) - No input sanitization before displaying data Hardcoded secrets - API keys written directly in code instead of env variables Missing auth - Endpoints created with zero authentication checks Log injection (88% fail) - Unvalidated data written straight to logs No input validation - Most common flaw AI skips it unless you explicitly ask Vibe coding is fine. Shipping without review isn't" [X Link](https://x.com/brankopetric00/status/1977770424508506278) [@brankopetric00](/creator/x/brankopetric00) 2025-10-13T16:16Z 5297 followers, XXX engagements "How Kubernetes handles traffic: From URL to Pod You type a URL in your browser. Heres the journey your request takes through Kubernetes: X. DNS Resolution: - Browser asks DNS: Whats the IP for api.myapp.com(http://api.myapp.com) - DNS returns the Load Balancer IP address - Browser now knows where to send the request X. Load Balancer (Entry Point): - Request hits AWS ALB/NLB (cloud load balancer) - Load balancer is created by Kubernetes Ingress or Service type LoadBalancer - Terminates SSL/TLS connection here - Routes traffic based on hostname and path X. Ingress Controller: - Load Balancer" [X Link](https://x.com/brankopetric00/status/1977616150226780573) [@brankopetric00](/creator/x/brankopetric00) 2025-10-13T06:03Z 5321 followers, 31K engagements "DevOps project for beginners: Terraform + Azure What you'll build: Deploy a complete web application on Azure using Terraform. Part X - Infrastructure with Terraform: X. Setup (Local machine): - Install Terraform CLI - Install Azure CLI and login: az login - Install kubectl for AKS management - Install Helm X for package management X. Resource Group & Networking: - Create Resource Group in chosen region (East US West Europe) - Create Virtual Network with CIDR block (10.0.0.0/16) - Create X subnets (AKS: 10.0.1.0/24 Services: 10.0.2.0/24) - Configure Network Security Group (NSG) - Allow HTTPS" [X Link](https://x.com/brankopetric00/status/1977632920283005389) [@brankopetric00](/creator/x/brankopetric00) 2025-10-13T07:10Z 5321 followers, 12.2K engagements "DevOps project for beginners: Azure DevOps + AKS Build a complete CI/CD pipeline and deploy to Kubernetes. What you'll build: Automated pipeline that builds tests and deploys containerized app to Azure Kubernetes Service. Part X - Setup: X. Prerequisites: - Azure account with active subscription - Azure CLI installed locally - Docker installed - kubectl installed - Sample application (Node.js/Python/Java) X. Azure Resources: - Create Resource Group - Create Azure Container Registry (ACR) - Create AKS cluster (2 nodes Standard tier) - Enable managed identity for AKS X. Authentication Setup: -" [X Link](https://x.com/brankopetric00/status/1978019682662633625) [@brankopetric00](/creator/x/brankopetric00) 2025-10-14T08:46Z 5325 followers, 16.9K engagements "Karpenter + KEDA explained (Kubernetes Scaling): - Your SQS queue has 1000 messages. - KEDA sees it scales pods from X to XX - XX pods need nodes. - Karpenter sees it adds nodes in XX seconds Result: Your queue gets processed automatically no manual scaling needed. KEDA watches queues. Karpenter provisions nodes. Together = infrastructure that scales with your actual workload" [X Link](https://x.com/brankopetric00/status/1978213222097490310) [@brankopetric00](/creator/x/brankopetric00) 2025-10-14T21:36Z 5319 followers, 5701 engagements "ArgoCD Fundamentals What is ArgoCD - Kubernetes deployment tool - Continuous delivery for K8s apps - Automatically syncs Git repo to cluster - Open source by Intuit GitOps Approach - Git = single source of truth - All configs stored in Git repos - Declare desired state in YAML - ArgoCD makes cluster match Git - No manual kubectl commands How It Works - Push Kubernetes manifests to Git - ArgoCD monitors the repo - Detects changes automatically - Applies changes to cluster - Keeps everything in sync Key Concepts Application - Represents your app in ArgoCD - Points to Git repo + cluster Sync" [X Link](https://x.com/brankopetric00/status/1978762202732458296) [@brankopetric00](/creator/x/brankopetric00) 2025-10-16T09:57Z 5322 followers, 7917 engagements "Learn Linux before Docker Learn Git before GitHub Actions Learn Docker before Kubernetes Learn Cloud (AWS/Azure) before Terraform Learn Kubernetes before Helm Learn CI/CD before GitOps (ArgoCD/FluxCD) Learn networking basics before cloud networking" [X Link](https://x.com/brankopetric00/status/1976947918423945635) [@brankopetric00](/creator/x/brankopetric00) 2025-10-11T09:48Z 5322 followers, 6083 engagements "What happens when you type a URL in your browser: You type: google.com X. DNS lookup (domain gets resolved to IP address) X. TCP handshake (connection established with server) X. TLS handshake (HTTPS encryption negotiated) X. HTTP request (browser asks for the page) X. Server response (HTML CSS JS sent back) X. Browser rendering (page displayed on screen)" [X Link](https://x.com/brankopetric00/status/1977362949162328484) [@brankopetric00](/creator/x/brankopetric00) 2025-10-12T13:17Z 5325 followers, 58.8K engagements "My app with XXX monthly active users Tech Stack & Costs - EC2 t3.medium backend API server $30.37/month - Route53 DNS management $0.60/month - Lambda serverless functions $XXXX (free tier) - API Gateway $0.52/month - DynamoDB User data storage $XXXX (free tier) Amazon Cognito $XXXX (free tier) Total: $31.50/month Per User: $0.21/month" [X Link](https://x.com/brankopetric00/status/1978787254706557040) [@brankopetric00](/creator/x/brankopetric00) 2025-10-16T11:37Z 5322 followers, 1400 engagements "How Load Balancers Actually Work What It Does - Distributes incoming traffic across multiple servers - Prevents any single server from getting overwhelmed - Like a traffic cop for your application Basic Flow X. User sends request X. Hits load balancer first X. Load balancer picks a server X. Forwards request to chosen server X. Server responds back through load balancer How It Picks Servers Round Robin - Server X - Server X - Server X - repeat - Simple and fair Least Connections - Sends to server with fewest active connections - Smart for varying request times IP Hash/Sticky Session - Same" [X Link](https://x.com/brankopetric00/status/1978981534884299166) [@brankopetric00](/creator/x/brankopetric00) 2025-10-17T00:29Z 5324 followers, 11.7K engagements "@CordasFilip @kelvinjay1 @RealBirdman85 I mostly never use UI to do stuff just to verify resources deployed and configs. I find it difficult to navigate through and it's about liking" [X Link](https://x.com/brankopetric00/status/1979535893489746110) [@brankopetric00](/creator/x/brankopetric00) 2025-10-18T13:11Z 5320 followers, XX engagements "@echamudi Pulumi is widely adopted. To be honest for someone who comes from a Python background I really like their ecosystem. Check my below post; I've included a GitHub repo with a Pulumi AWS serverless starter project so you can get a feel for" [X Link](https://x.com/brankopetric00/status/1979622939860533586) [@brankopetric00](/creator/x/brankopetric00) 2025-10-18T18:57Z 5321 followers, XXX engagements "Simple DevOps project for beginners: X. Create AWS VPC with Terraform X. Create EC2 with Terraform X. Containerize three tier application (FE BE DB) with Docker X. Create simple GitHub Actions pipeline to build and push docker images to Docker Hub X. Create simple GitHub Actions pipeline to deploy docker images to EC2 Advanced: X. Store Terraform state on S3 X. Write docker-compose for three tier app X. Automate Terraform plan and apply with GitHub Actions This project covers basics of: Terraform AWS Docker and GitHub Actions. If you need help feel free to reach out" [X Link](https://x.com/brankopetric00/status/1973698637327699988) [@brankopetric00](/creator/x/brankopetric00) 2025-10-02T10:36Z 5321 followers, 71.5K engagements "Simple Terraform project for beginners: 1) Install Terraform on your local machine 2) Create AWS account and configure AWS CLI credentials 3) Write Terraform configuration to create a VPC with public and private subnets 4) Deploy an EC2 instance in the public subnet 5) Create a Security Group to allow SSH and HTTP traffic 6) Output the EC2 public IP address Advanced: 1) Store Terraform state in S3 backend with DynamoDB locking 2) Organize code with modules (VPC module EC2 module) 3) Use variables and tfvars files for environment configuration 4) Implement Terraform workspaces for multiple" [X Link](https://x.com/brankopetric00/status/1975517739012837378) [@brankopetric00](/creator/x/brankopetric00) 2025-10-07T11:05Z 5320 followers, 30.4K engagements "DevOps project for beginners: Terraform + Kubernetes Build real infrastructure not tutorials. What you'll build: Deploy a complete web application on Kubernetes using Terraform. Part X - Infrastructure with Terraform: X. Setup (Local machine): - Install Terraform CLI - Install AWS CLI and configure credentials - Install kubectl for cluster management X. VPC Configuration: - Create VPC with CIDR block (10.0.0.0/16) - Create X public subnets in different AZs (10.0.1.0/24 10.0.2.0/24) - Create X private subnets in different AZs (10.0.3.0/24 10.0.4.0/24) - Internet Gateway for public subnet" [X Link](https://x.com/brankopetric00/status/1977451596490686919) [@brankopetric00](/creator/x/brankopetric00) 2025-10-12T19:09Z 5320 followers, 60.1K engagements "My Newsletter Setup for FREE on AWS Tech Stack - AWS Lambda (send emails) - DynamoDB (store subscribers) - API Gateway (subscription endpoint) - SES (Simple Email Service) What You Get - Fully serverless newsletter system - No monthly fees (within free tier) - Scales automatically - No server maintenance How It Works - User subscribes via API endpoint - Lambda stores email in DynamoDB - SES sends bulk emails - Pay only for what you use Free Tier Limits - Lambda: 1M requests/month FREE - DynamoDB: 25GB storage FREE - SES: 62K emails/month FREE - API Gateway: 1M requests/month FREE Perfect For" [X Link](https://x.com/brankopetric00/status/1978754790831411619) [@brankopetric00](/creator/x/brankopetric00) 2025-10-16T09:28Z 5320 followers, XXX engagements "Vibe Coding Will Get You Hacked AI code looks good ships fast full of security holes. Problems: - SQL injection - XSS vulnerabilities - No input validation - Secrets hardcoded - Console logs with sensitive data during debugging Bigger problem: People are not aware How to fix: - Review EVERY AI-generated line - Run security scanners like Trivy and GitGuardian - Test with malicious inputs - Verify packages exist & are safe Assume insecure until proven otherwise" [X Link](https://x.com/brankopetric00/status/1978919170067554610) [@brankopetric00](/creator/x/brankopetric00) 2025-10-16T20:21Z 5325 followers, 1031 engagements "AWS Azure GitHub Actions Jenkins Pulumi Terraform Nginx Apache VS Code Anything else Cloudflare Akamai Slack Microsoft Teams 1Password LastPass" [X Link](https://x.com/brankopetric00/status/1978950043039056291) [@brankopetric00](/creator/x/brankopetric00) 2025-10-16T22:23Z 5325 followers, 58.1K engagements "How to land your first DevOps job: X. Build 3-5 projects on GitHub with detailed READocs X. Learn one cloud platform well (AWS/Azure/GCP) X. Master Docker and basic Kubernetes X. Understand CI/CD pipelines (Jenkins or GitHub Actions) X. Practice common Linux commands and scripting X. Join DevOps communities and engage X. Apply to 5-10 jobs per week consistently Consistency beats perfection in job hunting" [X Link](https://x.com/brankopetric00/status/1979632574608584948) [@brankopetric00](/creator/x/brankopetric00) 2025-10-18T19:36Z 5322 followers, 1237 engagements
[GUEST ACCESS MODE: Data is scrambled or limited to provide examples. Make requests using your API key to unlock full data. Check https://lunarcrush.ai/auth for authentication information.]
Branko posts on X about infrastructure, azure, ip, stack the most. They currently have XXXXX followers and XX posts still getting attention that total XXXXXX engagements in the last XX hours.
Social category influence technology brands XX% stocks #5285 social networks XXXX%
Social topic influence infrastructure #401, azure #29, ip #244, stack #376, git #17, $0096hour 1.67%, hardware 1.67%, cosmos 1.67%, files 1.67%, tools for XXXX%
Top accounts mentioned or mentioned by @cordasfilip @realbirdman85 @prmptvault @kelvinjay1 @codetocloudxx @cryptoapew3 @echamudi @producthunt @srijaanaparthystepbystepguidetoinstalldockeronubuntuinawsa39746e5a63d @yourec2publicip @hb_fl3x @ahenkainii @pawanpa98011176 @praveshstwt @manthanp1313 @kiddojazz @grajat21 @taras_shpek @sanaullahkx @coding_with_mrm
Top assets mentioned New Relic, Inc. (NEWR) Intuit Inc. (INTU) Cloudflare, Inc. (NET) Microsoft Corp. (MSFT)
Top posts by engagements in the last XX hours
"AWS EC2: On-Demand vs Spot vs Reserved Instances You're paying 3x more than you need to for compute. Here's the difference: On-Demand Instances: - Pay fixed hourly rate - Available whenever you need them - No commitments or upfront costs - Never get interrupted - Example: $0.096/hour for t3.large Spot Instances: - Pay up to XX% less (same hardware) - Use spare AWS capacity - Can be interrupted with 2-minute warning - Bid on unused capacity - Example: $0.029/hour for t3.large (70% cheaper) Reserved Instances: - Commit for X or X years - Save up to XX% vs On-Demand - Pay upfront partial or no"
X Link @brankopetric00 2025-10-12T15:35Z 5092 followers, 3757 engagements
"Simple guide to understand Serverless on AWS: 1) No servers to manage - you write code AWS runs it 2) Pay only when code executes (per request not per hour) 3) Lambda - your code that runs when triggered 4) API Gateway - receives HTTP requests and triggers Lambda 5) DynamoDB - NoSQL database that stores JSON data 6) Auto-scales from X to millions of requests automatically Simple newsletter serverless system project: 1) Create Lambda function to handle email submissions 2) Set up API Gateway POST endpoint to trigger Lambda 3) Create DynamoDB table to store emails as JSON 4) Write Lambda code"
X Link @brankopetric00 2025-10-08T22:03Z 5248 followers, 6361 engagements
"AWS vs Azure - Common services comparison: Compute: - EC2 Azure VMs (virtual servers) - Lambda Azure Functions (serverless) - EKS AKS (Kubernetes) Storage: - S3 Blob Storage (object storage) - EBS Managed Disks (block storage) - EFS Azure Files (file storage) Database: - RDS Azure Database (managed SQL) - DynamoDB Cosmos DB (NoSQL) - Aurora Azure SQL (high performance) Networking: - VPC Virtual Network (private network) - Route XX Azure DNS (domain management) - CloudFront Azure CDN (content delivery) Identity: IAM Azure RBAC (resource access control) IAM Identity Center Entra ID (formerly"
X Link @brankopetric00 2025-10-12T15:08Z 5258 followers, 16.9K engagements
"AWS: ALB vs NLB Application Load Balancer (ALB) - Works at Layer X (HTTP/HTTPS) - Routes based on URL path headers hostnames - Perfect for web apps & microservices - SSL termination built-in - Slower but smarter routing Network Load Balancer (NLB) - Works at Layer X (TCP/UDP) - Routes based on IP & port only - Ultra-fast millions of requests/sec - Static IP support - Best for extreme performance needs Use ALB When - Running web applications - Need path-based routing (/api /admin) - Host-based routing (app1.com app2.com) - Want AWS WAF integration Use NLB When - Need extreme performance/low"
X Link @brankopetric00 2025-10-16T05:17Z 5251 followers, 6966 engagements
"REST vs GraphQL vs gRPC: Which API Style REST - Most common easiest to learn - Multiple endpoints for different data - Example: GET /users/123 GET /posts/456 - Use for: Simple APIs public APIs MVPs GraphQL - Request exactly what you need - Single endpoint flexible queries - Example: Query user(id: 123) name email - Use for: Complex data mobile apps dashboards gRPC - Super fast binary protocol - Strongly typed with contracts - Example: Service calls with protobuf - Use for: Microservices high performance needs Quick Comparison Speed: gRPC REST GraphQL Ease: REST GraphQL gRPC Flexibility:"
X Link @brankopetric00 2025-10-17T03:39Z 5290 followers, XXX engagements
"HTTP Status Codes Every Dev Should Know XXX OK - Success everything worked XXX Created - Successfully made something new XXX No Content - Success but nothing to return XXX Moved Permanently - Resource moved forever update your links XXX Found - Temporary redirect XXX Bad Request - Your request is malformed XXX Unauthorized - Need to login first XXX Forbidden - Logged in but not allowed XXX Not Found - Resource doesn't exist XXX Too Many Requests - You're being rate limited XXX Internal Server Error - Something broke on server XXX Bad Gateway - Proxy/load balancer can't reach server 503"
X Link @brankopetric00 2025-10-17T21:09Z 5325 followers, 13.6K engagements
"AWS VPC basics for beginners: X. VPC - your private network in AWS cloud X. Subnet - segment of VPC IP range (public or private) X. Internet Gateway - allows internet access to VPC X. Route Table - directs network traffic X. Security Group - instance-level firewall X. NACL - subnet-level firewall X. NAT Gateway - lets private subnet access internet X. VPC Peering - connects two VPCs Understand networking before launching EC2 instances"
X Link @brankopetric00 2025-10-18T17:25Z 5325 followers, XXX engagements
"DevSecOps scanning tools for CI/CD pipelines: SAST (Static Analysis): X. SonarQube - scans code for bugs vulnerabilities and code smells X. Semgrep - fast customizable static analysis with simple rules Dependency Scanning: X. Snyk - finds vulnerabilities in open-source dependencies X. OWASP Dependency-Check - free tool for known vulnerable components Container Security: X. Trivy - scans container images for vulnerabilities and misconfigurations X. Grype - fast vulnerability scanner for container images and filesystems Secret Detection: X. GitGuardian - detects secrets API keys credentials in"
X Link @brankopetric00 2025-10-12T14:34Z 5322 followers, 14.9K engagements
"DevOps project for beginners 1) Create EC2 instance 2) Find X tier application (FE BE DB) 3) Containerize application with Docker 4) Build Docker image and push to AWS ECR 5) SSH into EC2 and get AWS ECR credentials 6) Pull Docker image and start container 7) Install nginx web server 8) Configure nginx to point to local container 9) Try accessing application on EC2 public IP Advanced: 1) Create GitHub Actions pipeline for automated deployment 2) Create EC2 IAM profile for accessing AWS ECR 3) Configure Route53 domain and point to EC2 public IP This project covers the basics of deploying an"
X Link @brankopetric00 2025-10-16T13:15Z 5321 followers, 63K engagements
"DevOps project for beginners Terraform + AWS X. Install and configure Terraform X. Create AWS IAM credentials for Terraform X. Create S3 bucket for Terraform state X. Create DynamoDB for Terraform state locking X. Create X Terraform modules: VPC Subnet EC2 X. Write Terraform configuration which uses X modules to provision infrastructure X. Use Terraform Workspaces to provision infrastructure to three different environments (dev qa prod) Ansible X. Create Ansible playbook to install Docker on all three EC2 servers X. Create Ansible playbook deploy Nginx on all three EC2 servers XX. Use Ansible"
X Link @brankopetric00 2025-10-17T23:34Z 5324 followers, 8119 engagements
"@CordasFilip @kelvinjay1 @RealBirdman85 Personally I do not like their UI"
X Link @brankopetric00 2025-10-18T13:04Z 5322 followers, XX engagements
"Top X DevOps monitoring tools in 2025: X. Prometheus - metrics and alerting industry standard X. Grafana - visualization pairs perfectly with Prometheus X. Datadog - all-in-one but pricey great for enterprises X. New Relic - APM focused excellent for troubleshooting X. ELK Stack - logs analysis steep learning curve X. CloudWatch - AWS native easiest if you're all-in on AWS Start with Prometheus and Grafana for free learning"
X Link @brankopetric00 2025-10-18T18:18Z 5324 followers, 2512 engagements
"Most common vibe coding security vulnerabilities: SQL Injection - AI forgets parameterized queries concatenates user input directly XSS (86% failure rate) - No input sanitization before displaying data Hardcoded secrets - API keys written directly in code instead of env variables Missing auth - Endpoints created with zero authentication checks Log injection (88% fail) - Unvalidated data written straight to logs No input validation - Most common flaw AI skips it unless you explicitly ask Vibe coding is fine. Shipping without review isn't"
X Link @brankopetric00 2025-10-13T16:16Z 5297 followers, XXX engagements
"How Kubernetes handles traffic: From URL to Pod You type a URL in your browser. Heres the journey your request takes through Kubernetes: X. DNS Resolution: - Browser asks DNS: Whats the IP for api.myapp.com(http://api.myapp.com) - DNS returns the Load Balancer IP address - Browser now knows where to send the request X. Load Balancer (Entry Point): - Request hits AWS ALB/NLB (cloud load balancer) - Load balancer is created by Kubernetes Ingress or Service type LoadBalancer - Terminates SSL/TLS connection here - Routes traffic based on hostname and path X. Ingress Controller: - Load Balancer"
X Link @brankopetric00 2025-10-13T06:03Z 5321 followers, 31K engagements
"DevOps project for beginners: Terraform + Azure What you'll build: Deploy a complete web application on Azure using Terraform. Part X - Infrastructure with Terraform: X. Setup (Local machine): - Install Terraform CLI - Install Azure CLI and login: az login - Install kubectl for AKS management - Install Helm X for package management X. Resource Group & Networking: - Create Resource Group in chosen region (East US West Europe) - Create Virtual Network with CIDR block (10.0.0.0/16) - Create X subnets (AKS: 10.0.1.0/24 Services: 10.0.2.0/24) - Configure Network Security Group (NSG) - Allow HTTPS"
X Link @brankopetric00 2025-10-13T07:10Z 5321 followers, 12.2K engagements
"DevOps project for beginners: Azure DevOps + AKS Build a complete CI/CD pipeline and deploy to Kubernetes. What you'll build: Automated pipeline that builds tests and deploys containerized app to Azure Kubernetes Service. Part X - Setup: X. Prerequisites: - Azure account with active subscription - Azure CLI installed locally - Docker installed - kubectl installed - Sample application (Node.js/Python/Java) X. Azure Resources: - Create Resource Group - Create Azure Container Registry (ACR) - Create AKS cluster (2 nodes Standard tier) - Enable managed identity for AKS X. Authentication Setup: -"
X Link @brankopetric00 2025-10-14T08:46Z 5325 followers, 16.9K engagements
"Karpenter + KEDA explained (Kubernetes Scaling): - Your SQS queue has 1000 messages. - KEDA sees it scales pods from X to XX - XX pods need nodes. - Karpenter sees it adds nodes in XX seconds Result: Your queue gets processed automatically no manual scaling needed. KEDA watches queues. Karpenter provisions nodes. Together = infrastructure that scales with your actual workload"
X Link @brankopetric00 2025-10-14T21:36Z 5319 followers, 5701 engagements
"ArgoCD Fundamentals What is ArgoCD - Kubernetes deployment tool - Continuous delivery for K8s apps - Automatically syncs Git repo to cluster - Open source by Intuit GitOps Approach - Git = single source of truth - All configs stored in Git repos - Declare desired state in YAML - ArgoCD makes cluster match Git - No manual kubectl commands How It Works - Push Kubernetes manifests to Git - ArgoCD monitors the repo - Detects changes automatically - Applies changes to cluster - Keeps everything in sync Key Concepts Application - Represents your app in ArgoCD - Points to Git repo + cluster Sync"
X Link @brankopetric00 2025-10-16T09:57Z 5322 followers, 7917 engagements
"Learn Linux before Docker Learn Git before GitHub Actions Learn Docker before Kubernetes Learn Cloud (AWS/Azure) before Terraform Learn Kubernetes before Helm Learn CI/CD before GitOps (ArgoCD/FluxCD) Learn networking basics before cloud networking"
X Link @brankopetric00 2025-10-11T09:48Z 5322 followers, 6083 engagements
"What happens when you type a URL in your browser: You type: google.com X. DNS lookup (domain gets resolved to IP address) X. TCP handshake (connection established with server) X. TLS handshake (HTTPS encryption negotiated) X. HTTP request (browser asks for the page) X. Server response (HTML CSS JS sent back) X. Browser rendering (page displayed on screen)"
X Link @brankopetric00 2025-10-12T13:17Z 5325 followers, 58.8K engagements
"My app with XXX monthly active users Tech Stack & Costs - EC2 t3.medium backend API server $30.37/month - Route53 DNS management $0.60/month - Lambda serverless functions $XXXX (free tier) - API Gateway $0.52/month - DynamoDB User data storage $XXXX (free tier) Amazon Cognito $XXXX (free tier) Total: $31.50/month Per User: $0.21/month"
X Link @brankopetric00 2025-10-16T11:37Z 5322 followers, 1400 engagements
"How Load Balancers Actually Work What It Does - Distributes incoming traffic across multiple servers - Prevents any single server from getting overwhelmed - Like a traffic cop for your application Basic Flow X. User sends request X. Hits load balancer first X. Load balancer picks a server X. Forwards request to chosen server X. Server responds back through load balancer How It Picks Servers Round Robin - Server X - Server X - Server X - repeat - Simple and fair Least Connections - Sends to server with fewest active connections - Smart for varying request times IP Hash/Sticky Session - Same"
X Link @brankopetric00 2025-10-17T00:29Z 5324 followers, 11.7K engagements
"@CordasFilip @kelvinjay1 @RealBirdman85 I mostly never use UI to do stuff just to verify resources deployed and configs. I find it difficult to navigate through and it's about liking"
X Link @brankopetric00 2025-10-18T13:11Z 5320 followers, XX engagements
"@echamudi Pulumi is widely adopted. To be honest for someone who comes from a Python background I really like their ecosystem. Check my below post; I've included a GitHub repo with a Pulumi AWS serverless starter project so you can get a feel for"
X Link @brankopetric00 2025-10-18T18:57Z 5321 followers, XXX engagements
"Simple DevOps project for beginners: X. Create AWS VPC with Terraform X. Create EC2 with Terraform X. Containerize three tier application (FE BE DB) with Docker X. Create simple GitHub Actions pipeline to build and push docker images to Docker Hub X. Create simple GitHub Actions pipeline to deploy docker images to EC2 Advanced: X. Store Terraform state on S3 X. Write docker-compose for three tier app X. Automate Terraform plan and apply with GitHub Actions This project covers basics of: Terraform AWS Docker and GitHub Actions. If you need help feel free to reach out"
X Link @brankopetric00 2025-10-02T10:36Z 5321 followers, 71.5K engagements
"Simple Terraform project for beginners: 1) Install Terraform on your local machine 2) Create AWS account and configure AWS CLI credentials 3) Write Terraform configuration to create a VPC with public and private subnets 4) Deploy an EC2 instance in the public subnet 5) Create a Security Group to allow SSH and HTTP traffic 6) Output the EC2 public IP address Advanced: 1) Store Terraform state in S3 backend with DynamoDB locking 2) Organize code with modules (VPC module EC2 module) 3) Use variables and tfvars files for environment configuration 4) Implement Terraform workspaces for multiple"
X Link @brankopetric00 2025-10-07T11:05Z 5320 followers, 30.4K engagements
"DevOps project for beginners: Terraform + Kubernetes Build real infrastructure not tutorials. What you'll build: Deploy a complete web application on Kubernetes using Terraform. Part X - Infrastructure with Terraform: X. Setup (Local machine): - Install Terraform CLI - Install AWS CLI and configure credentials - Install kubectl for cluster management X. VPC Configuration: - Create VPC with CIDR block (10.0.0.0/16) - Create X public subnets in different AZs (10.0.1.0/24 10.0.2.0/24) - Create X private subnets in different AZs (10.0.3.0/24 10.0.4.0/24) - Internet Gateway for public subnet"
X Link @brankopetric00 2025-10-12T19:09Z 5320 followers, 60.1K engagements
"My Newsletter Setup for FREE on AWS Tech Stack - AWS Lambda (send emails) - DynamoDB (store subscribers) - API Gateway (subscription endpoint) - SES (Simple Email Service) What You Get - Fully serverless newsletter system - No monthly fees (within free tier) - Scales automatically - No server maintenance How It Works - User subscribes via API endpoint - Lambda stores email in DynamoDB - SES sends bulk emails - Pay only for what you use Free Tier Limits - Lambda: 1M requests/month FREE - DynamoDB: 25GB storage FREE - SES: 62K emails/month FREE - API Gateway: 1M requests/month FREE Perfect For"
X Link @brankopetric00 2025-10-16T09:28Z 5320 followers, XXX engagements
"Vibe Coding Will Get You Hacked AI code looks good ships fast full of security holes. Problems: - SQL injection - XSS vulnerabilities - No input validation - Secrets hardcoded - Console logs with sensitive data during debugging Bigger problem: People are not aware How to fix: - Review EVERY AI-generated line - Run security scanners like Trivy and GitGuardian - Test with malicious inputs - Verify packages exist & are safe Assume insecure until proven otherwise"
X Link @brankopetric00 2025-10-16T20:21Z 5325 followers, 1031 engagements
"AWS Azure GitHub Actions Jenkins Pulumi Terraform Nginx Apache VS Code Anything else Cloudflare Akamai Slack Microsoft Teams 1Password LastPass"
X Link @brankopetric00 2025-10-16T22:23Z 5325 followers, 58.1K engagements
"How to land your first DevOps job: X. Build 3-5 projects on GitHub with detailed READocs X. Learn one cloud platform well (AWS/Azure/GCP) X. Master Docker and basic Kubernetes X. Understand CI/CD pipelines (Jenkins or GitHub Actions) X. Practice common Linux commands and scripting X. Join DevOps communities and engage X. Apply to 5-10 jobs per week consistently Consistency beats perfection in job hunting"
X Link @brankopetric00 2025-10-18T19:36Z 5322 followers, 1237 engagements
/creator/x::brankopetric00