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: June 2022

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

[Fix error] An unhandled exception occurred: [BABEL] /workdir/test/chess/www/1-es2015.js: Could not find plugin “proposal-class-static-block”

Posted on 30/06/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged es2015, Ionic, proposal-class-static-blockLeave a Comment on [Fix error] An unhandled exception occurred: [BABEL] /workdir/test/chess/www/1-es2015.js: Could not find plugin “proposal-class-static-block”

[Fix error] An unhandled exception occurred: [BABEL] /workdir/test/chess/www/1-es2015.js: Could not find plugin "proposal-class-static-block" Error info How to fix this error This worked for me: Go to tsconfig.json change "target": "es2015", to "target": "es5", References https://forum.ionicframework.com/t/could-not-find-plugin-proposal-numeric-separator/185556/22

Read More

IONIC Capacitor build Android Debug APK

Posted on 27/06/202227/06/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Android, Android Debug, apk, Capacitor, IonicLeave a Comment on IONIC Capacitor build Android Debug APK

IONIC Capacitor build Android Debug APK Install Capacitor npm install @capacitor/core @capacitor/cli npx cap init Add Android platform to Capacitor project ionic build npm install @capacitor/android ionic cap add android Build Android Debug APK with IONIC Capacitor ionic cap copy […]

Read More

Backing up your docker volumes

Posted on 27/06/202227/06/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged backup, Docker, docker volumesLeave a Comment on Backing up your docker volumes

Backing up your docker volumes https://github.com/soiqualang/docker-backup-volume How to backup your volume backup-volume.sh will create a new running docker container and mount the volume to the container. A docker cp will be run and the contents of the volume will be saved into a […]

Read More

Awesome Docker Compose

Posted on 27/06/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged Docker, Docker ComposeLeave a Comment on Awesome Docker Compose

Awesome Docker Compose Danh sách các Docker Compose phổ biến Just pull and run =)) https://github.com/docker/awesome-compose Awesome Compose  A curated list of Docker Compose samples. These samples provide a starting point for how to integrate different services using a Compose […]

Read More

WordPress fix lỗi This request has been blocked; the content must be served over HTTPS.

Posted on 25/06/2022 by soiqualang_chentreu Posted in Mẹo vặt, Web Tagged https, Really Simple SSL, wordpressLeave a Comment on WordPress fix lỗi This request has been blocked; the content must be served over HTTPS.

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; […]

Read More

Giới thiệu về GitHub Profile Achievements và cách đạt được các huy hiệu này

Posted on 24/06/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged github, GitHub Profile AchievementsLeave a Comment on Giới thiệu về GitHub Profile Achievements và cách đạt được các huy hiệu này

GitHub Profile Achievements 🏆 Giới thiệu về GitHub Profile Achievements và cách đạt được các huy hiệu này Đợt vừa rồi, GitHub vừa ra chương trình sưu tập các huy hiệu, khá là cool, thông tin chi tiết bên dưới: A […]

Read More

[Backup Docker] Saving Images and Containers as Tar Files for Sharing

Posted on 13/06/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Backup Containers, Backup Docker, DockerLeave a Comment on [Backup Docker] Saving Images and Containers as Tar Files for Sharing

[Backup Docker] Saving Images and Containers as Tar Files for Sharing Saving Images and Containers as Tar Files for Sharing Imagine a scenario where you have built Docker images and containers that you would be interested to keep and share […]

Read More

IONIC Angular deployment – 404 on page Refresh

Posted on 13/06/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Angular, htaccess, Ionic2 Comments on IONIC Angular deployment – 404 on page Refresh

This will work on following servers. Apache Server Add .htaccess on root to your project <IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews -Indexes </IfModule> RewriteEngine On # Handle Authorization Header RewriteCond %{HTTP:Authorization} . RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] # Redirect Trailing Slashes […]

Read More

[Sưu tầm] gRPC là gì? Vũ khí tối thượng tăng tải Microservices

Posted on 11/06/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang Tagged gRPC, MicroservicesLeave a Comment on [Sưu tầm] gRPC là gì? Vũ khí tối thượng tăng tải Microservices

[Sưu tầm] gRPC là gì? Vũ khí tối thượng tăng tải Microservices https://200lab.io/blog/grpc-la-gi-vu-khi-tang-tai-microservices/ 1. gRPC là gì? gRPC là một framework RPC mã nguồn mở, hiện đại và hiệu năng cao mà có thể chạy trên bất kỳ môi trường nào. Framework này […]

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