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

Month: September 2022

Linux wget Dropbox public link

Posted on 30/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged dropbox, get direct link, wgetLeave a Comment on Linux wget Dropbox public link

Linux wget Dropbox public link Just add ?dl=1 at the end of the link! For example: https://www.dropbox.com/s/mx9eqve5l2ipgyk/test.txt?dl=1 That should give you a fine retrieval of the file in question without adding anything to the file. One more thing! If you wanna save the […]

Read More

[Linux] Adjust and increase the capacity of VDI virtual drive to install Ubuntu on VirtualBox

Posted on 29/09/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Linux, Mẹo vặt, Sói's Tutorials Tagged Linux, ubuntu, VDI, VirtualBoxLeave a Comment on [Linux] Adjust and increase the capacity of VDI virtual drive to install Ubuntu on VirtualBox

[Linux] Adjust and increase the capacity of VDI virtual drive to install Ubuntu on VirtualBox Problems encountered I have deployed an ubuntu server on the virtualbox virtualization platform, I divided the hard drive space is 200GB, but after creating and […]

Read More

[Sưu tầm] Điều chỉnh tăng dung lượng ổ đĩa ảo VDI cài Ubuntu trên VirtualBox

Posted on 29/09/202229/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged LVM, ubuntu, VDI, VirtualBoxLeave a Comment on [Sưu tầm] Điều chỉnh tăng dung lượng ổ đĩa ảo VDI cài Ubuntu trên VirtualBox

[Sưu tầm] Điều chỉnh tăng dung lượng ổ đĩa ảo VDI cài Ubuntu trên VirtualBox https://thuanbui.me/dieu-chinh-tang-dung-luong-o-dia-ao-vdi-cai-ubuntu-tren-virtualbox/ Bài viết hướng dẫn cách điều chỉnh tăng dung lượng ổ cứng ảo cài đặt Ubuntu Một ngày đẹp trời, máy ảo Ubuntu cài […]

Read More

Linux remove nginx completely

Posted on 26/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux Tagged Linux, nginxLeave a Comment on Linux remove nginx completely

Linux remove nginx completely Removes all but config files. sudo apt-get remove nginx nginx-common Removes everything. sudo apt-get purge nginx nginx-common After using any of the above commands, use this in order to remove dependencies used by nginx which are […]

Read More

Ubuntu Linux Change Hostname (computer name)

Posted on 22/09/202222/09/2022 by soiqualang_chentreu Posted in Uncategorized Tagged computer name, Hostname, Linux, ubuntuLeave a Comment on Ubuntu Linux Change Hostname (computer name)

Ubuntu Linux Change Hostname Ubuntu change hostname command The procedure to change the computer name on Ubuntu Linux: Type the following command to edit /etc/hostname using nano or vi text editor: sudo nano /etc/hostname Delete the old name and setup […]

Read More

Backup Image to Docker Hub

Posted on 19/09/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Backup Docker, DockerLeave a Comment on Backup Image to Docker Hub

Backup Image to Docker Hub # Backup to hub docker commit -p dd63f4ee3263 soiqualang/min_dalle docker tag soiqualang/min_dalle:latest soiqualang/min_dalle docker push soiqualang/min_dalle:latest # Export container mình muốn (dùng id) docker save -o min_dalle.tar soiqualang/min_dalle

Read More

[PostgreSQL Linux] Remove installed PostgreSQL in opt dir

Posted on 19/09/202219/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux Tagged Database Engines, postgresqlLeave a Comment on [PostgreSQL Linux] Remove installed PostgreSQL in opt dir

[PostgreSQL Linux] Remove installed PostgreSQL in opt dir I installed PostgreSQL through the installation file, so the installation directory is /opt/PostgreSQL/10 I tried sudo apt-get –purge remove postgresql* but this did not work for me. In my case uninstaller was […]

Read More

PostgreSQL Add User

Posted on 18/09/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged database, postgresqlLeave a Comment on PostgreSQL Add User

PostgreSQL Add User CREATE USER user_name WITH PASSWORD 'user_password'; GRANT ALL PRIVILEGES ON DATABASE "database_name" to user_name; GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO user_name; -soiqualang_chentreu-

Read More

Docker Compose Can’t find a suitable configuration file in this directory

Posted on 18/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged Docker, Docker ComposeLeave a Comment on Docker Compose Can’t find a suitable configuration file in this directory

Docker Compose Can’t find a suitable configuration file in this directory Err Info ERROR: Can't find a suitable configuration file in this directory or any parent. Are you in the right directory? Supported filenames: docker-compose.yml, docker-compose.yaml, compose.yml, compose.yaml Fix Err […]

Read More

Rclone fix fatal error: sync: RUnlock of unlocked RWMutex

Posted on 14/09/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged rclone, RWMutex, syncLeave a Comment on Rclone fix fatal error: sync: RUnlock of unlocked RWMutex

Rclone fix fatal error: sync: RUnlock of unlocked RWMutex error: sync: RUnlock of unlocked RWMutex info fatal error: sync: RUnlock of unlocked RWMutex [signal SIGSEGV: segmentation violation code=0x1 addr=0x30 pc=0x55db4f] goroutine 1 [running]: runtime.throw(0xbe4717, 0x21) /usr/lib/go-1.10/src/runtime/panic.go:616 +0x81 fp=0xc4201de440 sp=0xc4201de420 pc=0x42c0c1 […]

Read More

Bản đồ tương tác này cho phép bạn xem có những người nổi tiếng nào đã sinh ra và lớn lên ở quê hương mình

Posted on 13/09/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged map, notableLeave a Comment on Bản đồ tương tác này cho phép bạn xem có những người nổi tiếng nào đã sinh ra và lớn lên ở quê hương mình

Bản đồ tương tác này cho phép bạn xem có những người nổi tiếng nào đã sinh ra và lớn lên ở quê hương mình \ ​ Đã bao giờ bạn tự hỏi, ai là người nổi tiếng hoặc đáng […]

Read More

Note các link Check bảo mật tài khoản Google

Posted on 13/09/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Mẹo vặt Tagged bảo mật, googleLeave a Comment on Note các link Check bảo mật tài khoản Google

Note các link Check bảo mật tài khoản Google https://myaccount.google.com/permissions https://myaccount.google.com/device-activity https://passwords.google.com/ https://myaccount.google.com/security?origin=3

Read More

[PostgreSQL] Create a database from an exist database

Posted on 10/09/202210/09/2022 by soiqualang_chentreu Posted in Lang thang, Sói's Tutorials Tagged postgresqlLeave a Comment on [PostgreSQL] Create a database from an exist database

[PostgreSQL] Create a database from an exist database Create a database Postgres allows the use of any existing database on the server as a template when creating a new database. I’m not sure whether pgAdmin gives you the option on […]

Read More

Python make Choropleth map with mapclassify

Posted on 08/09/2022 by soiqualang_chentreu Posted in GIS, Lang thang, Mẹo vặt Tagged Choropleth map, map, mapclassify, pythonLeave a Comment on Python make Choropleth map with mapclassify

Python make Choropleth map with mapclassify https://pysal.org/mapclassify/

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

Posts navigation

Older posts
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.