[JS GIS] JavaScript GIS Dissolve | GeoToolbox Credit: Dissolve by neocarto https://observablehq.com/@neocartocnrs/dissolve?collection=@neocartocnrs/geotoolbox
Góp nhặt của một kẻ mù công nghệ :p
Tất cả những gì mình note lại liên quan đến Web và kỹ thuật Web
[JS GIS] JavaScript GIS Dissolve | GeoToolbox Credit: Dissolve by neocarto https://observablehq.com/@neocartocnrs/dissolve?collection=@neocartocnrs/geotoolbox
[JS GIS] JavaScript GIS Tissot | GeoToolbox Credit: Tissot by neocarto https://observablehq.com/@neocartocnrs/tissot?collection=@neocartocnrs/geotoolbox
[JS GIS] Gridded Population (15 minute) – United States in JavaScript Credit: Gridded Population (15 minute) – United States by Evan Galloway https://observablehq.com/@gallowayevan/gridded-population-15-minute-united-states
[JS GIS] JavaScript GIS Coords2geo | GeoToolbox Credit: Coords2geo by neocarto https://observablehq.com/@neocartocnrs/coords2geo
GDAL GIS in Browser (JS GIS | geotoolbox) ] geotoolbox is javascript tool for geographers. It allows to simply deal with geojson properties (attribute data) and provides several GIS operations useful for thematic cartography. 1. Installation 1.1. In browser Latest version <script […]
Leaflet vector tiles example Vector tiles Plugins to display vector tiles. Plugin Description Demo Maintainer geojson-vt Efficient library for slicing GeoJSON data into vector tiles on the fly. Mapbox Hoverboard Render vector tiles on canvas with leaflet (geojson, topojson, and protobuf). […]
WordPress fix lỗi This request has been blocked; the content must be served over HTTPS. Thông tin lỗi Mixed Content: The page at 'https://abc.com/uio' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://abc.com/uio/wp/v2/'. This request has been blocked; […]
Điều khoản Dịch vụ Trực tuyến Google AdSense, Admob bằng tiếng Việt (04/2022) Hôm nay tình cờ vào Google AdSense, Google Admob thấy nó thông báo thay đổi chính sách như sau, tóm lại muốn dùng của nó tiếp thì […]
Javascript Date to ISO String +7 Mục đích để chuyển từ định dạng 2020-01-19 17:00:00 sang định dạng 2020-01-19T17:00:00.000Z var d = new Date('2020-01-19 17:00:00'); d.setHours(d.getHours() + 7); d.toISOString();
FastAPI (gunicorn) bị lỗi Mixed Content HTTPS vs HTTP Nhận dạng lỗi Mixed Content: The page at 'https://aaaa' was loaded over HTTPS, but requested an insecure stylesheet 'http://aaaa/static/dist/css/bootstrap.min.css'. This request has been blocked; the content must be served over HTTPS. […]
Cloudflare bị lỗi Error 525 SSL handshake failed https://blog.hostvn.net/chia-se/huong-dan-sua-loi-ssl-handshake-failed-khi-dung-cloudflare.html Lỗi 525 chỉ ra rằng việc xác thực SSL giữa Cloudflare và máy chủ web của bạn không thành công. Lỗi này chỉ xảy ra khi bạn đang sử dụng chế […]
WordPress Disabling forced FTP credentials for any updates WordPress tắt chế độ cài đặt theme, plugin bằng FTP, cho phép upload hay tải trực tiếp https://wordpress.org/support/topic/disabling-forced-ftp-credentials-for-any-updates/ On wp-config add: define ( ‘FS_METHOD’, ‘direct’); Ví dụ // ** Database settings – […]
There is no excerpt because this is a protected post.
PostgreSQL force rename database PostgreSQL ép đổi tên Database — Tắt hết connect đến DB SELECT pg_terminate_backend (pid) FROM pg_stat_activity WHERE datname = 'nongnghiepdongnai2'; — Đổi tên DB ALTER DATABASE nongnghiepdongnai2 RENAME TO nongnghiepdongnai; https://www.geeksforgeeks.org/postgresql-rename-database/