Category: Code Blog

We're all about the individual developer, not our employers.

Announcing Monthly Monday Night Mock Technical Interviews at Canton Coders!

Announcing Monthly Monday Night Mock Technical Interviews at Canton Coders! Hey there, coding enthusiasts! We’re thrilled to introduce a brand-new initiative that’s going to sharpen your technical prowess and give you a taste of the real deal – introducing our Monthly Monday Night Mock Technical Interviews! And the best part? It’s absolutely, 100% free. We’ve…
Read more

Let’s Explore AI Driven Development, Together

Artificial intelligence (AI) has been transforming industries across the board, from healthcare to finance, and software development is no exception. AI-driven development is the latest trend in software engineering, and it promises to streamline the development process, improve code quality, and reduce time-to-market. In this article, we’ll explore what AI-driven development is, how it works,…
Read more

We’re hosting Scaled Agile DevOps Fleet Week 2024!

Ahoy, agile enthusiasts! The time has come to set sail on a journey towards scaling your DevOps process. We proudly announce the Scaled Agile DevOps Maturity Framework Conference 2024: Fleet Week. Join us on board as we navigate through the choppy waters of agile methodology and DevOps, all while enjoying the scenic views of the…
Read more

Ace that Cobol Interview

If you’re a developer with experience in COBOL, you may have found yourself in a unique position in recent years. As new programming languages and technologies have emerged, many companies have moved away from COBOL, leaving a gap in the market for skilled developers. However, even if you have years of experience with COBOL, landing…
Read more

FizzBuzz in Ada

FizzBuzz is a classic programming exercise that is often used as a simple way to filter out candidates who lack basic programming skills. The problem is simple: write a program that prints the numbers from 1 to 100, but for multiples of 3 print “Fizz” instead of the number, for multiples of 5 print “Buzz”,…
Read more

A Decade-Old Practice That’s Still Essential Today

Continuous deployment is a software development practice that’s been around for over a decade, but it’s still as relevant today as it was when it was first introduced. In this post, we’ll take a closer look at what continuous deployment is, why it’s important, and how you can implement it in your own software development…
Read more

Making Your First Makefile: A Beginner’s Guide to Build Automation

If you’re new to software development, you might be wondering how to manage the build process for your project. As your project grows and becomes more complex, keeping track of all the files and dependencies involved can quickly become overwhelming. That’s where Makefiles come in. A Makefile is a script that automates the build process…
Read more

Some Pointers on C Pointers

Are you ready to dive deep into the world of pointers? Don’t worry, we’ll make it fun! If you’re new to programming in C, pointers can seem like a foreign language. But once you get the hang of them, they can be a powerful tool in your coding arsenal. Here are some pointers (pun intended)…
Read more

Why Software Developers Can Be Product Managers Too (And Why It’s Awesome!)

Let’s be real, being a software developer is pretty awesome. You get to create something new every day, solve problems with your coding superpowers, and constantly learn and grow as new technologies emerge. But sometimes, you might feel like you want to take your skills to the next level and move beyond just writing code.…
Read more

Recursion: A Powerful Programming Technique

Recursion is a powerful programming technique that allows a function to call itself. It can be used to solve complex problems that would be difficult or impossible to solve with a simple iterative approach. In this article, we’ll take a look at recursion, how it works, and provide an example in Python. What is Recursion?…
Read more