Code snippets

You will find here 4 code snippets I find useful so I don't have to Google ™ or Stackoverflow ™ them when I need. There are also code snippets I always forget! 😁 Sometimes, related links to the code will be available. The main difference with other random snippets you will find on the web is that in most cases (for the Symfony related ones) you will be able to run them directly from this website to check the output so you can verify it works as expected ™.

This snippet shows how to get the PostgreSQL version. Yes, this is as simple as this. Note that this is the exact same query with ...

postgresql

Published on 2024-01-10 • Modified on 2024-01-13

 View the code


In this snippet, we will see how to wait for the Postgres service to be available before using it. It's to avoid the following kin...

Docker

Published on 2020-08-30 • Modified on 2020-08-30

 View the code


In this snippet, we will see how to create a PostgreSQL database with an associated user of the same name. We create a user then w...

postgres

Published on 2020-05-27 • Modified on 2020-05-27

 View the code


This is the docker compose file I am using for postgreSQL 9.6. As this is an official image, there should't be any problem. Don't ...

Docker

Published on 2019-10-01 • Modified on 2019-10-01

 View the code