Creating a simple Angular 10 App with Nodejs Back-End using MySQL

The combination with Angular, Nodejs and MySQL is very powerful. I am a huge fan of MySQL, started using it in 2007 and here we are, 2020 and people still using it a lot for websites and web services. On top of that, I just found out that MySQL was created by some Swedes back …

How to avoid the DEADLINE_EXCEEDED error in Firestore when writing many documents per second

If you stumbled upon the DEADLINE_EXCEEDED error when using Firebase Firestore then it is probably because you have been writing documents over the limit which is one document per second. This is from the Firebase website. Limit the collection write rate 1,000 operations/second Keep the rate of write operations for an individual collection under 1,000 …