Explore >> Select a destination


You are here

danielms.site
| | jbrandhorst.com
3.8 parsecs away

Travel
| | Most developers will have to interact with SQL at some point in their career, and often nowadays that means working with Postgres. I've been using Postgres with Go for a few years now and have found a couple of libraries that work really well together to make the Go Postgres experience productive, safe and fun. TL:DR; I have created an example repo that puts all of the below into practice: github.
| | hjr265.me
2.6 parsecs away

Travel
| | After building Printd, Toph's print daemon, it became necessary to ensure that contest organizers were using the latest version of the software. Since Printd is open-source we host both the code and the release artifacts on GitHub. The following function uses the Go client library for GitHub to check the latest release and compare the tag with the current version. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 package main import ( "context" "log" "time" "github.
| | golangbot.com
2.3 parsecs away

Travel
| | Learn how to connect to MySQL and create a database using the database/sql package. This tutorial also deals with DB connection pooling in Go.
| | blog.oddbit.com
18.6 parsecs away

Travel
| In this article, we will look at what is necessary to run OpenStack's Keystone service (and the requisite database server) in containers using Docker Compose. Running MariaDB The standard mariadb docker image can be configured via a number of environment variables. It also benefits from persistent volume storage, since in most situations you don't want to lose your data when you remove a container. A simple docker command line for starting MariaDB might look something like: