[TIPS] Convert Your Numbers To Human Readable Format
Sometimes your code produces large numbers that are hard for users to read. For example, 17753392783 bytes or 18293753038 units. For human eyes, it’s easier to…
// TAG · 3 POSTS · WEB PROGRAMMING
Sometimes your code produces large numbers that are hard for users to read. For example, 17753392783 bytes or 18293753038 units. For human eyes, it’s easier to…
When debugging a PHP application, print_r() or var_dump() is often used to display the data inside a variable, usually an array that stores many values. print_r()…
Vi editor is a lightweight text editor on Linux and derived from the name “visual”. The original vi program was written by Bill Joy in 1976…