I recently consider purchasing my third VPS Server and the ping speed is one of the concern. I have a relatively high ping (around 250 ms) from UK to …
In C#, there is async and await that allows you to write asynchronous code easily e.g. doing some calculations while fetching some data from I/O. Asynchronous code improves the …
I have raised a question in SO: How can the OS use all cores for my application? basically, my single-threaded applications seem not utilizing all the cores if running …
The GUID represents an unique identifier, and you can get the API to generate one for you. In WSH (Windows Scripting Host) environment, it turns out to be very …
You can read and write a binary file at the same time in almost any modern programming languages (as far as I know, not VBScript). If you open the …
In Software Engineer, we get to hear the proverb a lot: “Throw Often, Catch Rarely“. This is a very good programming practice that should be added to your coding …