Tag: implementation
The problem is from codeforces: http://codeforces.com/problemset/problem/197/B It has been a while since last time I submitted Python solutions to codeforces. This time, I pick a math problem that can …
In software designing, it is often a good practice to separate the logics from the presentation. For example, the PHP Smarty framework allows defining templates for presentation and processed …
Under Windows Script Hosting WSH, the language of VBScript or JScript do not provide built-in keyword to support importing external script files (*.vbs or *.js). This is not very …
June 17, 2012
batch script, beginner, code, code library, implementation, programming languages, technical, VBA, vbscript, windows
VBScript has been in use widely on every version of windows. It is said Bill Gates favor VBScript, which may be one of the reasons that it is shipped …
A quick way to check if it is a 32 or 64-bit OS is to determine the size of a pointer. In 32-bit Operating System (OS), the size of …