Tag: programming language
Javascript is the most popular programming language used on internet. It is also extended in many other platforms for system administration/scripting/macro purposes. For example, WSH (Windows Script Hosting) supports …
Sed (Stream Editor) is probably the most popular programming utility that handles the text stream under Linux. It’s very powerful and can be used to very complex daily jobs. …
Defining a function/procedure in Linux BASH is quite similar to other high-level languages. functionName() { # content goes here } However, passing parameters inside the function is somehow different, …
Recently I am involved in optimising the Delphi code for I/O file access. I found it a performance bottleneck in dealing with big files. For example, computing XOR check …
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; …