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
Category
programming
Firebase, cloud messaging and problems receiving background notifications
2020-12-11 18:39:36.965 14746-14746/your.bundle E/RNFirebaseMsgReceiver: Background messages only work if the message priority is set to ‘high’ This is something you can find in your adb logcat output when sending a push notification (cloud message) and your app is in background. More specifically, the problem is mostly related to the idle status of your device. This … 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
jQuery selects combination and submit
I had to help a friend solving a very common problem for, for example, booking websites. The example is basically the selection of options based on two <select>s elements: number of adults and number of children for a possible booking. So, what we are going to do is to create a very simple HTML with … Continue Reading
Remote Debugging Android Devices with VirtualBox through port forwarding
Introduction If you are developing a brand new project on your VirtualBox instance, it is very useful to use the developer tools and the device toolbar on Chrome (or the Responsive Design Mode on Safari). But is of course much more useful to perform real tests on real devices. The Remote Debugging Android Devices is a great opportunity for … Continue Reading