Loadding..

Tech stack

HTML5 Canvas vs SVG — Nên Chọn Cái Nào?

Từ bản HTML5, Canvas và SVG được cung cấp như hai cách để vẽ “đồ hoạ” trên nền tảng web. Hai công nghệ này đối lập nhau về bản chất: một bên là raster (pixel), một bên là vector (toán học). Hiểu đúng bản chất sẽ giúp bạn chọn đúng công cụ. Thông Tin Chung […]

Continue reading


Assembly vs C — Con Dao Phẫu Thuật và Tiêu Chuẩn Vàng 2026

“Năm 2026, tôi sẽ nói thẳng: Đừng học Assembly trừ khi bạn thuộc 3 trường hợp: Viết Compiler, làm Cyber Security hoặc thiết kế Chip. Với 99% dev còn lại, C/Rust mới là chân ái.” Tâm thế 2026: Trong kỷ nguyên AI và Rust-in-Kernel, việc chọn lựa giữa “thủ công” và “tự động” không còn […]

Continue reading


Web Workers là gì?

1. Giới thiệu 1.1. Web Workers là gì? Web Workers là một API JavaScript cho phép chạy các script trong background threads (luồng nền), tách biệt hoàn toàn với main thread của trình duyệt. 1.2. Tại sao cần Web Workers? JavaScript mặc định là single-threaded, nghĩa là: Web Workers giải quyết vấn đề này bằng cách: 2. Cách hoạt […]

Continue reading


Tổng Hợp Kiểu Dữ Liệu Trong Rust

Đây là bảng tổng hợp đầy đủ các kiểu dữ liệu trong Rust. Bảng bao gồm từ các kiểu cơ bản như số nguyên, số thực cho đến các kiểu phức tạp như collections và smart pointers. 1. Kiểu Số Nguyên (Integer Types) Kiểu Size Range Giải thích Ví dụ i8 8 bit -128 đến […]

Continue reading


Top 52 + Open Source UI Libraries

Building user interfaces can be a challenging and time-consuming task. That’s where UI libraries step in! These frameworks provide pre-designed, customizable components and tools to help you create visually stunning and highly functional applications quickly. Let’s explore 52 powerful UI libraries that can take your development skills to the next level. 👨‍🏫 1. Bootstrap 📚 What it is: A […]

Continue reading


Design Resources For Developers

UI Graphics Websites and resources with modern UI components in different formats such as PSD, Sketch, Figma, etc. They are great for ideas for web components/UI Website                            Description UI Design Daily Awesome UI Components of all types 100 Daily UI Free Figma […]

Continue reading


How to Unistall Nginx from Centos

sudo systemctl status nginx sudo systemctl stop nginx.service sudo systemctl disable nginx.service sudo rm -rf /etc/nginx sudo rm -rf /var/log/nginx sudo rm -rf /var/cache/nginx/ sudo rm -rf /usr/lib/systemd/system/nginx.service sudo yum remove nginx

Continue reading


Khóa học Udemy miễn phí hàng ngày

Khóa học Udemy miễn phí hàng ngày Udemy là một website có nhiều khóa học bằng tiếng Anh giống như Lynda, tuts+ ….  đã phát triển được hơn 3 năm. Luôn có rất nhiều chương trình khuyến mãi cực chất, từ giảm giá cho đến miễn phí các khóa học. Các khóa học trên Udemy rất đa dạng, phong phú […]

Continue reading


Standard Exif Tags

Exif image These are the Exif tags as defined in the Exif 2.3 standard. IFD1 tags are not listed seperately. All IFD0 tags may also be present in IFD1, according to the standard. The second part of the Exiv2 key of an IFD1 tag is Thumbnail (instead of Image), the other two parts of the key are the same […]

Continue reading


Disable viewport zooming iOS 10 safari

Disable viewport zooming iOS 10 safari   This is a new feature in iOS 10. From the iOS 10 beta 1 release notes: To improve accessibility on websites in Safari, users can now pinch-to-zoom even when a website sets user-scalable=no in the viewport. I expect we’re going to see a JS add-on soon to disable this in […]

Continue reading