To update an Azure Function from Node JS 14 to 18LTS, you need to: Backstory Microsoft is deprecating support for Nodejs 14 LTS in Azure Functions, so I needed to update the ones that used it. I went on and tried to update the Node version from the Function App configuration, but the dropdown allowed… Continue reading Updating an AzureFunction from Node 14
Tag: error
SentryError: Native Client is not available, can’t start on native when updating expo-cli to 4.x.x (from version 3.22.3)
TL;DR: Update your metro.config.js to use @expo/metro-config based on the latest guidelines (SDK 40+) – It’s funny when you encounter an error in a project, and after spending a lot of effort researching it, to find out that the cause is the same with a totally different error on a very different project. In my… Continue reading SentryError: Native Client is not available, can’t start on native when updating expo-cli to 4.x.x (from version 3.22.3)
jQuery error .apply( matched.elem, args ); undefined is not a function
If you’re having an error in your site/app that says that is undefined is not a function and the error happens on the row containing .apply( matched.elem, args ); (jquery.js:4676 for version 2.0.3). You can do the following 2 things to figure out the error: 0. You need Chrome Dev Tools 1. Enable async for your dev… Continue reading jQuery error .apply( matched.elem, args ); undefined is not a function
Adding a custom attribute to an existing sencha touch component (and why it might cause error after production build)
Lately we’ve been using Sencha Touch for an interesting project. We found a problem which something was working correctly while on develop mode but stopped working after the app was built for production. Turned out the problem was becuase we added a custom attribute to an existing sencha component which we wanted to use. Ext.define(‘SomeView’,… Continue reading Adding a custom attribute to an existing sencha touch component (and why it might cause error after production build)
Update to WooCommerce 2.0 and missing information for the product (in the front-end)
WooThemes released the new WooCommerce 2.0 recently and updating seems really charming with the new interface and other listed features. However sometimes updating won’t be the best thing you can do if your theme is made for 1.6. In non-technical words – if after the update some of the information is missing or is wrong… Continue reading Update to WooCommerce 2.0 and missing information for the product (in the front-end)
JS Date object and iOS Safari
Safari on iOS is probably one of the best mobile browsers. Still there is one thing that I often got wrong and wonder why my webapp doesn’t work. Javascript Date Object in iOS Safari In every normal browser you could just create a Date object from string as var myDate = new Date(‘2013-01-21T13:46:20’); But on… Continue reading JS Date object and iOS Safari