Category: code library
You can easily use Shell.Application to invoke methods related to Windows such as minimize all windows. For example, if you require users choosing a folder you can invoke the method BrowseForFolder. The …
September 5, 2013
batch script, code, code library, implementation, internet, malware, programming languages, tricks, vbscript, windows, windows scripting host
In recent years, the malware, virus written in scripting language are spreading rapidly worldwide. Everyday, there is a ‘new’, ‘mutated’ malware/virus causing damages via internet. The VBS virus is …
April 16, 2013
algorithms, beginner, c #, code, code library, floating point, implementation, math, optimization, programming languages, tricks
Mathematical function log10can be quite time consuming. If it is not available, for some languages such as VBScript, you have to compute it base on the fact. and therefore, we …
node.js (http://nodejs.org) starts to gain its popularity these days. It is a Javascript-based event-driven, non-blocking IO, lightweight Server side toolkit, which can be easily used to build e.g. web …
Quick Sort is a comparison sorting method, on average, the complexity is . In worst cases, e.g. when the array of elements are already sorted, it is degraded into …