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