Tag: scripting
GCD Computation in Bash What is GCD? GCD stands for Greatest Common Divisor. It is the largest positive integer that divides two numbers without leaving a remainder. For example: …
How to Repeat Until Errors using GDB or LLDB Debugger When debugging programs, it’s common to want to repeatedly run a program until it encounters an error. Both GDB …
When learning a new programming language (scripting or general), it is always better to try something easy, simple at first. My recommendation is to implement the Fibonacci computation, which …
The Processing (http://www.processing.org) Programming/Scripting language is so powerful that it can achieve many many stuffs using just a few lines of code. The Processing is ideal for Computer Graphics/Animation. …
Under WSH (Windows Script Host), you can access the COM object WScript.Shell for some useful functions. For example, the collection Environment provides the environment variables, so you can easily …