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: python

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

Python resources for Earth sciences

Posted on 03/08/202203/08/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Tài liệu Tagged Earth sciences, Geospatial Analysis, Mapping, pythonLeave a Comment on Python resources for Earth sciences

Python resources for Earth sciences https://github.com/javedali99/python-resources-for-earth-sciences/blob/main/README.md This repository contains information about python libraries broadly relevant to Earth Sciences (Hydrology, Meteorology, Geospatial, Climatology, Oceanography etc.). The libraries are broadly grouped according to their function; however, many have functionality that spans multiple […]

Read More

Lỗi No Python at… khi gọi từ python Virtual Environment

Posted on 01/08/202201/08/2022 by soiqualang_chentreu Posted in Mẹo vặt Tagged python, Virtual EnvironmentLeave a Comment on Lỗi No Python at… khi gọi từ python Virtual Environment

Lỗi No Python at… khi gọi từ python Virtual Environment Lỗi này xuất khi khi hệ thống không tìm được path đã được lưu trong python Virtual Environment, lý do có thể do:\ Khi cài python thì nó sẽ cài vào trong thư […]

Read More

How to enable CORS in Python Flask

Posted on 22/07/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged CORS, Flask, pythonLeave a Comment on How to enable CORS in Python Flask

How to enable CORS in Python Flask I’ve just faced the same issue and I came to believe that the other answers are a bit more complicated than they need to be, so here’s my approach for those who don’t […]

Read More

Python Cutting/trim out a portion of video

Posted on 30/06/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged python, videoLeave a Comment on Python Cutting/trim out a portion of video

Python Cutting/trim out a portion of video from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip ffmpeg_extract_subclip("video1.mp4", start_time, end_time, targetname="test.mp4") start_time, end_time in second Ex: from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip # Cut out from 02:25 to 04:32 ffmpeg_extract_subclip("TrienLam_HaNoi_2020.mp4", 145, 272, targetname="Thuyloi_BenTre.mp4") https://stackoverflow.com/questions/37317140/cutting-out-a-portion-of-video-python

Read More

Python concatenate multi video

Posted on 07/06/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Mẹo vặt, Sói's Tutorials Tagged concatenate video, convert video, pythonLeave a Comment on Python concatenate multi video

Python concatenate multi videos Hôm nay tình cờ mình cần ghép nhiều video lại với nhau, chợt suy nghĩ hôm trước mình đã dùng python để convert video sang mp4 rồi, giờ thì thử dùng python ghép video luôn xem […]

Read More

The zone attribute is specific to pytz’s interface; please migrate to a new time zone provider

Posted on 12/04/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged apscheduler, python, time zoneLeave a Comment on The zone attribute is specific to pytz’s interface; please migrate to a new time zone provider

The zone attribute is specific to pytz’s interface; please migrate to a new time zone provider Error Showing /py_env/lib/python3.6/site-packages/apscheduler/util.py:95: PytzUsageWarning: The zone attribute is specific to pytz's interface; please migrate to a new time zone provider. For more details on […]

Read More

Python Fix Object of type ‘date’ is not JSON serializable

Posted on 22/03/2022 by soiqualang_chentreu Posted in Công nghệ, Mẹo vặt Tagged json, python, serializableLeave a Comment on Python Fix Object of type ‘date’ is not JSON serializable

Python Fix Object of type ‘date’ is not JSON serializable My quick & dirty JSON dump that eats dates and everything: json.dumps(my_dictionary, indent=4, sort_keys=True, default=str) default is a function applied to objects that aren’t serializable.\ In this case it’s str, so it […]

Read More

Fix pip install throwing “Permission Denied”

Posted on 15/12/202115/12/2021 by soiqualang_chentreu Posted in Công nghệ, Mẹo vặt Tagged Permission, pip, pythonLeave a Comment on Fix pip install throwing “Permission Denied”

Read More

Python convert all video file in folder to mp4

Posted on 15/11/2021 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Mẹo vặt Tagged convert video, convert video folder, python, video to mp4Leave a Comment on Python convert all video file in folder to mp4

Read More

Tạo ảnh thumbnails với python

Posted on 16/10/2021 by soiqualang_chentreu Posted in Công nghệ, Mẹo vặt, Web Tagged python, thumbnailsLeave a Comment on Tạo ảnh thumbnails với python

Read More

[Sưu tầm] Cách cài đặt PrettyMaps

Posted on 15/10/2021 by soiqualang_chentreu Posted in Công nghệ, GIS, Lang thang, Linux, Tài liệu, Ý tưởng Tagged Linux, map, map art, prettymaps, pythonLeave a Comment on [Sưu tầm] Cách cài đặt PrettyMaps

Read More

[Sưu tầm] prettymaps – tool tạo map art

Posted on 15/10/202115/10/2021 by soiqualang_chentreu Posted in Công nghệ, GIS, Lang thang, WebGIS, Ý tưởng Tagged map, map art, prettymaps, pythonLeave a Comment on [Sưu tầm] prettymaps – tool tạo map art

Read More

Install Jupyter python with conda, pip

Posted on 18/03/2021 by soiqualang_chentreu Posted in Công nghệ, Sói's Tutorials Tagged anaconda, Jupyter Notebook, JupyterLab, miniconda, pythonLeave a Comment on Install Jupyter python with conda, pip

Install Jupyter python with conda, pip

Read More

Linux – Cài Conda

Posted on 18/03/2021 by soiqualang_chentreu Posted in Công nghệ, Linux, Sói's Tutorials Tagged anaconda, Linux, miniconda, pythonLeave a Comment on Linux – Cài Conda

Linux – Cài Conda

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.