Skip to main content

Posts

Moving to the Big Leagues: A Beginner’s Guide to MySQL Workbench

  Why Every Developer Should Learn MySQL In my previous tutorials, we explored MS Access for local data management. But if you want to build web applications that scale, you need to step into the world of MySQL . MySQL is the engine behind some of the biggest sites on the internet. To manage it effectively, I use MySQL Workbench —a powerful visual tool that makes creating databases as simple as writing a few lines of code. MySQL Workbench Step 1: Setting Up First Database (Schema) The first thing you’ll notice in MySQL is that we don't just call things "files. " We call them Schemas or Databases . In my screenshot, I am creating a database named  dhl_tracking for Suppment Tracking Project  . The Pro-Tip:   We use CREATE DATABASE keyword for creating the database. CREATE DATABASE   dhl_tracking  CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; Why this matters: Using utf8mb4 ensures that your database can handle all characters, including emojis ...
Recent posts

Simplified Data Entry: How to Create User-Friendly Forms in MS Access

  Why Forms Matter for Database Usability In my previous post, we looked at how to structure tables and write SQL queries. But let's be honest: most users don't want to look at a spreadsheet or write code to enter data. They want a clean, simple interface. That is where Access Forms come in. I’ve just uploaded a new tutorial showing how to turn a messy table into a professional data-entry screen. Key Features of a High-Quality Form In the video, I walk through the "Form Wizard" vs. "Design View," but here are the three things I always focus on to make a form feel professional: 1. Intuitive Layout Don't just dump all your fields on the screen. I recommend grouping related information (like "Customer Info" and "Contact Details") using Rectangles or Tab Controls . 2. Drop-Down Menus (Combo Boxes) Instead of letting users type in a category and making mistakes, I show you how to use Combo Boxes . This ensures your data stays clean for t...

Mastering MS Access: How to Create Tables and Write Custom SQL Queries

  Mastering MS Access: How to Create Tables and Write Custom SQL Queries Why I Still Use SQL in Microsoft Access When I first started working with databases, I realized that while MS Access has a "point-and-click" interface, it is much more powerful when you write the code yourself. In my latest project, I found that using raw SQL queries is faster and more reliable than the standard query builder. I’ve recorded a full video tutorial showing my process, but in this post, I want to break down the logic behind creating tables and the SQL syntax you need to know. You can watch the video tutorial here:   Step 1: Planning the Table Structure Before I touch the SQL view, I always define my table relationships. For this tutorial, we are using a Sales demo Database example. My Pro-Tip: Always use a Primary Key with the AutoNumber type. It prevents duplicate records and makes your SQL Joins much easier later on. Here is h ow to create a table.  Click on Create tab Click on Ta...

What Are Agentic AI Tools? A Practical Guide to the Frameworks, Protocols, and Platforms Powering AI Agents

 A gentic AI tools help AI systems plan, act, use tools, access data, and work across workflows. Learn the top frameworks, protocols, and platforms shaping AI agent. Introduction The phrase agentic AI is everywhere right now, but many articles still blur the line between a chatbot, a workflow, and a real agent system. A chatbot mainly responds to prompts. An agentic system, by contrast, can choose actions, call tools, retrieve information, and continue working until it reaches a goal or exit condition. OpenAI describes this multi-step loop as central to agent behavior, while LangGraph distinguishes clearly between workflows with fixed paths and agents that dynamically define their own tool usage and process. I've been experimenting with the new Agentic AI frameworks this week, and I realized that most people are confusing them with simple chatbots. Here is what I discovered after testing LangGraph vs. OpenAI's loops. That is why the question “What are agentic AI tools?” deser...

Beyond Chatbots: Why 'Agentic AI' is the Real Future of Autonomy

 What type of AI is autonomous? Learn how autonomous AI works, why autonomy is a capability rather than a single category, and which AI agents are most capable of acting independently. What Type of AI Is Autonomous?  Lately, I’ve been hearing the word 'Autonomous' used to describe everything from basic chatbots to self-driving cars. But as a developer, I realized there is a huge difference between a script that follows rules and an AI that actually makes decisions. After researching frameworks from NIST and IBM, I’ve broken down the 5 levels of autonomy I see appearing in web development today. That said, when people ask what type of AI is autonomous, the most practical answer today is this: AI agents are the clearest example of autonomous AI , especially systems that can plan, use tools, make decisions, and act toward a goal with limited human intervention. IBM defines AI agents as systems that autonomously perform tasks using available tools, while OpenAI describes agents as...

Applied Agentic AI for Organizational Transformation: How Enterprises Move from AI Pilots to Real Business Change

I’ve spent the last few weeks looking at how companies are actually using AI. Most are stuck using it as a basic chatbot, but the ones really winning are moving toward 'Agentic AI.' In this post, I want to break down why this shift is harder than it looks and what I believe is the real secret to making it work in 202. For years, organizations have used AI mainly as an assistant. It could summarize documents, answer questions, generate drafts, and help employees move faster. That phase mattered, but it was still limited. The next phase is different: agentic AI. In this model, AI systems do not just respond to prompts. They can plan, take action, use tools, connect with enterprise systems, and complete parts of a workflow under human direction. McKinsey describes this as a new paradigm in which humans work together with virtual and physical AI agents to create value. This matters because organizational transformation is not really about adding another tool. It is about changing h...