Best of PostgreSQL — March 2023
- 1
- 2
- 3
- 4
The Art of Simplicity·3y
The lost art of writing SQL queries
Most (junior) developers no longer are able to write anything but the most trivial queries. If you want to sharpen your SQL skills, have a look at https://www.sql-practice.com/. Here you get a whole list of exercises that require writing SQL queries. If you get stuck hints are available that help you get on the right track.
- 5
Golang News·3y
A Golang based open-source, self-hosted feature flag application
Flipt is an open-source, self-hosted feature flag application that allows you to run experiments across services in your environment. It can be deployed within your existing infrastructure so that you don’t have to worry about your information being sent to a third party or the latency required to communicate across the internet.
- 6
Crunchy Data·3y
Is your Postgres ready for production?
Is your database ready for production? Here's a handy checklist to make sure you're not caught flat footed. Logical backups are great if you want to move data around between environments or need a local copy. Physical backups are a combination of a base backup and the write-ahead-log or WAL.
- 7
Community Picks·3y
GO CRUD Rest API using Mux, Postgres, Docker, and Docker Compose
Learn how to create a CRUD Rest API in Go using Mux, Postgres, Docker, and Docker Compose. Follow the step-by-step guide to build the API and dockerize the project. Find all the code and a video version in the provided GitHub repository.