Curious About Technology

Welcome to Coding Explorations, your go-to blog for all things software engineering, DevOps, CI/CD, and technology! Whether you're an experienced developer, a curious beginner, or simply someone with a passion for the ever-evolving world of technology, this blog is your gateway to valuable insights, practical tips, and thought-provoking discussions.

Recent Posts

Comparing slices.Concat with append in Go

Comparing slices.Concat with append in Go

In the Go programming language, working with slices is a common and crucial task. When it comes to concatenating slices, developers have traditionally relied on the append function. However, with the introduction of Go 1.18, the slices package, part of the Go Generics proposal, brought a new method: slices.Concat.

Read More
Performance Implications: Generics in Go
go, golang, generics, programming Noah Parker go, golang, generics, programming Noah Parker

Performance Implications: Generics in Go

Generics, one of the most anticipated features in Go, have opened up a world of possibilities for developers, allowing for more flexible and type-safe code. However, as with any powerful tool, it's essential to understand the performance implications of using generics. In this blog post, we'll delve into how generics can impact the performance of Go programs and offer tips on optimizing code that uses generics.

Read More