[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, github, ip the most. They currently have XXXXX followers and XX posts still getting attention that total XXXXXXX engagements in the last XX hours.
Social category influence technology brands XXXXX% stocks XXXX% social networks XXXX%
Social topic influence infrastructure #182, azure #57, github #30, ip #87, create a #336, url 2.44%, automation #82, repo #205, build a #1168, linux XXXX%
Top accounts mentioned or mentioned by @cordasfilip @realbirdman85 @prmptvault @kelvinjay1 @codetocloudxx @cryptoapew3 @echamudi @pawanpa98011176 @producthunt @srijaanaparthystepbystepguidetoinstalldockeronubuntuinawsa39746e5a63d @yourec2publicip @m_k_manoj @taras_shpek @ahenkainii @akubuealexander @colonelmanic @carllabuschagne @vonfromjackson @sanjeevsanju00 @surajs_99
Top assets mentioned Intuit Inc. (INTU) Cloudflare, Inc. (NET) Microsoft Corp. (MSFT) New Relic, Inc. (NEWR)
Top posts by engagements in the last XX hours
"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 5382 followers, 6366 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 5372 followers, 6091 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 5408 followers, 5715 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 5400 followers, XXX engagements
"@CordasFilip @kelvinjay1 @RealBirdman85 Personally I do not like their UI"
X Link @brankopetric00 2025-10-18T13:04Z 5367 followers, XX 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 5426 followers, 71.6K 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 5415 followers, 30.5K 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 5422 followers, 14.9K 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 5417 followers, 31.1K 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 5457 followers, 7012 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 5472 followers, 1053 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 5457 followers, 11.8K 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 5502 followers, 12.3K engagements
"Ansible vs Terraform Terraform - Build Infrastructure - Creates servers databases networks - Provisions cloud resources - Example: Create X EC2 instances + load balancer Ansible - Configure Software - Installs packages and apps - Configures services - Example: Install Nginx deploy app start services Key Differences Terraform - Manages infrastructure (cloud resources) - Declarative (describe end state) - Tracks state in file - Best for: AWS Azure GCP setup Ansible - Manages configuration (software) - Procedural (list of tasks) - No state tracking - Best for: Installing configuring deploying"
X Link @brankopetric00 2025-10-17T21:50Z 5502 followers, 38.8K 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 5504 followers, 10.3K engagements
"Certifications to boost your DevOps resume: - AWS Solutions Architect Associate - Docker Certified Associate (DCA) - Terraform Associate - Kubernetes (CKA CKAD CKS) Certificates help validate skills but projects show real ability"
X Link @brankopetric00 2025-10-19T05:37Z 5502 followers, 22.3K engagements
"ArgoCD vs Flux - which GitOps tool should you choose ArgoCD: - Beautiful UI for visualizing deployments - Easier for teams new to GitOps - Great for multi-cluster management - Larger community and ecosystem Flux: - More lightweight and Kubernetes-native - Better for complex automation with Flagger - Native support for Helm Kustomize - Backed by CNCF Recommendation: Start with ArgoCD if you want quick wins and visibility. Use Flux for advanced progressive delivery. Both beat manual kubectl commands"
X Link @brankopetric00 2025-10-20T10:10Z 5504 followers, XXX engagements
"AWS disaster recovery strategies ranked by cost: X. Backup & Restore - cheapest slowest recovery (hours) X. Pilot Light - minimal running resources faster than backup (30-60 min) X. Warm Standby - scaled-down version running quick recovery (minutes) X. Multi-site Active-Active - most expensive instant failover Most companies use: - Backup/Restore for non-critical systems - Pilot Light for databases - Warm Standby for critical apps - Active-Active only for revenue-critical services Match your DR strategy to business impact not perfection"
X Link @brankopetric00 2025-10-20T16:14Z 5503 followers, 1077 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 5502 followers, 8961 engagements
"Its strange how easily we generalize an entire nation based on the actions of a few. Those who committed crimes should face justice but destroying the lives of innocent people on either side has never been and will never be the right way to stop violence. Sadly that was never the real goal"
X Link @brankopetric00 2025-10-16T23:16Z 5481 followers, XXX 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 5476 followers, XX 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 5501 followers, 59.5K 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 5501 followers, 17K 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 5500 followers, 60.4K 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 5502 followers, 17.1K 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 5504 followers, 81.5K 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 5502 followers, 59.9K 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 5501 followers, 19.7K 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 5502 followers, 10.7K engagements
"I'll try to keep the answer as simple as possible. User-data only runs once at instance launch while Ansible lets you update configurations patch software or modify settings on already-running servers without restarting them. Ansible playbooks can be run multiple times and will ensure all servers stay in the desired state even if someone manually changed something. Learning Objective - This is a beginner project and configuration management tools are essential in real DevOps workflows. While the particular steps could be covered in the user-data of the EC2 instance I think it's good to"
X Link @brankopetric00 2025-10-18T06:24Z 5502 followers, 2935 engagements
"Pulumi for beginners Pulumi = Infrastructure as Code using real programming languages (Python TypeScript Go etc.) Why it's great: - Write infrastructure with familiar code - Type safety & autocomplete - Reusable components - Multi-cloud support - Track changes with git I just built a serverless starter that auto-discovers Lambda functions supports multiple API Gateways and requires zero code changes to customize. Perfect for getting started with Pulumi + AWS serverless Link to the full blog post and GitHub repository in comments"
X Link @brankopetric00 2025-10-18T13:02Z 5502 followers, 2062 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 5502 followers, 23K 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 5502 followers, XXX 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 5502 followers, 17.1K engagements
"Essential networking concepts for DevOps: X. IP address - unique identifier for devices X. DNS - translates domain names to IPs X. Port - endpoint for network connections X. HTTP/HTTPS - web communication protocols X. TCP/UDP - transport layer protocols X. Load balancer - distributes traffic X. Firewall - controls network access X. VPN - secure private network X. Subnet - network subdivision XX. Gateway - network entry/exit point XX. Proxy - intermediary server XX. SSL/TLS - encryption protocols XX. SSH - secure remote access XX. API endpoint - service access point Understand these before"
X Link @brankopetric00 2025-10-19T07:19Z 5504 followers, 10.4K engagements
"Deploy a three-tier web app on AWS for beginners: X. Create a VPC with public and private subnets X. Launch an EC2 instance in public subnet (frontend) X. Set up RDS MySQL in private subnet (database) X. Launch another EC2 in private subnet (backend API) X. Configure security groups for each tier X. Install nginx on frontend EC2 X. Deploy your React app X. Set up Node.js backend to connect to RDS X. Test the connection between all three tiers XX. Add an Application Load Balancer XX. Delete everything after completing to avoid charges"
X Link @brankopetric00 2025-10-19T09:25Z 5503 followers, 16.5K engagements
"Build a serverless API with AWS Lambda: X. Write a simple Python function (handler) X. Create a requirements.txt file X. Package code and dependencies into a zip X. Create Lambda function in AWS console X. Upload your zip file X. Create API Gateway REST API X. Add a resource and POST method X. Connect method to Lambda function X. Deploy API to a stage XX. Test with curl or Postman Advanced: X. Set rate limits in API Gateway X. Configure custom domain for API Gateway X. Deploy this infrastructure with Terraform or Pulumi Serverless in under X hours"
X Link @brankopetric00 2025-10-19T09:27Z 5504 followers, 3004 engagements
"Basic CI/CD pipeline explained for beginners: X. Developer pushes code to Git repository X. Webhook triggers the pipeline automatically X. Code is pulled from the repository X. Dependencies are installed X. Unit tests run automatically X. Code is linted for style issues X. Security scan checks for vulnerabilities X. Application is built (compile bundle) X. Docker image is created XX. Image is pushed to container registry XX. Code deploys to staging environment XX. Smoke tests verify deployment XX. Manual approval gate (optional) XX. Production deployment happens This is automation in action"
X Link @brankopetric00 2025-10-19T10:12Z 5504 followers, 54.2K engagements
"Essential AWS services every DevOps engineer should know: X. EC2 - virtual servers in the cloud X. S3 - object storage for files and backups X. VPC - isolated network for your resources X. IAM - identity and access management X. RDS - managed relational databases X. Lambda - serverless compute functions X. CloudWatch - monitoring and logging X. ELB - load balancing traffic X. ECR - Docker container registry XX. CloudFormation - infrastructure as code Understand these before diving into complex architectures"
X Link @brankopetric00 2025-10-19T12:22Z 5502 followers, 1073 engagements
"ECS vs EKS - which to choose: ECS: - Simpler to learn and operate - Tighter AWS integration - Lower operational overhead - Good for AWS-only workloads - Cheaper for small deployments EKS: - Industry standard Kubernetes - Portable across clouds - Larger ecosystem and community - Better for complex orchestration - More job opportunities New to containers Start with ECS"
X Link @brankopetric00 2025-10-19T14:34Z 5502 followers, 9812 engagements
"AWS CLI essentials for DevOps: X. aws ec2 describe-instances - list EC2 instances X. aws s3 ls - list S3 buckets X. aws s3 cp file s3://bucket/ - upload to S3 X. aws ecs list-clusters - view ECS clusters X. aws logs tail group --follow - stream logs X. aws iam list-users - view IAM users X. aws ec2 start-instances --instance-ids - start EC2 X. aws cloudformation describe-stacks - view stacks CLI is faster than console for most tasks"
X Link @brankopetric00 2025-10-19T18:06Z 5504 followers, XXX engagements
"Terraform vs Pulumi - the real difference: Terraform: - HCL language (declarative) - Massive provider ecosystem - Industry standard - Great documentation - State management required Pulumi: - Real programming languages (Python TypeScript Go) - Better for complex logic - Native testing support - Smaller community - Easier for developers Know Terraform first explore Pulumi later"
X Link @brankopetric00 2025-10-19T18:48Z 5503 followers, 2395 engagements
"Basic AWS IAM concepts explained: X. User - individual person with credentials X. Group - collection of users with shared permissions X. Role - set of permissions assumed temporarily X. Policy - JSON document defining permissions X. Permission - specific action allowed (s3:GetObject) X. ARN - unique identifier for AWS resources X. Principal - entity requesting access X. MFA - multi-factor authentication for security Principle: least privilege always"
X Link @brankopetric00 2025-10-19T19:56Z 5502 followers, 1137 engagements
"Your DevOps portfolio needs these X projects: X. Containerized full-stack app (Docker Compose with frontend backend database) X. Infrastructure as Code (Terraform deploying to AWS/Azure) X. CI/CD pipeline (GitHub Actions or Jenkins automating builds) X. Monitoring setup (Prometheus and Grafana dashboards) Public GitHub repos with clear README files showing what you built and why"
X Link @brankopetric00 2025-10-19T20:13Z 5503 followers, 6136 engagements
"6 skills that will get you hired as a junior DevOps engineer: X. Linux command line proficiency (not just basics) X. Docker and containerization concepts X. One cloud platform deeply (AWS preferred) X. Git workflows and version control X. Basic scripting (Bash or Python) X. Understanding of CI/CD principles You don't need to be an expert but show hands-on experience with real projects"
X Link @brankopetric00 2025-10-19T23:15Z 5504 followers, XXX engagements
"5 tips to land your first DevOps job with no experience: X. Build 5-10 projects showing different tools - quality over quantity X. Contribute to open source DevOps projects on GitHub X. Get one cloud certification (AWS SAA or Azure Fundamentals) X. Write blog posts explaining what you learned X. Network on LinkedIn and Twitter - comment share engage Consistency for X months will get you noticed"
X Link @brankopetric00 2025-10-20T00:46Z 5504 followers, XXX engagements
"Skills to learn for DevOps in 2025: X. Master Git and GitHub workflows first - foundation for everything X. Basic networking and Linux administration X. Learn Docker before Kubernetes - containers then orchestration X. Pick one cloud (AWS recommended for jobs market) X. Terraform for infrastructure as code X. Python or Go for automation scripts X. Azure DevOps or GitHub Actions for CI/CD This order makes learning logical and builds on itself"
X Link @brankopetric00 2025-10-20T02:06Z 5503 followers, 7352 engagements
"Tough night for AWS on-call engineers"
X Link @brankopetric00 2025-10-20T11:12Z 5503 followers, 7014 engagements
"Most DevOps interviews fail at the architecture question. Q: Design a highly available web application. You need to explain: - Load balancer strategy - Auto-scaling triggers - Database replication - Caching layer - Disaster recovery plan - Monitoring approach Practice system design not just tools"
X Link @brankopetric00 2025-10-20T18:19Z 5502 followers, XXX engagements