14/12/2019How do you use bcrypt for hashing passwords in PHP?use password_hash() to create a bcrypt hash of any password: password_hash('yourPassword', PASSWORD_DEFAULT); use password_hash() to create a bcrypt hash of […]
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
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 […]
28/02/2019Hướng dẫn sử dụng lệnh find trên teminal LinuxBài viết này nhằm giúp quý khách có một cái nhìn tổng quát về lệnh find – một lệnh tìm […]
09/03/2020Automatically Set the WordPress Image Title, Alt-Text & Other MetaChèn vào file function.php /* Automatically set the image Title, Alt-Text, Caption & Description upon upload --------------------------------------------------------------------------------------*/ add_action( 'add_attachment', 'my_set_image_meta_upon_image_upload' […]