Category: delphi
September 16, 2012
algorithms, batch script, beginner, code, code library, delphi, encryption, implementation, programming languages, string, tools / utilities, windows, windows command shell, windows scripting host
Rot13 and Rot5 are two ASCII rotation scheme that are made for alphabetic and digits respectively. The Rot13, namely, rotates the letter by 13 places, ‘A’ to ‘N’, ‘B’ …
Return in Try-Finally for Python What do you think the following will return in Python? #!/usr/bin/env python # https://helloacm.com def test(): try: return True finally: return False print test() …
Similarly to , the multithreading in a project has also caused the strange error, which is IO Error 103. It does not happen every time but randomly. I googled …
Recently, I have been working on a project that involves C# and Delphi. The C# is used develop the GUI-related application and the Delphi code provides a COM (Component …
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 …