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 […]
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
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ú […]
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 […]
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 […]
HTML ISO Country Codes Reference
HTML ISO Country Codes Reference ISO Country Codes Country ISO Code AFGHANISTAN AF ALBANIA AL ALGERIA DZ AMERICAN SAMOA AS ANDORRA AD ANGOLA AO ANTARCTICA AQ ANTIGUA AND BARBUDA AG ARGENTINA AR ARMENIA AM ARUBA AW AUSTRALIA AU AUSTRIA AT AZERBAIJAN AZ BAHAMAS BS BAHRAIN BH BANGLADESH BD BARBADOS BB BELARUS BY BELGIUM BE […]
HTML Language Code Reference
HTML Language Code Reference ISO 639-1 Language Codes ISO 639-1 là tiêu chuẩn cho ngôn ngữ.. Language ISO Code Abkhazian ab Afar aa Afrikaans af Akan ak Albanian sq Amharic am Arabic ar Aragonese an Armenian hy Assamese as Avaric av Avestan ae Aymara ay Azerbaijani az Bambara bm Bashkir ba Basque eu Belarusian […]
HTML URL Encoding Reference
HTML URL Encoding Reference ASCII Encoding Reference Mặc định trong HTML5 là UTF-8. Character From Windows-1252 From UTF-8 space %20 %20 ! %21 %21 “ %22 %22 # %23 %23 $ %24 %24 % %25 %25 & %26 %26 ‘ %27 %27 ( %28 %28 ) %29 %29 * %2A %2A + %2B %2B , […]
KIẾN TRÚC CỦA HỆ ĐIỀU HÀNH ANDROID
KIẾN TRÚC CỦA HỆ ĐIỀU HÀNH ANDROID Hệ điều hành Android là 1 ngăn xếp các thành phần phần mềm, được chia thành 5 phần và 4 lớp chính như trong hình bên dưới. Linux Kernel Dưới cùng là lớp Linux – Linux 3.6 cùng với khoảng 115 bản vá. Lớp này cung cấp 1 […]
React And React Native ES5 And ES6
React And React Native ES5 And ES6 REFERENCE In ES5, if you use CommonJS standard, the introduction of React package through basic require, the code is similar to this: //ES5 var React = require(“react”); var { Component, PropTypes } = React; var ReactNative = require(“react-native”); var { Image, Text, } = ReactNative; In ES6, the […]