- 博客(19)
- 资源 (2)
- 收藏
- 关注
原创 dlopen(cpython-39-darwin.so, 0x0002): symbol not found in flat namespace ‘_CFRelease‘
提示 dlopen(cpython-39-darwin.so, 0x0002): symbol not found in flat namespace ‘_CFRelease’
2023-08-16 14:19:35 742 1
原创 github hosts修改
访问链接:https://raw.hellogithub.com/hosts(ps:这链接定时更新),获取对应的host配置。如果需要工具自动更新的话,点击链接:https://github.com/oldj/SwitchHosts。在网站https://www.ipaddress.com/ 输入你要解析的域名。
2023-04-09 23:52:01 1732
原创 mac mvn 报错:No compiler is provided in this environment. Perhaps you are running on a JRE
mac mvn 报错:No compiler is provided in this environment. Perhaps you are running on a JRE
2023-02-24 18:01:49 1606 4
原创 python将url图片链接保存为base64编码
import os,base64import requests as reqfrom PIL import Imagefrom io import BytesIO# 将这个图片保存在内存response = req.get('http://img.lenovomm.com/ali/icon/app-img-lestore/4004-2017-10-21065643-1508583403130.png?isCompress=true&width=75&height=75&qu
2022-01-13 14:57:09 2440
原创 docker 容器镜像的保存导入导出
1、保存容器为镜像docker commit <当前运行的container id> <仓库名称>:docker save -o <仓库名称>-.img <仓库名称>:
2021-12-17 17:07:38 837
原创 ffmpeg安装
Centos:1.升级系统sudo yum install epel-release -y2.安装Nux Dextop Yum 源由于CentOS没有官方FFmpeg rpm软件包。但是,我们可以使用第三方YUM源(Nux Dextop)完成此工作。sudo rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.rosudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_
2021-12-17 16:53:01 662
原创 owncloud 重置管理员密码
进入owncloud目录中(当前目录下有occ文件)sudo -u www-data php occ user:resetpassword owncloudowncloud为管理员用户名如果提示sudo: command not found则需要安装sudoapt-get install sudo
2021-03-25 11:01:19 1943 2
原创 python - 视频转base64,图片转base64
#coding: utf-8#python3import cv2import base64from PIL import Imagefrom io import BytesIO def frame2base64(frame): img = Image.fromarray(frame) #将每一帧转为Image output_buffer = BytesIO() #创建一个BytesIO img.save(output_buffer, format='JPEG') #写入
2020-10-09 19:21:58 1123
原创 git修改远程仓库地址
修改git远程仓库地址修改git远程仓库地址修改git远程仓库地址1、创建新的远程仓库(空仓库,不勾选Initialize repository with a README),并创建一个临时文件。如tmp.txt.https://xxx.com/eric.zhang/b-xxx.git2、修改远程仓库地址git remote set-url origin https://xxx.com/eric.zhang/b-xxx.git3、提交修改git pullgit push...
2020-08-26 13:06:11 104
原创 python-记录程序耗时
# coding=utf-8 #import timestarttime = time.time()time.sleep(3) #延时3sendtime = time.time()print("程序运行时间:%.8s s" % (endtime - starttime)) #显示到微秒
2020-05-08 10:19:59 217
原创 python-遍历目录文件
python-遍历目录文件# 列出文件夹下所有的目录与文件 - 非递归rootdir = './faceID'for f in os.listdir(rootdir): path = os.path.join(rootdir,f) # path为所有目录或文件路径 if os.path.isfile(path): # 你想对文件的操作 print(...
2020-05-08 09:49:33 233
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人