Jaydeep

52.5K posts

Jaydeep banner
Jaydeep

Jaydeep

@_jaydeepkarale

Follow Me If You Like 🐍 Python 🤖 Machine Learning/AI ⚙️ Software Engineering 📊 Freelancing 📩 DM For Collab https://t.co/Hlg3x1aEFa

Pune, India Katılım Şubat 2019
615 Takip Edilen28.7K Takipçiler
Sabitlenmiş Tweet
Jaydeep
Jaydeep@_jaydeepkarale·
Most people try to learn 50 Azure services at once. Instead learn Azure in layers: Foundations → Core Services → Security → Observability → Production. Here’s the complete Azure engineer learning map Azure Engineer ├─ 📂 Foundations (START HERE) │ ├─ 📂 Cloud Fundamentals ⭐ FIRST │ │ ├─ What cloud computing is │ │ ├─ IaaS vs PaaS vs SaaS │ │ ├─ Regions & Availability Zones │ │ ├─ Shared Responsibility Model │ │ └─ Azure global infrastructure │ │ │ ├─ 📂 Azure Core Concepts │ │ ├─ Subscriptions │ │ ├─ Resource Groups │ │ ├─ Resource hierarchy │ │ ├─ Azure Portal │ │ └─ Azure CLI basics │ │ │ ├─ 📂 Identity & Access │ │ ├─ Microsoft Entra ID (Azure AD) │ │ ├─ Users & Groups │ │ ├─ Service Principals │ │ ├─ Managed Identities │ │ └─ RBAC basics │ │ │ └─ 📂 Networking Basics │ ├─ Virtual Networks (VNet) │ ├─ Subnets │ ├─ Private vs Public IP │ ├─ Network Security Groups │ └─ DNS basics │ ├─ 📂 Core Azure Services │ ├─ 📂 Compute │ │ ├─ Virtual Machines │ │ ├─ VM Scale Sets │ │ ├─ Azure App Service │ │ ├─ Azure Functions │ │ └─ Azure Container Apps │ │ │ ├─ 📂 Storage │ │ ├─ Blob Storage │ │ ├─ File Storage │ │ ├─ Queue Storage │ │ ├─ Table Storage │ │ └─ Storage tiers │ │ │ ├─ 📂 Databases │ │ ├─ Azure SQL │ │ ├─ Cosmos DB │ │ ├─ Azure Database for PostgreSQL │ │ └─ Azure Database for MySQL │ │ │ └─ 📂 Networking │ ├─ Load Balancer │ ├─ Application Gateway │ ├─ Azure Front Door │ ├─ VPN Gateway │ └─ Private Endpoints │ ├─ 📂 Containers & Kubernetes │ ├─ 📂 Containers │ │ ├─ Azure Container Registry (ACR) │ │ ├─ Azure Container Instances │ │ └─ Container Apps │ │ │ └─ 📂 Kubernetes │ ├─ Azure Kubernetes Service (AKS) │ ├─ Node pools │ ├─ Ingress controllers │ └─ Scaling workloads │ ├─ 📂 Security (NON-NEGOTIABLE) │ ├─ 📂 Identity Security │ │ ├─ Conditional Access │ │ ├─ Multi-Factor Authentication │ │ ├─ Privileged Identity Management │ │ └─ Identity protection │ │ │ ├─ 📂 Infrastructure Security │ │ ├─ Azure Key Vault │ │ ├─ Disk encryption │ │ ├─ Managed identities │ │ └─ Secret management │ │ │ └─ 📂 Network Security │ ├─ Azure Firewall │ ├─ NSGs │ ├─ Private Link │ └─ DDoS protection │ ├─ 📂 Observability & Operations │ ├─ 📂 Monitoring │ │ ├─ Azure Monitor │ │ ├─ Log Analytics │ │ ├─ Metrics │ │ └─ Alerts │ │ │ ├─ 📂 Logging │ │ ├─ Application Insights │ │ ├─ Distributed tracing │ │ └─ Querying logs with KQL │ │ │ └─ 📂 Reliability │ ├─ Backup │ ├─ Site Recovery │ └─ High availability design │ ├─ 📂 Infrastructure as Code │ ├─ 📂 Deployment │ │ ├─ ARM templates │ │ ├─ Bicep │ │ └─ Terraform │ │ │ └─ 📂 Automation │ ├─ Azure DevOps │ ├─ GitHub Actions │ └─ CI/CD pipelines │ └─ 📂 Production Azure (LAST) ├─ 📂 Architecture │ ├─ Azure Well-Architected Framework │ ├─ Scalability patterns │ └─ Resilience design │ ├─ 📂 Multi-Environment Strategy │ ├─ Dev / Stage / Prod │ ├─ Resource isolation │ └─ Environment promotion │ └─ 📂 Cost Optimization ├─ Reserved instances ├─ Spot VMs ├─ Storage lifecycle policies └─ FinOps basics
English
9
15
118
9.8K
Jaydeep
Jaydeep@_jaydeepkarale·
Two developers wrote different queries: SELECT COUNT(*) FROM users WHERE email = 'abc@gmail.com'; vs SELECT 1 FROM users WHERE email = 'abc@gmail.com' LIMIT 1; Both are used to check if the user exists. Which one is better and why?
English
2
0
2
197
Jaydeep
Jaydeep@_jaydeepkarale·
@Shefali__J Ignoring myself fully at the moment, hopefully after a month or so I can get back
English
0
0
0
13
Shefali
Shefali@Shefali__J·
Just a reminder✨ Working hard ≠ ignoring your body.
 Small posture breaks prevent big problems.
