On windows command shell, there is a less-known command clip which is used to redirect the output to clipboard. The text can then be pasted into other programs. The usage for …
There is a ‘paste‘ command which is less known and used on Linux shell environment. The ‘paste‘ command doesn’t work as it sounds (copy + paste, cut + paste). …
WSH (Windows Scripting Host) is a powerful scripting environment that comes with Windows Operating System. By default, there are two scripting languages supported, which is JScript and VBScript. You …
Here is another simple example that shows how easy and powerful the Processing is. Adjust frameRate (frames per second) to make the animation faster or slower). // https://helloacm.com/processing/ int per = …
In SQL, sometimes, you want to search a string field that contains a keyword, but as a whole word. So for example, if you search for ‘word‘, you do …
The basic integer type in 16-bit Turbo Pascal is 16-bit while from 32-bit Delphi, it is 32-bit. The basic integer types for modern Delphi compilers are: byte, ShortInt, Word, …