Category: programming languages
June 14, 2012
batch script, beginner, I/O File, implementation, javascript, programming languages, technical, tools / utilities, VBA, vbscript
There are currently 3 ways to hide your Script Code (VBScript or Javascript) if you don’t want others to access to your code easily. For example, you might want …
In Delphi, the TFileStream can be used to stream the file reading and writing. Below is a sample usage that appends a ‘A’ to a file everytime. program Test; …
The problem is from codeforces: http://www.codeforces.com/problemset/problem/1/A Given the size of the area and the size of the flag stone, you are asked to compute the minimal number of flagstones …
I guess, quite often, you see the usage of __name__ in Python. Yes, it is a keyword (attribute) associate to a module. It can be used to tell if …
In most cases, if you are learning a new language, you will have to figure out in what cases, variables are copied by references and in what other cases, …