Tag: tutorial
301 and 302 redirects are quite an important topic in the SEO (Search Engine Optimization). 301 creates the redirect telling the search engines that the link has moved to …
In one of the projects, the .NET program needs to allocate a relatively large 3-dimensional array. It was defined as the multidimensional array as the following. private float data …
U-drives are very popular nowadays, they have generally replace floppys, and even CDs. Many light-weight virus or trojans are aiming for creating a hidden file which is called autorun.inf …
July 16, 2012
algorithms, batch script, beginner, brute force, implementation, math, programming languages, technical, tricks, windows, windows command shell
Windows Batch File (*.bat, *.cmd) is probably the most well-known exectuable file formats because of its simplicity, i.e. each line corresponds to a command for shell to execute. This …
The Python way of initializing a list can be clearly expressed as the multiplication operator: * for example, # an array of ten integers, which are all initialized to …