Blogs
Copy Data from Postgres …
If you need to export data as a .csv file from Postgres and use Docker, here is a simple command to do just that. Using the Docker exec command we can COPY data from a PostgreSQL container to a .csv file on the host machine. docker exec -u <POSTGRES USER> <CONTAINER NAME> -d <POSTGRES …
Tools I Use
Here are a list of tools, platforms, whatever, that I use regularly and recommend to others to checkout. PasteBox PasteBox is a clipboard management tool that allows you to easily access things that you’ve copied/pasted in the past. aText aText is a text expansion tool that allows you to …
Connect Auth0 to Azure …
During a recent prototyping project I needed to connect our Auth0 tenant to a third parties Azure Active Directory (AD) tenant. The process was a little more confusing than I thought it should be, I hope to make the process more straight forward in this article. This article should serve as a …