04/08/2020Stateless là gì? Stateful là gì?Stateless Trong lập trình web, chúng ta có sự tương tác giữa client với server. Phần mềm gồm 2 thành […]
27/09/2021DevOps roadmapDepOps là gì? DevOps là một sự kết hợp của các nguyên lý, thực hành, quy trình và các tool giúp […]
08/07/2020Install Virtualbox 6.0 linux mint, ubuntuInstall Virtualbox echo "deb http://download.virtualbox.org/virtualbox/debian bionic contrib" | sudo tee -a /etc/apt/sources.list wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add […]
08/08/2019EE4 renew sll, update http to httpsEE4 renew sll sudo ee site ssl-renew 24hdev.com EE4 update http to https ee site update 24hdev.com --ssl=le
19/06/2021Disable quyền ghi file wordpressdefine( 'DISALLOW_FILE_EDIT', true ); define( 'DISALLOW_FILE_MODS', true );
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