Posts

Showing posts from April, 2026

Claude Architect Part 1: AI Fluency

 The Claude Architect path is designed to move you beyond basic prompting into the realm of professional AI architecture. It bridges the gap between high-level conceptual understanding and technical deployment.Recommended Learning Path: Foundations: Mastering the "AI Fluency" framework and mindset. Claude 101: Deep dive into Claude’s unique capabilities. Infrastructure: Integrating Claude with AWS Bedrock and GCP Vertex AI. Development: Building with the Claude API and exploring the Model Context Protocol (MCP). Practical Application: Putting it all together with Claude Code in real-world development scenarios. In this article, we will look into: What is AI Fluency? How does the Claude Architect framework shift your mindset from viewing AI as a simple tool to a collaborative partner? And what are the core pillars of effective, ethical, and safe AI interaction? Decoding AI Fluency Many view AI as a "hammer"—a tool you pick up to hit a nail and put down. AI Fluency ...

An Introduction to the AWS Cloud: Your Essential Guide

Image
Cloud computing has transformed how we build, deploy, and manage applications. At the center of this transformation is Amazon Web Services (AWS), the world’s most comprehensive and broadly adopted cloud platform. This guide provides a concise overview of the core components that make up the AWS ecosystem. In this article, we will look into the fundamental questions that define your journey with the AWS Cloud:  What is compute, and how do you choose between virtual machines, containers, or serverless options? How does networking define the structure of your virtual environment? What are the differences between block, file, and object storage, and which one does your application need? Finally, how do you determine which database solution—relational or purpose-built—is the right fit for your specific use case? 1. The Foundation: Regions and Security Every cloud application relies on physical infrastructure—data centers and network connectivity. AWS organizes these into Regions , which...

(AI/ML): Introduction to Data Engineering

Image
Data has always been dubbed as the "new oil". A very fitting anology. Just as with oil, data is useless  and even dangerous in its raw form.  Just like with oil, which needs to  be refined, transported safely, and delivered to the right place at the right time in order to useful, data must go through the similar process. This is where the Data Engineer comes in. While Data Scientists are like chefs who create a masterpiece meal (the insights and AI models), Data Engineers are the architects and contractors who build the industrial kitchen. They ensure the water lines are pressurised, the electricity is stable, and the ingredients arrive fresh and sorted every morning. In this article, we will have a quick look into:  What is data engineering? what are data pipelines? what is ETL and ELT? why is data quality important? etc. 1. The Core Mission: Building the Pipes The primary responsibility of a data engineer is to build the infrastructure and reliability required f...

(TWN) DevOps Fundamentals: Containerization with Docker

Image
Docker is a open-source platform that has revolutionized how we build, ship, and run applications by introducing a standardised way to package software.  In this article, we will look into:  what is a container? How are docker containers and images different? How are containers and virtual machines different? And deep dive into Docker. 1. What is a Container? At its core, a container is a way to package an application along with all its necessary dependencies, libraries, and configurations. It serves as a portable artifact that can be easily shared and moved across different environments—from a developer's laptop to a testing server and finally to production—without any changes in behavior. Where do containers live? Containers are stored in repositories . DockerHub : The primary public repository for sharing Docker images. Private Repositories : Most companies maintain their own private registries to secure proprietary code. How containers Improve the Development Process?...

(Commentry): Distractions

In the past few days, I had not been at my best. Not been at my 1% improvement everyday. I did not do the things that I said I will do everyday nor come to blog. I did get started on things and tried to study. That was good effort. But, I was distracted.  I have been distracted. It is not being a working adult. It is not easy to adult. It is different from when we were at school or university. We would just think, why not relax. You are getting paid with money, just relax. No harm, no foul.  In university, your timetable was broken down for you, you had semesters. You had assignments. You had exams. It is not the same in the outside, no one has set timetable for you. No one is actually invested in your learning or development. You have to manage it all.  It is easy to think that it is fine to relax. You are still getting paid. But, know this, life and its duties will catch up with you.  Time wasted is time wasted. It is the most important resource that we should safe...

(TWN) DevOps fundamentals: Artefacts & Artefact Repositories

Image
Artefact Repositories  and  Artefact Repository Managers  are critical in the Continuous Integration and Continuous Deployment (CI/CD) of devops. They ensure that we can  store and manage the outputs of our build processes with speed and reliability.  In this article, we will look into: What is an artefact? What is an artefact repository? What is the role of artefact repositories in the devops lifecycle? What is an Artefact? Before defining the repository, we must understand the "Artefact" itself. In software development, an artefact is an application or component that has been compiled and built into a single file. Examples include: JAR or WAR files for Java applications. NPM packages for JavaScript. Docker Images for containerized environments. An artefact is designed to be easily movable, shareable, and version-controlled, representing a specific "snapshot" of your code at a point in time. What is an Artefact Repository? An Artefact Reposit...