/profile-pic.png

Matheus Macedo

Azure Data Factory (ADF) - Basics

Azure Data Factory: A Beginner’s Guide from a Developer’s Perspective As a developer stepping into the world of data integration I’m starting my studies on Azure Data Factory (ADF), it provides a powerful platform to tackle complex data workflows. In this beginner’s guide, we’ll explore the fundamentals of Azure Data Factory and get you started on your journey of building data pipelines. So, grab a cup of coffee, and let’s dive in!

C# 12 - Collection Literals

C# 12 New Feature: Collection Literals Are you ready for a new and exciting feature in the next iteration of C#? Brace yourself for “Collection Literals,” designed to simplify the way we work with collections. If you’re tired of cumbersome syntax or intricate steps for handling collections, this new feature is here to make your coding life a breeze! So, what exactly are collection literals? Well, they introduce a concise and straightforward syntax for creating common collection values.

Pointers: Understanding Value vs. Reference in Go

Continuing our Go programming 101 series: Today we’re going to discuss a fascinating topic that is relevant to almost all programming languages: value vs. reference (also known as pointers). First and foremost, let’s remember that every variable we create, regardless of its type, as well as arrays, slices, and maps, are allocated in memory. Another crucial point to bear in mind is that function parameters are also variables. To help us understand this concept better, let’s create a function with two parameters.

Go Programming 101: Arrays, Slices and Maps

Go lang: Arrays, Slices, and Maps Explained Welcome to another exciting installment of our GO 101 series! Today we’ll delve into arrays, slices, and maps. These data structures are fundamental in Go and mastering them will greatly enhance your development skills. So let’s dive right in! Arrays In Go, an array is a fixed-size sequence of elements of the same type. They provide a way to store and access multiple values under a single name.

Go Programming 101: A Beginner's Guide

Introduction Welcome to the exciting world of Go programming! In this blog post, we will explore why Go has become increasingly popular and discuss its unique features and benefits. Whether you’re a beginner looking to dive into programming or an experienced developer curious about Go, this guide will provide you with a solid foundation to start your Go journey. Why Go is gaining popularity Go has been making waves in the programming community due to its remarkable features and advantages.