How to download and license ESXi 8?

70 Technical Leave a Comment
It is not easy to download ESXi 8 from Vmware official website. You must have visited Wmware's official website, but they only put a link to broadcom, and then they kept jumping around, and in the end you still couldn't find the correct download link. In this article, we will explain step by step how to downloa…

Get clicked word using pure Javascript

26 Technical Leave a Comment
On browser, if we want to get the clicking word we can use following Javascript: var captureWordOnClick = function(containerEl, callback) { containerEl.addEventListener('click', function (event) { // Get the mouse position relative to the clicked element const x = event.clientX; const y = event.client…

Run rustdesk in docker container quickly

First create data directory. The key file will be generated here. mkdir data Run hbbr: docker run -d \ --name hbbr \ --network host \ -v $(pwd)/data:/root \ --restart unless-stopped \ rustdesk/rustdesk-server:latest hbbr Run hbbs, it depends on hbbr: docker run -d \ --name hbbs \ --network host \ --restart unle…
Next Page »