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
Mastering SQLMock for Effective Database Testing
go, golang, programming, testing Noah Parker go, golang, programming, testing Noah Parker

Mastering SQLMock for Effective Database Testing

Testing is a crucial aspect of software development, ensuring that applications perform as expected. For applications that interact with databases, mocking the database interactions is essential for isolated and efficient testing. SQLMock is a powerful tool in the Go ecosystem, designed to facilitate testing of database interactions without relying on a real database.

Read More
Mastering Performance Testing in Go with Vegeta
go, golang, testing Noah Parker go, golang, testing Noah Parker

Mastering Performance Testing in Go with Vegeta

In the realm of software development, particularly in an era where web services and APIs reign supreme, ensuring that your application can handle high traffic and deliver consistent performance is paramount. For developers working in Go, a language renowned for its efficiency and concurrency capabilities, Vegeta emerges as a powerful tool for performance testing.

Read More
Go Testing with Fake HTTP Requests and Responses
go, golang, testing, mocks Benjamin Parrish go, golang, testing, mocks Benjamin Parrish

Go Testing with Fake HTTP Requests and Responses

Go provides a robust testing framework right out of the box. When working with web applications or services, a common challenge developers face is testing code that involves HTTP requests and responses without actually hitting the real endpoints. In this post, we'll dive deep into creating and using fake HTTP requests and responses for testing in Go.

Read More