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ư […]
Góp nhặt của một kẻ mù công nghệ :p
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ư […]
[Linux] Kiểm tra dung lượng file, folder du -a /webdir/ | sort -n -r | head -n 20 sudo du -a /webdir/ | sort -n -r | head -n 20 find -type f -exec du -Sh {} + | sort […]
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 […]
Hôm nay mình nhận được 1 cái mail thế này, thấy cũng an tâm hơn khi đang dùng IONIC để triển khai các app mobile. Trước kia khi cũng có vọc Flutter, nhưng không cảm nổi, sau chuyển qua IONIC thì nghe mấy đứa Flutter […]
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ả
Global Flood Mapper (GFM) https://github.com/PratyushTripathy/global_flood_mapper This repository contains the link to the global flood mapper tool as described in the article "Global Flood Mapper: a novel Google Earth Engine application for rapid flood mapping using Sentinel‑1 SAR". Please read the usage […]
PostgreSQL update value in JSONB Tình cờ mình làm việc, cần update lại giá trị một key trong cột có kiểu là jsonb, thế là mình nghĩ json thì cũng là text thôi, replace là được, và đây là cách […]
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
[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
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 […]
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 […]
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 […]
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; […]
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 […]
[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 […]