29/11/2025Giới Thiệu Tổng Quan Về Ubuntu1. Ubuntu là gì? Ubuntu là một hệ điều hành mã nguồn mở dựa trên nhân (kernel) Linux, được phát […]
21/04/2020Format number with Javascriptfunction formatNumber(num) { return num.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,') } console.info(formatNumber(2665)) // 2,665 console.info(formatNumber(102665)) // 102,665 console.info(formatNumber(111102665)) // 111,102,665
15/06/2020Các khái niệm RDBMS căn bản trong SQLRDBMS là gì? RDBMS là viết tắt của Relational Database Management System ((Hệ thống quản lý cơ sở dữ liệu […]
29/06/2020Thêm swap cho vps linuxCreate a Swap File sudo fallocate -l 1G /swapfile ls -lh /swapfile Output: -rw-r--r-- 1 root root 1.0G Apr 25 […]
30/03/2020How to change all files and folders permissions of a directory to 644/755find . -type d -exec chmod 0755 {} \; find . -type f -exec chmod 0644 {} \;