-
“In JavaScript, there are six falsy values: false, 0, ”, null, undefined, and NaN. Everything else is truthy.”
-
2 ways to activate Windows 10 for FREE without any software
“Done!!!”
-
Running Visual Studio Code on Linux
“(error ENOSPC)
When you see this notification, it indicates that the VS Code file watcher is running out of handles because the workspace is large and contains many files. The current limit can be viewed by running:
cat /proc/sys/fs/inotify/max_user_watches
The limit can be increased to its maximum by editing /etc/sysctl.conf and adding this line to the end of the file:
fs.inotify.max_user_watches=524288
The new value can then be loaded in by running sudo sysctl -p.”
-
html5 – Is there a way to check if geolocation has been DECLINED with Javascript? – Stack Overflow
“if (error.code == error.PERMISSION_DENIED)
console.log(“you denied me :-(“);”