Choosing the technology behind a mobile app for a startup in 2021: Native vs cross-platform (part 1)

What you should know if you are reading this Our goal is to have a look at the mobile app development technology for startups in 2021, in order to publish an app for Android and an app for iOS with the perfect trade-off between quality and time+resources. How do we choose the best technology to … Continue Reading

Exploring Firebase CLI with some Firestore tips

Introduction: Firebase CLI According to the github page of the firebase-tools project, the firebase cli can be used to: Deploy code and assets to your Firebase projects Run a local web server for your Firebase Hosting site Interact with data in your Firebase database Import/Export users into/from Firebase Auth The web console is fine for … Continue Reading

Handling execution time for PHP (FPM)

The problem: setting max_execution_time / using set_time_limit() I don’t get the wanted results If you are here, you are probably looking for an answer to the question: why set_time_limit() is not working properly and the script is killed before? or why ini_set(‘max_execution_time’, X), is not working properly and the script is killed before? The answer is not exactly … Continue Reading