English
8
0
23
376
Jaydeep
Jaydeep@_jaydeepkarale·
MCP Series Master Thread !!!
English
1
1
18
1.3K
Jaydeep
Jaydeep@_jaydeepkarale·
@vivek_naskar bengaluru and pune//mmbai autowala's will have no one to beat now
English
0
0
0
7
Nandkishor
Nandkishor@devops_nk·
Friday afternoon and the manager starts looking for you.
English
8
3
17
1K
Dash
Dash@dashmundkar·
We recently solved a full-text search problem using Elasticsearch — and it made a huge difference. Here’s what we learned 👇 The problem: Our application relied on database queries for search. Issues we faced: • Slow response times • Poor relevance in results • No fuzzy search support • Difficult to scale Users were frustrated. The solution: Elasticsearch We introduced Elasticsearch as a dedicated search layer. What changed: • Lightning-fast search responses ⚡ • Built-in full-text capabilities • Fuzzy search (typo tolerance) • Better ranking and relevance • Scalable horizontally How we designed it: • Indexed key application data into Elasticsearch • Used analyzers for better text processing • Synced data from DB → Elasticsearch • Built search APIs on top of ES Key learning: Databases are great for transactions. Elasticsearch is built for search. Don’t try to force one tool to do everything. Result: Search went from slow & inaccurate → fast & relevant Users noticed the difference immediately. If you’re building anything with search… Use the right tool. #Elasticsearch #DevOps #Architecture #Search
Dash tweet media
English
2
1
4
47
Jaydeep
Jaydeep@_jaydeepkarale·
@clovistb Not the tool but at least the CI process should be made mandatory for all devs
English
0
0
1
52
clovis
clovis@clovistb·
Recruiters always ask DevOps engineers to master at least one database but why don’t they ask database engineers to master at least one CI/CD tool?
English
8
2
25
1.9K
Jaydeep
Jaydeep@_jaydeepkarale·
Interviewer: If search engines like Elasticsearch index data for fast queries, why can indexing sometimes slow down write-heavy systems?
English
2
1
9
457
Jaydeep
Jaydeep@_jaydeepkarale·
@twtayaan thats a comprehensive list, we use a few of them
English
0
0
0
50
Ayaan 🐧
Ayaan 🐧@twtayaan·
15 Best Observability Tools in DevOps for 2026: 1. Prometheus prometheus.io 2. Grafana grafana.com 3. OpenTelemetry opentelemetry.io 4. Jaeger jaegertracing.io 5. OpenSearch / ELK Stack opensearch.org 6. Graylog graylog.org 7. Loki grafana.com/oss/loki/ 8. Tempo grafana.com/oss/tempo/ 9. Fluent Bit / Fluentd fluentbit.io 10. Thanos thanos.io 11. VictoriaMetrics victoriametrics.com 12. SigNoz signoz.io 13. Datadog datadoghq.com 14. New Relic newrelic.com 15. Dynatrace dynatrace.com Bookmark this before you forget 🔖
Ayaan 🐧 tweet media
English
1
11
79
2.3K
Jaydeep
Jaydeep@_jaydeepkarale·
@Gavel_on_X What is a person has no hand or feet to draw the sample on the left?
English
1
0
0
5
Gavel
Gavel@Gavel_on_X·
Your honest opinion: are designers screwed?
Gavel tweet media
English
4
0
10
205
Uday👨‍💻
Uday👨‍💻@uday_devops·
Where do you deploy your projects? - Vercel - Netlify - Railway - AWS
English
47
3
42
2.9K
Anurag
Anurag@anurag_gharat·
Prompt: Design an Avatar picker in Neu Brutalism style What Google Stitch made vs What I made.
Anurag tweet mediaAnurag tweet media
English
1
0
3
86