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

Category: Mẹo vặt

Docker container logs taking all my disk space

Posted on 22/02/2023 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Mẹo vặt Tagged disk space, Docker, Docker container, logsLeave a Comment on Docker container logs taking all my disk space

Docker container logs taking all my disk space Docker run Docker 1.8 has been released with a log rotation option. Adding: –log-opt max-size=5m –log-opt max-file=10 when the container is launched does the trick. You can learn more at: https://docs.docker.com/engine/admin/logging/overview/ docker-compose.yml version: […]

Read More

Tổng hợp một số extensions GPT hay cho trình duyệt

Posted on 14/02/2023 by soiqualang_chentreu Posted in Capuchino, Công nghệ, Lang thang, Mẹo vặt Tagged ChatGPT, Extension, gptLeave a Comment on Tổng hợp một số extensions GPT hay cho trình duyệt

Tổng hợp một số extensions GPT hay cho trình duyệt 5 extensions trợ giúp hiệu quả cho người dùng chatGPT Và cách bạn sử dụng ChatGPT như một trợ lý ảo hàng ngày 1. SỬ DỤNG CHATGPT MỌI NƠI – […]

Read More

Unable to open X display when trying to run google-chrome

Posted on 12/02/202313/02/2023 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged X displayLeave a Comment on Unable to open X display when trying to run google-chrome

You can try with Xvfb. it does not require additional hardware. Install Xvfb if you didn’t install it yet and do the following steps. sudo apt-get install -y xvfb Dependencies to make "headless" chrome/selenium work: sudo apt-get -y install xorg […]

Read More

Note about Postgres Views

Posted on 11/02/202311/02/2023 by soiqualang_chentreu Posted in Công nghệ, GIS, Lang thang, Mẹo vặt, Tài liệu Tagged Conventional views, Materialized views, Postgres ViewsLeave a Comment on Note about Postgres Views

Note about Postgres Views https://supabase.com/blog/postgresql-views A quick summary of Postgres views, materialized views, and why you should use them. What is a View? A view is a convenient shortcut to a query. Creating a view does not involve new tables or data. […]

Read More

IONIC Error: Unknown argument: platform

Posted on 08/12/202208/12/2022 by soiqualang_chentreu Posted in Mẹo vặt Tagged Ionic, platformLeave a Comment on IONIC Error: Unknown argument: platform

IONIC Error: Unknown argument: platform Unknown argument: platform D:\sync\websvr\ionic\test\t2>ionic cordova run android [INFO] Hardware device(s) found for android. Using –device. > ng.cmd run app:ionic-cordova-build –platform=android Error: Unknown argument: platform [ERROR] An error occurred while running subprocess ng. ng.cmd run app:ionic-cordova-build […]

Read More

AI tự động sinh JD tuyển dụng

Posted on 15/11/202215/11/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Mẹo vặt Tagged AI, Công cụ, JD tuyển dụng, toolsLeave a Comment on AI tự động sinh JD tuyển dụng

AI tự động sinh JD tuyển dụng https://bluestudio.ai/smart-hr Bạn chỉ cần nhập tiêu đề công việc, ứng dụng này sẽ tự động sinh ra mô tả công việc chuyên nghiệp luôn cho bạn =))

Read More

Docker Backup, Restore PostgreSQL Database

Posted on 03/11/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Linux, Mẹo vặt Tagged backup, database, Docker, postgresql, RestoreLeave a Comment on Docker Backup, Restore PostgreSQL Database

Docker Backup, Restore PostgreSQL Database Single Database PostgreSQL Backup Single Database sudo docker exec -t –user pg_username pg_container_name pg_dump -c -p 5432 -U pg_username "database_name" > "/path/on/your/machine/dump.sql" PostgreSQL Restore Single Database sudo docker exec -t –user pg_username pg_container_name psql -c […]

Read More

QGIS merge points within distance

Posted on 01/11/2022 by soiqualang_chentreu Posted in GIS, Mẹo vặt, QGIS Tutorials and Tips, Sói's Tutorials Tagged gis, merge points, QGIS, QGIS tutorialsLeave a Comment on QGIS merge points within distance

