[PyInstaller](https://www.pyinstaller.org/) can take a Python script and bundle it up as a standalone executable for macOS, Linux and apparently Windows too (I've not tried it on Windows yet). (more…)
Read more »
Of all the programming styles I have learned,
dynamic programming
is perhaps the most beautiful. It can take problems that, at first glance,
look ugly and intractable, and solve the problem with clean, concise code.
Where a simplistic algorithm might acc... (more…)
Read more »
Log is an important tool for any developer. it helps in debugging and log important information or exceptions that emits while the code executes... (more…)
Read more »
Hash tables are one of the most commonly used data structures in computer science, due to their O(1) access time. However, this assumes a… (more…)
Read more »