Blog Posts from 2019

What is a 'for' Loop in C#?

A foundational guide to the 'for' loop in C#, a fundamental control flow statement for executing a block of code a specific number of times. Learn the classic syntax and how it gives you precise control over iteration.

Read more
2019 in Review: The Year of Cloud-Native

2019 in Review: The Year of Cloud-Native

A look back at the defining technology trends of 2019. From the landmark release of .NET Core 3.0 to the dominance of Kubernetes and the continued rise of serverless, we review a year defined by the maturation of cloud-native technologies.

Read more

What is a 'while' Loop in Python?

A foundational guide to the 'while' loop in Python. Learn how to use this control flow statement to execute a block of code repeatedly as long as a certain condition remains true.

Read more

A Guide to Python Virtual Environments

An essential guide for Python developers on what virtual environments are, why they are crucial for project dependency management, and how to use the built-in venv module to create and manage them.

Read more

What is a 'struct' in C#?

A foundational guide to the 'struct' keyword in C#. Learn how structs are used to create lightweight value types and understand the key differences between a struct and a class.

Read more

An Introduction to Amazon DynamoDB

A beginner's guide to Amazon DynamoDB, AWS's fully managed NoSQL database service. Learn about its core concepts, including tables, items, and primary keys, and understand its benefits for building scalable applications.

Read more

A First Look at .NET Core 3.0

An early look at the major new features coming in .NET Core 3.0. From support for WPF and Windows Forms to the introduction of C# 8.0 with nullable reference types, we explore what makes this one of the most anticipated .NET releases ever.

Read more

An Introduction to ASP.NET Core

A beginner's guide to ASP.NET Core, Microsoft's modern, open-source, and cross-platform framework for building web applications and services. Learn about its key features and what makes it a great choice for web development.

Read more