ionic 本地即时native测试

摘要: ionic 本地native测试 ionic cap run android --livereload --external --public-host=192.168.2.178 res/xml/network_security_config.xml <?xml version="1.0" enc 阅读全文
posted @ 2024-11-09 23:17 少杨 阅读(1) 评论(0) 推荐(0) 编辑

ionic android http 不能访问

摘要: ionic android http 不能访问,解决安卓不能访问http的问题 修改:capacitor.config.ts import type { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = 阅读全文
posted @ 2024-11-09 12:13 少杨 阅读(2) 评论(0) 推荐(0) 编辑

ts 单例模式

摘要: ts 单例模式 class AudioManage { static audio: AudioManage|null = null constructor(){ console.log("constructor") } static Instance(){ // Audio.audio = new 阅读全文
posted @ 2024-11-05 11:21 少杨 阅读(2) 评论(0) 推荐(0) 编辑

python PyPDF2 切割PDF文件

摘要: python PyPDF2 切割PDF文件 from PyPDF2 import PdfReader, PdfWriter def split_pdf(in_file,out_file,orientation="vertical",percent=0.5): """ :param in_file: 阅读全文
posted @ 2024-10-21 12:30 少杨 阅读(12) 评论(0) 推荐(0) 编辑

android TextToSpeech status -1

摘要: android TextToSpeech status -1. 报错 在 manifest 里面添加,和 Application 平级<queries> <intent> <action android:name="android.intent.action.TTS_SERVICE" /> </in 阅读全文
posted @ 2024-09-20 20:03 少杨 阅读(23) 评论(0) 推荐(0) 编辑

warning: remote HEAD refers to nonexistent ref, unable to checkout

摘要: warning: remote HEAD refers to nonexistent ref, unable to checkout 检查出文件 git checkout main 阅读全文
posted @ 2023-11-06 15:50 少杨 阅读(109) 评论(0) 推荐(0) 编辑

python 实现 pdf 转为图片

摘要: 1 import fitz 2 import os 3 from PIL import Image 4 5 def convert_pdf2img(file_relative_path): 6 7 page_num = 1 8 filename = file_relative_path.split( 阅读全文
posted @ 2023-08-09 20:16 少杨 阅读(386) 评论(0) 推荐(0) 编辑

redis 以普通用户启动服务

摘要: redis 以普通用户启动服务 sudo -u redis redis-server redis.conf 阅读全文
posted @ 2023-03-11 18:45 少杨 阅读(224) 评论(0) 推荐(0) 编辑

mac 编译安装ffmpeg

摘要: 下载源码: https://ffmpeg.org/download.html 解压, ./configure --disable-x86asm --prefix=/usr/local/ffmpeg_mac_x86_64 --arch=x86_64 --enable-libmp3lame --enab 阅读全文
posted @ 2023-02-22 15:21 少杨 阅读(51) 评论(0) 推荐(0) 编辑

QML调用C++程序

摘要: QML调用C++程序 1. 添加C++,MouseMemory文件(.h,.cpp) 2. 在main.cpp文件添加, qmlRegisterType<MouseMemory>("MouseMemory",1,0,"MouseMemory"); #第一个MouseMemory 为C++类型,第二个 阅读全文
posted @ 2023-02-20 08:30 少杨 阅读(52) 评论(0) 推荐(0) 编辑