Can AI Write Code

Can AI Write Code Now?

Joel Buckingham Articles, Artificial Intelligence, Development Technologies & Tools Leave a Comment

The topic of AI seems to be everywhere lately. At this point, I’ve consumed many hours of content regarding what it is and how it’s going to change the worldโ€ฆ whether we want it to or not. However, I havenโ€™t actually developed much code with it.

I’ve been writing code in some form since the early 2000s, but I have almost no practical experience with AI as used for development. Sure, I understand the basics, and I have a personal subscription to Chat GPT. But besides a couple of fun pictures that I’ve created of two of my past dogs that were never alive at the same time, I’ve not had much experience using it for code.

In this article, I’m going to test Chat GPT to see how much I can accomplish while writing as little actual code as possible.

software development

Top 10 Software Development Companies in Minneapolis

Keyhole Software Articles, Keyhole Leave a Comment

Attention: This article was published over 2 years ago, and the information provided may be aged or outdated. While some topics are evergreen, technology moves fast, so please keep that in mind as you read the post.In Minneapolis, there are ten software development companies that standout: Keyhole Software, THE NERDERY LLC, Emergent Software, Bitwise IO, Improving Company, MentorMate, Coherent Solutions, …

Keyhole Recognized as โ€œBest of Johnson Countyโ€ Employer Award Finalist 2024

Keyhole Software Articles, Community, Company News, Keyhole Leave a Comment

Attention: This article was published over 2 years ago, and the information provided may be aged or outdated. While some topics are evergreen, technology moves fast, so please keep that in mind as you read the post.Keyhole Software is excited to share that we’ve been named a finalist in the 2024 Best of Johnson County awards, recognized in the “Small …

Java Recursion in Action: CopyFlat

CopyFlat: Java Recursion in Action

John Boardman Articles, Java Leave a Comment

By using Javaโ€™s built-in file classes, along with recursion, it turns out to be pretty easy to implement the requirements that I came up! Itโ€™s fairly simple to copy a set of files nested inside a directory structure into a new flat directory.

Remember, while you probably arenโ€™t burning your own CDs or cassettes nowadays, there are reasons why the concepts demonstrated here are still relevant. The computer science techniques in this small set of code (such as recursion, threading, and file manipulation) are basic skills all Java programmers should know.