<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[weixin_43585672的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/weixin_43585672</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; weixin_43585672]]></copyright><item><title><![CDATA[python对mysql数据库的操作]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/125630445</link><guid>https://blog.csdn.net/weixin_43585672/article/details/125630445</guid><author>weixin_43585672</author><pubDate>Tue, 05 Jul 2022 23:40:17 +0800</pubDate><description><![CDATA[python操作mysql数据库]]></description><category></category></item><item><title><![CDATA[docker学习笔记]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/125229746</link><guid>https://blog.csdn.net/weixin_43585672/article/details/125229746</guid><author>weixin_43585672</author><pubDate>Sat, 11 Jun 2022 01:39:29 +0800</pubDate><description><![CDATA[docker安装过程1、查看本机存在的镜像
2、查看本机正在运行的容器
3、拉取镜像
2.docker的容器操作
1、容器生成镜像：docker commit
2、拷贝本地文件到容器：docker cp
3、镜像更改名字/标签：docker tag
3.docker的镜像和容器启停操作
1、创建镜像 ：docker build
2、删除镜像：docker rmi
3、镜像运行变为容器并进入容器
4、停止一个容器：docker stop
5、启动一个容器：docker start
6、重新启动容器：docke]]></description><category></category></item><item><title><![CDATA[mac下的python程序使用pyinstall打包]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/107371018</link><guid>https://blog.csdn.net/weixin_43585672/article/details/107371018</guid><author>weixin_43585672</author><pubDate>Wed, 15 Jul 2020 21:42:14 +0800</pubDate><description><![CDATA[标题mac下的python程序使用pyinstall打包
pyinstaller --windowed --onefile --clean --noconfirm main.py
pyinstaller --clean --noconfirm --windowed --onefile main.spec



]]></description><category></category></item><item><title><![CDATA[python3下使用pyzbar读取条码]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/106889469</link><guid>https://blog.csdn.net/weixin_43585672/article/details/106889469</guid><author>weixin_43585672</author><pubDate>Sun, 21 Jun 2020 19:01:00 +0800</pubDate><description><![CDATA[标题python3下使用pyzbar读取条码
使用的mac系统。
第一步：先安装zbar的共享库，使用brew安装,安装时经常会出错，多试几次，到全部库文件都安装好。
brew install zbar

第二步，安装pyzbar
python -m pip install pyzbar

安装好后就可以使用了，写个用摄像头读取条码都测试程序，使用了opencv调用摄像头以及把识别结果叠加在图像上。
# coding=utf-8
import cv2
import pyzbar.pyzbar as pyzb]]></description><category></category></item><item><title><![CDATA[mac系统下多python版本安装第三方库到指定版本python。]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/106697638</link><guid>https://blog.csdn.net/weixin_43585672/article/details/106697638</guid><author>weixin_43585672</author><pubDate>Thu, 11 Jun 2020 21:41:43 +0800</pubDate><description><![CDATA[mac系统下多python版本安装第三方库到指定版本python。
python -m pip install zxing

查看当前版本python下pip安装到库
python -m pip list


]]></description><category></category></item><item><title><![CDATA[Qt常用语句整理]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/103733759</link><guid>https://blog.csdn.net/weixin_43585672/article/details/103733759</guid><author>weixin_43585672</author><pubDate>Fri, 27 Dec 2019 16:03:02 +0800</pubDate><description><![CDATA[整理的Qt常用语句，自己学习用。
获取运行程序当前目录
#include &lt;QCoreApplication&gt;
QString path = QCoreApplication::applicationDirPath();//获取当前路径

获取桌面路径
#include &lt;QDesktopServices&gt;


确认对话框
#include &lt;QMessageBox&...]]></description><category></category></item><item><title><![CDATA[Mac 系统发布QT程序时，sqllite无法找到数据库，路径设置问题。]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/103673813</link><guid>https://blog.csdn.net/weixin_43585672/article/details/103673813</guid><author>weixin_43585672</author><pubDate>Mon, 23 Dec 2019 21:41:51 +0800</pubDate><description><![CDATA[Mac 系统发布QT程序时，sqllite无法找到数据库的问题，路径设置问题。
Mac写的qt程序，使用了sqllite数据库，Qt里面release运行时可以连接数据库，正常使用。但是当运行release目录下的可执行程序或者打包后的程序时却出现了数据库无法连接，经判断时无法找到数据库的路径。
原因：setDatabaseName(“data.db”)使用了相对路径，打包后程序无法找到data....]]></description><category></category></item><item><title><![CDATA[Mac电脑安装windows系统，Qt的ui界面对 retina屏的支持]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/103673611</link><guid>https://blog.csdn.net/weixin_43585672/article/details/103673611</guid><author>weixin_43585672</author><pubDate>Mon, 23 Dec 2019 21:26:56 +0800</pubDate><description><![CDATA[Mac电脑安装windows系统，Qt的ui界面对 retina屏的支持
对于使用retina屏的mac电脑，安装windows系统，使用Qt绘制的ui界面会出现界面显示不正常，需要在main.cpp文件中加入QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling)这句话，一定要加载在 QApplication a(argc, argv...]]></description><category></category></item><item><title><![CDATA[mac下qt5.13.2 安装mysql驱动遇到的坑，已填]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/103341667</link><guid>https://blog.csdn.net/weixin_43585672/article/details/103341667</guid><author>weixin_43585672</author><pubDate>Mon, 02 Dec 2019 00:24:46 +0800</pubDate><description><![CDATA[mac下qt5.13.2 安装mysql驱动遇到的坑，已填
折腾了一下午，总算把qr的mysql连接上了。
第一个坑：qmake不能运行的问题
第二个坑：qmake命令运行无法生成libqsqlmysql.dylib库问题
第一个坑解决办法：
vim ~/.bash_profile  
#增加下面路径
export QTDIR=/Users/my/Qt5.7.0/5.7/clang_64  
ex...]]></description><category></category></item><item><title><![CDATA[利用python命令行传参数的方法生成qrcode]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/103266657</link><guid>https://blog.csdn.net/weixin_43585672/article/details/103266657</guid><author>weixin_43585672</author><pubDate>Tue, 26 Nov 2019 23:04:00 +0800</pubDate><description><![CDATA[利用python命令行传参数的方法生成qrcode
首先安装qrcode库
pip3 install qrcode

使用方式：python qr.py 参数1（条码内容） 参数2（生成的文件名）
在qr.py目录下运行
# coding=utf-8
# 使用方式：python qr.py 参数1（条码内容） 参数2（文件名）
import qrcode
import sys   
def mai...]]></description><category></category></item><item><title><![CDATA[传入参数在mysql存储过程中利用分隔符切割字符串模糊查询]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/103133691</link><guid>https://blog.csdn.net/weixin_43585672/article/details/103133691</guid><author>weixin_43585672</author><pubDate>Mon, 18 Nov 2019 23:04:22 +0800</pubDate><description><![CDATA[利用传入参数在mysql存储过程中利用分隔符模糊查询
数据库中存放的mac字段数据格式为aaa:bbb:ccc，存储过程中传入参数为aaa:bbb:ccc.
现在需要查询表中同时包含有aaa:bbb或bbb:aaa的数据记录，ccc不限。
存储过程如下，传出参数不用：
DROP PROCEDURE `find`;
CREATE DEFINER=`user`@`%` PROCEDURE `find`...]]></description><category></category></item><item><title><![CDATA[mysql存储过程中传入，传出参数和输出多条查询记录的方法]]></title><link>https://blog.csdn.net/weixin_43585672/article/details/103133337</link><guid>https://blog.csdn.net/weixin_43585672/article/details/103133337</guid><author>weixin_43585672</author><pubDate>Mon, 18 Nov 2019 22:50:46 +0800</pubDate><description><![CDATA[mysql存储过程中利用传入和传出参数获取查询记录输出方法。
查询结果有两种：
第一种查询结果是单条记录，可利用传出参数输出，也可直接输出。
第二种查询结果是多条记录，不能用传出参数的方式输出，可直接输出。
例子为查询信息为表中mac字段符合条件的记录。
1、输出单条结果使用传出参数的存储过程如下：
DROP PROCEDURE `find`;
CREATE DEFINER=`user`@`%` ...]]></description><category></category></item></channel></rss>