QGIS merge points within distance Issue How One possible approach consists in the following steps: draw a buffer of 5m around points; dissolve the buffers which overlap; calculate the centroids of dissolved buffers. You can choose the tools with which you’re more comfortable. Example\ For […]

Read More

[PHP built in server] Configure PHP built in server to show files of directory

Posted on 01/11/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged built in server, phpLeave a Comment on [PHP built in server] Configure PHP built in server to show files of directory

[PHP built in server] Configure PHP built in server to show files of directory For show advanced list of files and directories with sort, date, size, icon type,…, Save bellow content code as route.php file, and then run this command: php -S […]

Read More

How to move the “C:\users\username\AppData” folder to another drive from C:\ drive?

Posted on 22/10/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged AppData, registryLeave a Comment on How to move the “C:\users\username\AppData” folder to another drive from C:\ drive?

How to move the "C:\users\username\AppData" folder to another drive from C:\ drive? Hi Welcome to the Microsoft community. You can follow the steps below to transfer the AppData folder. Open the registry, then locate to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders and HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell […]

Read More

[GIT] Filename too long in Git for Windows

Posted on 21/10/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged git, gitbash, github, github actionLeave a Comment on [GIT] Filename too long in Git for Windows

[GIT] Filename too long in Git for Windows https://stackoverflow.com/questions/22575662/filename-too-long-in-git-for-windows Git has a limit of 4096 characters for a filename, except on Windows when Git is compiled with msys. It uses an older version of the Windows API and there’s a […]

Read More

Ionic capacitor Live Reload/ Hot Reload

Posted on 14/10/202214/10/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Capacitor, Hot Reload, Ionic, Live ReloadLeave a Comment on Ionic capacitor Live Reload/ Hot Reload

Ionic capacitor Live Reload/ Hot Reload npm install -g @ionic/cli native-run ionic cap add android ionic cap sync ionic cap run android –external -livereload References https://capacitorjs.com/docs/guides/live-reload https://stackoverflow.com/questions/69545612/what-is-the-command-to-run-ionic-capacitor-app-on-device-with-live-reload-for-an https://ionicframework.com/docs/cli/commands/capacitor-run

Read More

[IONIC Capacitor Mobile Dev] Chang app name, version in Android

Posted on 14/10/202214/10/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Android, Capacitor, Ionic, Mobile, Mobile DevelopmentLeave a Comment on [IONIC Capacitor Mobile Dev] Chang app name, version in Android

[IONIC Capacitor Mobile Dev] Chang app name, version in Android Change App Name These are the other places: app_name in android/app/src/main/res/values/strings.xml Change App Version versionCode, versionName in android/app/build.gradle References https://forum.ionicframework.com/t/change-application-name-on-android-platform/220594

Read More

Ionic cordova-res Error occurred while copying resources/android/icon/

Posted on 14/10/202214/10/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Android, cordova, cordova-res, Ionic, IOS, Mobile DevelopmentLeave a Comment on Ionic cordova-res Error occurred while copying resources/android/icon/

Ionic cordova-res Error occurred while copying resources/android/icon/ Err info D:\sync\websvr\ionic\current\thanhlong_binhthuan_appmobile>cordova-res android –skip-config –copy –type icon Generated 6 resources for Android WARN: Error occurred while copying resources\android\icon\mdpi-foreground.png WARN: Error occurred while copying resources\android\icon\mdpi-background.png WARN: Error occurred while copying resources\android\icon\hdpi-foreground.png WARN: Error […]

Read More

[Google Play Console] No countries or regions have been selected for this track. Add at least 1 country or region to roll out this release

Posted on 14/10/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Android, Google Play ConsoleLeave a Comment on [Google Play Console] No countries or regions have been selected for this track. Add at least 1 country or region to roll out this release

[Google Play Console] No countries or regions have been selected for this track. Add at least 1 country or region to roll out this release No countries or regions have been selected for this track. Add at least 1 country […]

Read More

Posts navigation

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