Skip to content

Long's blog

Góp nhặt của một kẻ mù công nghệ :p

  • My Info
    • Đỗ Thành Long’s CV
    • My Github
    • My Youtube
    • My Google Scholar
    • My Facebook
  • Café
    • soiqualang_chentreu
    • Trắng Xóa!
    • Capuchino
    • Robusta Café
    • Đen nóng Café
  • Dev
    • Web
    • Công nghệ
    • Uncategorized
  • GIS
    • Shared Map
    • QGIS
    • WebGIS
    • PostgreSQL, PostGIS
    • GeoServer
    • Openlayers
  • Viễn thám
  • Research
    • Ý tưởng
    • Research
    • Sói’s Tutorials
  • Tài liệu
    • GIS – Remote Sensing news
    • Tài liệu
    • Dữ liệu
    • Mẹo vặt
  • My Apps
    • Khoa học thường thức
    • Trắng Xóa – Danh ngôn
    • Harmonica tabs
    • Ảnh chế hài hước, dzui dzui
    • GeoGIS
    • Guitar tabs – Viettabs
    • 2000 Phác đồ điều trị bệnh
    • Q2A
    • Học HTML
    • Openlayers Cookbook
    • OpenLayers3 Leaflte Cookbook
    • OpenLayers Create Code
    • PostgreSQL Tools
    • Get link Remote Sensing Data
    • Lon,Lat Decimal
    • Download Landsat Images
    • Tra cứu vận đơn Viettel Post
    • GET Map OGC WMS, WFS, WCS services
    • PHP-SLD Generate
    • Viettabs.cf – Guitar tabs sharing
    • Files to Videos
  • Other
    • Reading
    • Games
    • Harvest Moon

Tag: Nodejs

[Ubuntu] Install NodeJs 18 on Linux

Posted on 02/06/2023 by soiqualang_chentreu Posted in Lang thang, Linux Tagged Linux, Nodejs, ubuntuLeave a Comment on [Ubuntu] Install NodeJs 18 on Linux

[Ubuntu] Install NodeJs 18 on Linux curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash – apt-get install nodejs node -v # npm install

Read More

NodeJS error TS2456: Type alias Geometry circularly references itself

Posted on 25/04/2023 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Nodejs, TS2456Leave a Comment on NodeJS error TS2456: Type alias Geometry circularly references itself

NodeJS error TS2456: Type alias Geometry circularly references itself Err info ERROR in node_modules/@types/geojson/index.d.ts:79:13 – error TS2456: Type alias 'Geometry' circularly references itself. 79 export type Geometry = Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon | […]

Read More

IONIC – Build IOS 2023

Posted on 03/04/202303/04/2023 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Mẹo vặt Tagged Build IOS, CDVWKWebViewEngine, cordova, Ionic, NodejsLeave a Comment on IONIC – Build IOS 2023

IONIC – Build IOS 2023 https://ionicframework.com/docs/developing/ios Install Nodejs16 Phải Nodejs16 mới được, bản nodejs17 đang lỗi ERR_OSSL_EVP_UNSUPPORTED chưa có cách sửa https://stackoverflow.com/questions/11177954/how-do-i-completely-uninstall-node-js-and-reinstall-from-beginning-mac-os-x sudo rm -rf /usr/local/{lib/node{,/.npm,_modules},bin,share/man}/{npm,node,man1/node*} nvm uninstall v17.4.0 // check version node -v || node –version // list installed […]

Read More

nvm use does not switch node versions

Posted on 28/03/2023 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Nodejs, nvmLeave a Comment on nvm use does not switch node versions

nvm use does not switch node versions I had to delete the folder located at C:\Program Files\nodejs: And then run nvm use {version} again to repopulate this folder with the correct node version. I suspect that nvm is having trouble deleting this folder […]

Read More

Nodejs ERR_OSSL_EVP_UNSUPPORTED

Posted on 09/02/202308/03/2023 by soiqualang_chentreu Posted in Lang thang, Web Tagged Nodejs, opensslLeave a Comment on Nodejs ERR_OSSL_EVP_UNSUPPORTED

Nodejs ERR_OSSL_EVP_UNSUPPORTED Err info opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ], library: 'digital envelope routines', reason: 'unsupported', code: 'ERR_OSSL_EVP_UNSUPPORTED' } command terminated with exit code 1 Fix Nodejs ERR_OSSL_EVP_UNSUPPORTED I had this problem too. I’d accidentally been running on the […]

Read More

IONIC NPM update all plugins, check java, gradle version

Posted on 12/10/202212/10/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Mẹo vặt Tagged Ionic, Nodejs, npmLeave a Comment on IONIC NPM update all plugins, check java, gradle version

IONIC NPM update all plugins, check java, gradle version IONIC NPM update all plugins npm install -g cordova-check-plugins cordova-check-plugins –update=auto Check java, gradle version # Check java path where java #—– java -version gradle -version https://downloads.gradle-dn.com/distributions/gradle-7.5.1-bin.zip

