上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 29 下一页
摘要: PyCharm+PyQt5+QtDesigner配置 pip删除缓存 安装操作: pip --no-cache-dir install 包名 (1)使用命令行安装pyqt5 pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple ( 阅读全文
posted @ 2020-06-22 13:22 xiondun 阅读(443) 评论(0) 推荐(0) 编辑
摘要: .Net之程序保护(.NET Reactor) 版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。 本文链接:https://blog.csdn.net/birdfly2015/article/details/86358316 版权 欢迎加入BI 阅读全文
posted @ 2020-06-20 19:55 xiondun 阅读(1135) 评论(0) 推荐(0) 编辑
摘要: 生成requirements.txt文件 pip freeze > requirements.txt 1 安装requirements.txt依赖 pip install -r requirements.txt 阅读全文
posted @ 2020-06-17 12:36 xiondun 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 39个前端精美后台模板 转自https://blog.csdn.net/qq_27667379/article/details/82081094 1.Ace_admin 下载地址:http://pan.baidu.com/s/1dFaRCCL 2.AdminEx 下载地址:http://pan.ba 阅读全文
posted @ 2020-06-04 13:27 xiondun 阅读(1451) 评论(0) 推荐(0) 编辑
摘要: redis-cli命令总结 转自http://www.cnblogs.com/silent2012/p/5368925.html 连接操作相关的命令 默认直接连接 远程连接-h 192.168.1.20 -p 6379 ping:测试连接是否存活如果正常会返回pong echo:打印 select: 阅读全文
posted @ 2020-05-30 09:02 xiondun 阅读(121) 评论(0) 推荐(0) 编辑
摘要: python生成随机数、随机字符串 python生成随机数、随机字符串 import randomimport string # 随机整数:print random.randint(1,50) # 随机选取0到100间的偶数:print random.randrange(0, 101, 2) # 随 阅读全文
posted @ 2020-05-28 12:33 xiondun 阅读(241) 评论(0) 推荐(0) 编辑
摘要: import logging logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s', datefmt='%a, %d 阅读全文
posted @ 2020-05-25 11:29 xiondun 阅读(1300) 评论(0) 推荐(0) 编辑
摘要: Windows 代码实例: package main import ( "os/exec" "syscall" ) func main() { // 有GUI调用 exec.Command(`cmd`, `/c`, `start`, `https://www.jianshu.com`).Start( 阅读全文
posted @ 2020-05-23 10:14 xiondun 阅读(830) 评论(0) 推荐(0) 编辑
摘要: /** * 创建多级目录 * * @param [type] $path * @return void */ function my_mkdir($path) { if (is_dir($path)) { // echo "目录 " . $path . " 已经存在!"; return true; 阅读全文
posted @ 2020-05-21 17:16 xiondun 阅读(200) 评论(0) 推荐(0) 编辑
摘要: simplexml_load_string($res, 'SimpleXMLElement', LIBXML_NOCDATA) 阅读全文
posted @ 2020-05-21 16:39 xiondun 阅读(440) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 29 下一页