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

Chris Vaught AI, Articles, Chat GPT, Development Technologies & Tools, 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…

Best Practices for Proposing Improvements to Your Development Team

Jake Everhart Agile, Articles, Consulting, Project Management, Soft Skills Leave a Comment

Working within a software development team has tremendous benefits, but it also comes with its share of complications. One of those complications is inertia – the more people who get used to a process or a certain set of tools, the more difficult it can be to introduce changes. Maybe this manifests in a positive way, where repetition and familiarity …

How to Implement a Clean Service Layer in Flutter (With API Examples)

Jimmy Patterson API Development, Articles, Development Technologies & Tools, Flutter, Mobile Leave a Comment

This blog walks through building a clean, modular service layer in Flutter to keep mobile apps scalable, maintainable, and resilient to change. Using real examples with third-party APIs, it demonstrates how to abstract logic, structure code for API calls, and easily swap data sources without major rewrites. You’ll also learn strategies like creating request/response classes and centralizing error handling to reduce redundancy and improve code quality.

Long-Running Workflows Made Simple With C# and Azure Durable Functions

Long-Running Workflows Made Simple with C# + Azure Durable Functions

Robert Rice Articles, Azure, C#, Financial, Tutorial Leave a Comment

It’s common to face challenges around long-running workflows, state management, and resiliency when you’re building cloud-native applications. Traditional approaches like background services or message queues might work sometimes, but they often require a lot of “glue code” and custom retry logic. This entails not only more work up-front for the developer, but also more maintenance in the long run.

That’s where Azure Durable Functions come in.

Writing Java Code and Unit Tests Faster with GitHub Copilot Header image - explains the blog post intent - Learn how to use GitHub Copilot to generate Java code and unit tests—using a real mortgage calculator example—with practical tips on retaining quality code using AI-assisted development tools.

Writing Java Code and Unit Tests Faster with GitHub Copilot

Jonny Hackett AI, Articles, Java, Testing Leave a Comment

In this post, we’ll explore how to use GitHub Copilot to generate Java code and unit tests with minimal manual input. Using a real-world example—a mortgage calculator service—you’ll see how Copilot can help write both the core logic and the corresponding unit tests. Whether you’re new to AI-assisted development or curious about Copilot’s capabilities in a Java environment, this tutorial will give you practical insight into how it works—and where human oversight still matters.