Skip to main content

Posts

What is Google Antigravity?

"For years, we’ve used AI as a fancy 'Autocomplete.' But Google Antigravity is the first time I've felt like I actually have a junior developer sitting next to me. It doesn't just give me code; it takes over the boring parts of my workflow—testing, terminal commands, and documentation—so I can focus on the architecture. Here is my deep dive into how Antigravity works." What is Google Antigravity? Google Antigravity is an agentic AI development platform created by Google to help developers build software at a higher, task-oriented level. Instead of only suggesting code line by line, Antigravity allows AI agents to plan, edit code, run terminal commands, use a browser, test changes, and produce verification artifacts such as task lists, implementation plans, screenshots, walkthroughs, and browser recordings. Google describes it as a platform that combines a familiar AI-powered editor with a new “agent-first” interface for managing autonomous development agen...

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

Moving from MS Access to MySQL is an important step for anyone who wants to build real web applications, backend APIs, tracking systems, dashboards, or AI-powered projects. In this beginner-friendly tutorial, I will show how I use MySQL Workbench to create a database, write SQL queries, create a table, insert sample tracking data, and save SQL scripts for future use. Moving to the Big Leagues: A Beginner’s Guide to MySQL Workbench In my previous tutorials, we explored MS Access for local data management. MS Access is useful for learning tables, forms, queries, and relationships. But if you want to build a web application that can connect to a backend server, mobile app, dashboard, or cloud database, you need to step into the world of MySQL . MySQL is widely used for web applications because it is reliable, structured, and supported by many programming languages such as PHP, Python, Node.js, Java, and Go. To manage MySQL more easily, I use MySQL W...

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

A database table is powerful, but most users do not want to enter data directly into rows and columns. Microsoft Access Forms make data entry easier by turning tables into a clean screen with fields, labels, buttons, and navigation. In this beginner tutorial, I will show how to create a simple form from an existing table using Form Wizard and how to improve it for real users. 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 in Microsoft Access. That is important because tables store the data and queries help us search, filter, and analyze records. But in real projects, users usually do not want to open a table and type data directly into a datasheet. Users need a simple interface. They need clear labels, organized fields, and buttons that help them add, save, search, and move between records. That is where ...

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

Microsoft Access is not only a point-and-click database tool. It also allows beginners to practice real SQL concepts such as creating tables, filtering records, sorting data, and building reusable queries. In this tutorial, I will show how to create a simple product table in Access and write custom SQL queries for practical database tasks. 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 Microsoft Access is much more powerful when you understand both the visual interface and SQL. The visual tools are useful for beginners, but SQL gives you more control over how data is created, filtered, sorted, and analyzed. In this tutorial, we will use a simple Sales Demo Database example. We will create a table named Demo , add fields such as product name, price, and stock level, then write SQL queries to find records based on condition...

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

Agentic AI tools help AI systems plan, act, use tools, access data, collaborate with other agents, and operate across multi-step workflows. In this guide, we will look at the main types of agentic AI tools, including orchestration frameworks, interoperability protocols, observability platforms, evaluation systems, and governance layers. What Are Agentic AI Tools? Agentic AI tools help AI systems move from chat responses to goal-oriented workflows. Introduction The phrase agentic AI is everywhere right now, but many people still confuse an AI chatbot with an AI agent. A chatbot mainly responds to prompts. An agentic AI system can go further: it can plan steps, call tools, retrieve data, make decisions inside a workflow, hand tasks to other agents, and continue until it reaches a goal or stopping condition. In my own testing, I noticed that many “AI agent” demos are actually simple workflows. This difference matters. A workflow f...