Skip to main content

Posts

AWS Certified AI Practitioner (AIF-C01) — 48 Hour Study Guide

AWS Certified AI Practitioner (AIF-C01) — 48 Hour Study Guide The Ultimate Crash Course: Pass the AWS AI Practitioner Exam in 48 Hours Using Battle-Tested Mnemonics 📋 Exam Overview Duration: 90 minutes Questions: 65 total (50 scored + 15 unscored) Passing Score: 700/1000 📊 Domain Breakdown & Weightings Domain Weight Hours to Allocate Domain 1: Fundamentals of AI and ML 20% 10 hours Domain 2: Fundamentals of Generative AI 24% 12 hours Domain 3: Applications of Foundation Models 28% 14 hours Domain 4: Guidelines for Responsible AI 14% 7 hours Domain 5: Security, Compliance, and Governance 14% 5 hours 🗓️ 48-Hour Study Schedule Day 1 (24 Hours) Hours 1–10: Domain 1 — Fundamentals of AI and ML Hours 11–22: Domain 2 — Fundamentals of Generative AI Hours 23–24: Break & Review Day 2 (24 Hours) Hours 25–38: Domain 3 — Applications of Foundation Models Hours 39–45: Domain 4 — Guidelines for Resp...
Recent posts

Ultimate Guide for AWS AI/ML Certifications: (AWS AI Service's)..

Never Forget AWS AI Services Again: AWS AI/ML Memory Master Master All AWS AI Services in Minutes Using Memory Tricks That Actually Work Struggling to remember which AWS AI service does what? You're not alone. With 20+ AI services spanning vision, language, speech, and foundation models, even experienced cloud architects get confused. This guide uses battle-tested mnemonics to help you instantly recall every service — perfect for certifications, interviews, or building your next AI project. 🎯 Why This Matters Whether you're: 📚 Studying for AWS certifications (Solutions Architect, ML Specialty) 💼 Architecting AI solutions for clients 🎤 Preparing for technical interviews 🚀 Building AI applications and need quick reference ...you need a mental model that sticks. Let's build one. 🎮 The Master Framework: "CTRL-PT" Remember the 6 core AI service categories like keyboard shortcuts Think of CTRL on your keyboard — you're...

Linux Systems Performance/Observability (BPF (bpfcc-tools), BCC Tools

Linux System Performance/Observability Tools BPF (bpfcc-tools), BCC Tools, and Complete Observability Toolkit Assuming you have Linux Server in place and have the required BPF aka BCC related packages installed on the system(s) for Linux distribution. BPF(eBPF) aka BCC Tools (bpfcc-tools): BPF , which originally stood for Berkley Packet Filter is the dynamic tracing tools for Linux Systems. BPF initially used for the speeding up for the tcpdump expressions and since then it has been know as the extended Berkley packet Filter (eBPF). Its new uses are Tracing Tools where it provides programmability for the BPF Compiler Collection (BCC) and bpftrace front ends. Example: execsnoop, biosnoop etc is a BCC Tool. When facing production performance crisis these such list of tools comes handy to trace and fix the issue. However, it requires certain KERNEL level config options to be enabled such as CONFIG_FTRACE, CONFIG_BPF. Profiling tools typically required complie...

EKS Cluster and Create CSI Driver to store credentials in AWS Secrets Manager via SecretProviderClass

EKS Cluster and Create CSI Driver to Store Credentials in AWS Secrets Manager Setup EKS Cluster and Manage Credentials at Runtime using CSI Driver with SecretProviderClass and AWS Secrets Manager Assuming you have configured/installed AWS CLI, EKSCTL, KUBECTL, and HELM. 📦 CSI Basic Information CSI (Container Storage Interface) is widely used as a Storage Technology. Created by Google | Mesosphere | Docker. It has two plugins : one runs on the Master Node (Centralized Controller Plugin) and another on Worker Nodes (Decentralized headless Node Plugin). CSI communication protocol is gRPC. The communication between Container Orchestration to Controller Plugin (Master) and to Node Plugin (Worker Node) happens using gRPC . CSI Drivers: vendor-specific, compiled into Kubernetes/OpenShift binaries. To use a CSI driver, a StorageClass needs to be assigned first. The CSI driver is then set as the Provisioner for the Storage Class. CSI drivers provide three main ser...