AI in Coding: Using ChatGPT and Copilot to Build JavaScript Animations

Chris Vaught Agentic AI & AI-Accelerated Development, Articles, Artificial Intelligence, Development Technologies & Tools, Generative AI & LLMs, JavaScript, Tutorial 1 Comment

Artificial intelligence isnโ€™t just changing how we write codeโ€”itโ€™s transforming how we think about creativity in development. In this post, I revisit the playful spirit of early programming through a series of AI-assisted experiments using ChatGPT, GitHub Copilot, and JavaScript Canvas on CodePen. Along the way, I uncover practical lessons for developers on using AI to accelerate learning, inspire exploration, and rekindle the joy of creative coding…

Blog content summary about Payload CMS

Meet Payload: Code-First CMS Built for Modern JavaScript Apps

David Hoffmann Articles, JavaScript, React Leave a Comment

Tired of forcing a legacy CMS into your sleek React stack?
Payload flips the script with a dev-first approach that feels native to modern JavaScript environments. While traditional platforms prioritize marketers, Payload is built for engineersโ€”especially those working in full-stack TypeScript apps with frameworks like Next.js and React….

How I Built a Developer Digital Twin with Agentic AI (And What It Got Right & Wrong)

John Hoestje Agentic AI & AI-Accelerated Development, Articles, Artificial Intelligence, Java, Machine Learning, React Leave a Comment

This post walks through a hands-on experiment in agentic development using an AI-powered digital twin embedded in the IDE. See how a single, well-structured prompt enabled the agent to implement a real user story, generate behavioral tests, and prepare Git commit documentationโ€”with minimal developer input. Includes real-world code samples, implementation insights, and a candid look at what worked, what didnโ€™t, and where human oversight is still essential.

Zod + React Hook Form + TypeScript

One Source of Truth: Deriving Required Fields from Zod

Rachel Walker Articles, JavaScript, React, TypeScript 2 Comments

TL;DR: Struggling to keep form validation and UI in sync in your React app? Hereโ€™s how I used Zod and React Hook Form together to define a single source of truthโ€”driving both runtime validation and required field indicators in the UI. The Problem: When Validation Drifts from UI Iโ€™ve been writing forms for as long as Iโ€™ve been writing codeโ€”and …

Building Event-Driven Cloud Functions on Google Cloud Platform

Chris Brown Cloud, Google Cloud Platform, Node.js Leave a Comment

Google Cloud Platform (GCP) offers developers and organizations the ability to create and deploy serverless Cloud Run functions. This code โ€“ whether itโ€™s written in Node.js, Python, C#, or another language โ€“ can interact with other parts of GCPโ€™s infrastructure. By default, the function is triggered by a basic HTTPS request. However, that is not our only option.

In this blog, weโ€™ll introduce the concept of event-driven functionsโ€”a powerful way to automatically respond to changes across GCP services with minimal code. You’ll see how these functions can connect services like Cloud Storage, Firestore, and Pub/Sub, creating efficient workflows with less manual intervention…