I thought it will be nice to share some code-review experience from time to time. A code-review is important and necessary for PR (Pull Requests) to merge to the …
As you probably know, the SteemIt stores the images on AWS cloud servers. This is different from the texts (post content), which are stored in block-chain (e.g. lots of …
I wrote this Simple Chrome plugin to switch between Simplified Chinese and Traditional Chinese automatically. I have known many friends on steemit who use Traditional Chinese (BIG5 or ZH-TW). …
This is a interesting math puzzle: X, Y and Z is an integer between 0 to 9. so what are they? We can write a PowerShell script to search …
In this post, we present the final ‘optimized’ solution using Dynamic Programming, which is implemented using a 2 dimensional array with iteration. Let’s review this code: function f($x, $y) …
Let’s see this question: If Jack starts at A, and he can only travels one move at a time to the north or east, and he cannot go back. …