Read More

[Fix Err] Node.js request CERT_HAS_EXPIRED

Posted on 07/09/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged CERT_HAS_EXPIRED, NodejsLeave a Comment on [Fix Err] Node.js request CERT_HAS_EXPIRED

[Fix Err] Node.js request CERT_HAS_EXPIRED Node.js request CERT_HAS_EXPIRED Fix Node.js request CERT_HAS_EXPIRED Add this at the top of your file: process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'; DANGEROUS This disables HTTPS / SSL / TLS checking across your entire node.js environment. Please see the solution […]

Read More

IONIC Updating Dependencies

Posted on 20/07/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Dependencies, Ionic, Nodejs, npmLeave a Comment on IONIC Updating Dependencies

IONIC Updating Dependencies Check module is outdate https://stackoverflow.com/questions/16525430/npm-check-and-update-package-if-needed npm outdated Update Dependencies npm update Lỗi npm Could not resolve dependency npm Could not resolve dependency Để fix, tôi chạy lệnh này npm update –save –legacy-peer-deps https://stackoverflow.com/questions/64573177/unable-to-resolve-dependency-tree-error-when-installing-npm-packages Kết quả

Read More

Lỗi cài npm : Depends: node-gyp (>= 0.10.9) but it is not going to be installed

Posted on 15/10/2021 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Web Tagged node-gyp, Nodejs, npmLeave a Comment on Lỗi cài npm : Depends: node-gyp (>= 0.10.9) but it is not going to be installed

Read More

Clip MBTiles with BoundingBox

Posted on 15/10/2021 by soiqualang_chentreu Posted in Công nghệ, GIS, Mẹo vặt, WebGIS Tagged gis, Mbtiles, Nodejs, webgisLeave a Comment on Clip MBTiles with BoundingBox

Read More

Get Query Strings and Parameters in Express.js

Posted on 18/01/2019 by soiqualang_chentreu Posted in Web Tagged Express.js, NodejsLeave a Comment on Get Query Strings and Parameters in Express.js

Read More

Tập hợp lỗi ngớ ngẩn khi vọc nodejs (updating…)

Posted on 15/01/201918/01/2021 by soiqualang_chentreu Posted in Web Tagged NodejsLeave a Comment on Tập hợp lỗi ngớ ngẩn khi vọc nodejs (updating…)

Read More

Node về Nodejs

Posted on 15/01/2019 by soiqualang_chentreu Posted in Sói's Tutorials, Web Tagged Linux, NodejsLeave a Comment on Node về Nodejs

Read More
Buy me a coffee - MOMO

Tags

3D WebGIS Android Android studio api ArcGIS Capacitor cloudflare cordova database Docker gdal geoserver gis git github Google Earth Engine guitar htaccess Ionic IOS javascript JS GIS Jupyter Notebook leaflet Linux Machine learning map mysql Nodejs openlayers php Pokemon postgis postgresql python QGIS remote sensing sql tomcat tools ubuntu VirtualBox viễn thám webgis wordpress

Recent Posts

  • Fix Geoserver WMS character representation error (UTF-8)
  • Create a globe-like orthographic projection map in QGIS 3
  • Linux Link, Unlink folder
  • PostgreSQL select current user
  • Moodle ERROR You don’t have permission to view this list of courses

Recent Comments

  • [GEE Cơ bản #1] Hướng dẫn thêm một tập ảnh trong Google Earth Engine – OpenGIS Việt Nam on [GEE Basic] Add an Image collection in Google Earth Engine
  • Cannot-Make-Directory-Permission-Denied-Bij-Run-Screen. on [Linux Screen] Cannot make directory ‘/var/run/screen’: Permission denied
  • Lê Tiến on Installing Apache, QGIS Server, And Lizmap Web Client On Windows OS
  • Amit Kumar Singh on Tìm hiểu Cloudflare Worker
  • Nguyen Liem on [Python] Text to speech – Chuyển văn bản thành giọng nói FPT Speech Synthesis

Categories

  • Capuchino
  • Công nghệ
  • Dữ liệu
  • GIS
  • Google Earth Engine
  • Lang thang
  • Linux
  • Mẹo vặt
  • QGIS Tutorials and Tips
  • Research
  • Sói's Tutorials
  • Tài liệu
  • Uncategorized
  • Viễn thám
  • Web
  • WebGIS
  • Ý tưởng

Archives

  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • March 2023
  • February 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • January 2021
  • December 2020
  • November 2020
  • September 2020
  • August 2020
  • August 2019
  • July 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • June 2018
  • May 2018
  • October 2017
  • September 2017
  • August 2017
  • June 2017
  • May 2017
  • April 2017

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Copyright 2022. All rights reserved.