How To Get Image Pixel Size In Windows
When you develop a javascript application, especially process images, you always need to get the image dimension size in pixels. This article will tell you how to easily get an image pixel size in windows.
When you develop a javascript application, especially process images, you always need to get the image dimension size in pixels. This article will tell you how to easily get an image pixel size in windows.
Recently when I use VSCode to clone a git repository to my local computer, I meet the error message Authentication failed on the git remote. This article will tell you how to fix it.
This article will tell you how to implement web browser notification in the Html5 web application, then when your website user browses your website page, your website can send notifications to the client user instead of an alert dialog. This is more user-friendly and elegant.
This article will tell you how to use the web worker to implement thread programming in javascript. It will demonstrate the difference between using a web worker thread and not using a web worker thread when you implement the same function.
This article will tell you how to use WebSocket in javascript to communicate with the WebSocket server with examples.
This article will tell you how to use Python to develop a WebSocket server and client applications with examples. It will use the python websockets module and asyncio module.
Besides the python socket module, you can also use the python socketserver module to create TCP & UDP servers. The socketserver python module is easier to use than the socket module. This article will tell you how to use it with examples.
I upgrade my windows OS from windows 10 to windows 11 recently. After that, I found when I browse a web page in google chrome, the web page can not be shown. But the web page can be shown on other web browsers ( Firefox, Edge, Opera ) successfully. This article will tell you how …
How To Fix Google Chrome Can Not Open Web Page After Upgrade Windows Read More »
This article will tell you how to develop a client-server socket application using the Python socket module with examples. It will create both TCP and UDP protocol socket client and server.
When I write a Python script, I always need to get the python script running operating system related information, this article will tell you how to get the OS information where you run your Python script.