-
Remote Desktop on Windows 11 with Microsoft Account MFA
This is the guide to use Remote Desktop on Windows 11 Pro with Microsoft Account logged in and enabled MFA. On Windows 11 Pro (also Windows 10 Pro), If the user has signed in to Microsoft Account and enabled MFA, so the Local Account password is swept out once switching to Microsoft Account and we…
-
Sencha ajax call and store load canceled after 30 seconds
The topic discussion is on stackoverflow too old but FYI who want to do the quicky trick. The default of Ajax call in Sencha is 30000 milliseconds (30 seconds) So, you have to set a config to the default behavior in the Ext.data.proxy.Ajax, for example, 60s, like: Ext.define('Core.data.proxy.WrapperAjax',{ extend: 'Ext.data.proxy.Ajax', alias: 'proxy.wrapperAjax', config: { timeout:…
-
Upgrade the macOS Catalina to BigSur on VMware AMD Laptop
This guide is about upgrade the macOS Catalina to BigSur and fix the error on AMD Laptop This virtual machine requires AVX2 but AVX is not present. This virtual machine cannot be powered on The CPU has been disabled by the guest operating system. Power off or reset the virtual machine. As the previous post…
-
Install MacOS Catalina On VMware AMD Laptop
Updated: Upgrade the Catalina to the Big Sur Don’t want to try these complexity steps? Just Run my pre-made macos BigSur VMDK I had bought a new laptop on Dec 2020 to replace the old one – Sony VAIO E VPCEG23 11 years old, It’s ASUS Zenbook UM425IA from newegg.com, but wait, the AMD laptop.…
-
Site Kit by Google: The response is not a valid JSON response
Between many of the Analytics plugin like WP Statics, Site kit from Google and the best plugin that I’ve ever used. But hold on, why I’m seeing the error message: The response is not a valid JSON response The problem, I finally discovered, was the popular iThemes Security plugin. But to remove it was not…
-
ezoom.js – a jquery plugin for image with zoom, rotate, grabbing effect
ezoom.js ezoom.js is a jQuery plugin for simple Image with zoom, rotate, grabbing effect with supporting Event handlers. Features: Zoom in / Zoom out the image with the mouse wheel. Pan the image with the mouse drag. Rotate photos using the arrow keys, A D W S R keys, or the dedicated controls. Supports both…
-
Simple Nodejs Server with Express, JWT, sqlite3
This is a simple Node.js server using Express, JWT with sqlite3. With the route middleware to authenticate and check token. Send request with token in session, body, param or header: req.session.token req.body.token req.param('token') req.headers['n-access-token'] Table contents Requirements Install Run the Server Usages /login /me /people /logout /logout Acknowledgements Credits Requirements Nodejs Node Dependencies: "body-parser": "~1.18.3",…