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

Leveraging LocalStack for S3 Client Integration Testing: A Comprehensive Guide
aws, go, golang, test Benjamin Hughes aws, go, golang, test Benjamin Hughes

Leveraging LocalStack for S3 Client Integration Testing: A Comprehensive Guide

In the realm of cloud computing, Amazon S3 (Simple Storage Service) has established itself as a cornerstone service for storing and retrieving any amount of data at any time. However, integrating and testing applications that rely on S3 can introduce complexity, especially when ensuring that your application behaves as expected under various scenarios. This is where LocalStack comes into play. LocalStack provides a fully functional local cloud stack, allowing developers to test cloud applications offline, including services like S3, without incurring extra costs or relying on cloud connectivity.

Read More
Understanding the Go Concurrency Scheduler: A Deep Dive
go, golang, concurrency Noah Parker go, golang, concurrency Noah Parker

Understanding the Go Concurrency Scheduler: A Deep Dive

Concurrency is at the heart of many modern applications, especially those that require high throughput and efficiency. Go, a statically typed programming language developed by Google, has gained popularity for its simple and efficient approach to concurrency. Central to this approach is the Go concurrency scheduler, an intricate piece of the runtime that manages goroutines, Go's lightweight threads.

Read More
Understanding and Preventing Go Memory Leaks
go, golang, memory Noah Parker go, golang, memory Noah Parker

Understanding and Preventing Go Memory Leaks

In the world of software development, memory leaks can significantly impact the performance and reliability of applications. Go, also known as Golang, is celebrated for its efficiency and simplicity, especially in concurrent programming and system-level applications. However, like any other programming language, Go is not immune to memory leaks.

Read More
Integrating Flyway with Golang for Seamless Database Migrations
go, golang, sql, database Noah Parker go, golang, sql, database Noah Parker

Integrating Flyway with Golang for Seamless Database Migrations

In the realm of application development, managing database schema changes elegantly across different environments can be quite challenging. This is where Flyway comes into play—a robust open-source tool that simplifies database migrations, ensuring consistency and version control of your database schema. While Flyway integrates smoothly with Java-based applications, its command-line client makes it a versatile tool for projects in any language, including Golang.

Read More