Today I Passed AWS AI Practitioner Exam

I’m thrilled to share that I’ve passed the AWS Cloud AI Practitioner certification! This milestone marks a significant step forward in my journey within cloud and AI technologies, areas that are transforming how businesses operate and innovate. To prepare, I combined official AWS materials with an Udemy course by Stephane Maarek. This combo provided both the foundational knowledge and practical insights needed to tackle AWS’s AI services with confidence. This marks my 14th AWS certification – upward and onward!...

October 28, 2024 · 1 min

Mission Accomplished: Achieving All AWS Certifications

Hey there! So, I wanted to take a moment to share a little personal milestone with you all. Back in 2018, I decided to dip my toes into the vast ocean of Amazon Web Services (AWS), not knowing where it would take me. Fast forward to April 13, 2024, and I just wrapped up the last certification. Yep, you read that right – all of them! The Beginning Picture this: me, in 2018, staring at the AWS website, feeling a mix of excitement and nervousness....

May 15, 2024 · 2 min

AWS IAM User Inactivity Checker

This script is designed to check for inactive IAM (Identity and Access Management) users within a specified AWS account. It utilizes the AWS SDK for Python (Boto3) to retrieve user data and provides information about the last console access and last programmatic access for each user. Code """ AWS IAM User Inactivity Checker Author: Mario Lechończak (mario at lechonczak.pl) """ import csv import sys from datetime import datetime import boto3 import pytz # Define variable max_date = sys....

November 12, 2023 · 4 min