Best way to update Node
Make things easy with package n.
n latest
Make things easy with package n.
n latest
If you want to test your app with different times you don’t need to change your computer time (what can lead to unexpected consequences), instead you can simple open a terminal and launch your app with faketime.
faketime -f "@2049-01-11 17:50:00" firefox
sed -e 's/^/~/' -e ': r' -e 's/^\( *\)~ /\1 ~/' -e 't r' -e 's/~//' -i *
If you have a Cordova Error after updating to Ubuntu 18.04, the easiest way to resolve this issue is removing openjdk-11 and reinstalling openjdk-8.
sudo apt purge openjdk-11-jdk-headless openjdk-11-jre-headless sudo apt install openjdk-8-jdk
There is not support for the new java versions yet in Cordova/Android (at the post date)
chromium-browser --disable-web-security --user-data-dir=/tmp/something
in your terminal to allow all origins (temporary ignore CORS mechanism )
Note: Use Chromium without security just with your own code for testing and development, do not browse with it and beware about using third-party software in your code.