Ralph's Blog about this and that (RSS | Atom)

2023 | 2022 | 2021 | 2020 | 2019 | 2018 | 2017

TLS with Go in production

Published: August 01, 2023  •  go

Setting up TLS with Go in productive environments

Git with go-git

Published: August 01, 2023  •  go

In this blog post, I'm going to show you how you can write Go programs that access Git repositories with the go-git library

Access HIBP Pwned Passwords with Go

Published: February 10, 2022  •  Updated: March 11, 2023  •  go

Various ways how to access the Pwned Passwords database from have i been pwned with Go

Implementing HTTP API back end on AWS - Part 1 Foundation

Published: January 29, 2022  •  go, aws

The first part of setting up an HTTP API back end on AWS shows you how to configure Amazon API Gateway and Amazon DynamoDB and build and deploy an AWS Lambda in Go to form the back end for a simple todo web application.

Implementing HTTP API back end on AWS - Part 2 User Authentication

Published: January 29, 2022  •  go, aws

The second part of setting up an HTTP API back end on AWS shows you how to transform the single-user application from the first part into a multi-user application where users can sign-up and sign in. User authentication will be implemented with Amazon Cognito and OAuth2.

Access Amazon S3 objects with SQL SELECT

Published: January 22, 2022  •  go, java, aws

In this blog post, I take a look at S3 Select, a service that enables an application to access Amazon S3 objects with SQL SELECT. Code examples in Java and Go

Sending Protocol Buffers messages over SQS

Published: January 15, 2022  •  go, java, aws

In this blog post, I show you how to send and receive Protocol Buffers messages over Amazon Simple Queue Service (SQS). The examples of producers (send) and consumers (receive) are written in Java and Go.

AWS Lambda development with Go and Pulumi

Published: December 06, 2021  •  go, iac

In this blog post I will show you how to write AWS Lambdas with Go and deploy them with Pulumi (Go).

Infrastructure as Code with Pulumi (Go)

Published: November 29, 2021  •  go, iac

In this blog post, I'm going to show you how to set up cloud resources on AWS with the infrastructure as code (IaC) tool Pulumi

HTTP over TLS on localhost with Go server

Published: November 28, 2021  •  go

In this blog post, I'm going to show you how to set up TLS with a Go HTTP server listening on localhost.