March 27, 2014
algorithms, code, code library, cryptography, implementation, math, php, programming languages, string, tricks, webhosting
As we all know, we can store a set of boolean values (Yes or No, True of False) in a integer (signed or unsigned). For example, you can define …
The Dynamic Programming DP is one of the most-used approach to solve problems that satisfy the overlapping sub-problems and the optimal substructures. The simplest example is to compute Fibonacci …
To run external program on local computer using WSH (Window Scripting Host), you can create an object WScript.Shell and invoke its Runmethod, e.g.: Dim Obj Set Obj = CreateObject("WScript.Shell") Obj.Run "notepad.exe" To …
The N8 Everdrive is the ultimate game cartridge for 8-bit famicom (60pin) or NES (72pin, Nintendo Entertainment System). N8 stands for Nintendo 8-bit. The cartridge supports a micro SD …
Remember a couple days ago, I write a solution to this puzzle using Dynamic Programming (DP)? The DP solution helps to avoid duplicate computation in the sub-problems (smaller size). …
PHPBB is a forum that is easy to use and powerful. I recently decided to migrate a phpbb forum to a new domain, in order to attract more traffic. …