Category: tricks
Adsense (From Google) is a great, easy to use online advertiser program. Unlike other alternatives, you do not need to get a significant amount of traffic before you apply …
Programmers don’t like GUI (Graphic User Interface) Design. Therefore, the CSS (Cascade Style Sheet) is not their thing. I always knew that there are viewing problems on smart phones/devices …
September 5, 2014
algorithms, beginner, c / c++, code, code library, math, optimization, programming languages, recursive, tricks
We all know the formula to compute value e (mathematical constant that is the base of the natural logarithm) is e = 1 + 1/1!+ 1/2!+ .....+ 1/n! Now, …
The windows command shell (cmd.exe) is not an ideal programming language because it was not made for this! However, you could still implement the loop using the following two …
Suppose if you want to copy a Table to another, this can be done in MySQL with two steps. The first one is to copy the table structure, and …