Posts in Learnings

Latest Comments

Cookies – Delicious and useful to store data

Cookies are necessary to store data on a website, e.g., a JWT to validate that the user is who he claims to be. Furthermore, we[…]

CORS – Cross-Origin Resource-Sharing is my best friend

Deploying the backend separately from the frontend (on different servers) has to deal with CORS, the Cross-Origin fun. Personally, CORS and I are not best[…]

Deploy react app on static web host

Deploying a react app is an important step to get your frontend / backend to the your customers. The deployment can be performed differently, using[…]

Connect Cloud Run and Cloud SQL PostgreSQL

While developing an application that is deployed in Google Cloud Run and uses a PostgreSQL database provided by Google Cloud SQL, I faced several issues.[…]