摘要: include允许你在一个配置文件中包含另一个配置文件。该文件就像在被插入的位置直接写入一样。 它接受标准的变量替换,除了%u,%P和%S。 不过实测了一下确实只能加载一个特定的文件,不能遍历目录。但是进一步的测试发现include可以嵌套加载! 首先新建一个conf目录,在里面丢了一个shares 阅读全文
posted @ 2019-12-25 23:41 bongem 阅读(931) 评论(0) 推荐(0) 编辑
摘要: )允许pi用户配置CUPS, sudo usermod -a -G lpadmin pi 3)修改配置文件 sudo nano /etc/cups/cupsd.conf 注释掉正一行 # Listen localhost:631 添加下面一行,以监听来自网络的位置 Port 631 在下面各段中增加 阅读全文
posted @ 2019-12-19 21:46 bongem 阅读(2494) 评论(1) 推荐(0) 编辑
摘要: 一、准备 硬件:树莓派4B(4G版本),一张大于8G TF卡,网线,显示器,键盘 软件:下载安装 balena etcher 或Win32DiskImager 二、下载Ubuntu 19.10系统镜像 访问 https://ubuntu.com/download/raspberry-pi 下载64位 阅读全文
posted @ 2019-12-13 15:14 bongem 阅读(9792) 评论(0) 推荐(1) 编辑
摘要: PyQt做界面很方便,如果需要去美化,可以使用QSS语法达到效果。 效果: 实现: 首先设计界面如下,文件awesome.ui,编译生成Ui_awesome.py: 新建awesome.py文件,代码如下: #coding = utf-8import sysfrom PyQt5.QtWidgets  阅读全文
posted @ 2019-11-20 14:32 bongem 阅读(7842) 评论(0) 推荐(0) 编辑
摘要: 打开designer在界面上放置了一些控件,保存界面为mainUi.ui,将mainwin.ui转换为Ui_mainwin.py pyuic5 -o mainwin.ui ui_mainwin.py ui_mainwin.py代码都是自动生成的,大家可以不需要动,在生成的文件中有一个Ui_MainW 阅读全文
posted @ 2019-11-07 17:53 bongem 阅读(1173) 评论(0) 推荐(0) 编辑
摘要: Python多线程同步 阅读全文
posted @ 2019-11-06 11:32 bongem 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 打开designer在界面上放置了一些控件,保存界面为mainUi.ui,将mainwin.ui转换为Ui_mainwin.py pyuic5 -o mainwin.ui ui_mainwin.py ui_mainwin.py代码都是自动生成的,大家可以不需要动。 在生成的文件中有一个Ui_Main 阅读全文
posted @ 2019-10-30 22:41 bongem 阅读(240) 评论(0) 推荐(0) 编辑
摘要: pip安装源 阅读全文
posted @ 2019-10-29 23:57 bongem 阅读(284) 评论(0) 推荐(0) 编辑
摘要: set nocompatible syntax on filetype plugin indent on set ic,is,hls set hlsearch set encoding=utf-8 set fileencodings=utf-8,ucs-bom,GB2312,big5 set cur 阅读全文
posted @ 2019-10-15 11:50 bongem 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 所有日期、时间的api都在datetime模块内。 1. 日期转化 #将日期转化为字符串 datetime => string import datetime now=datetime.datetime.now() print now.strftime('%Y-%m-%d %H:%M:%S') #将 阅读全文
posted @ 2017-06-22 16:58 bongem 阅读(194) 评论(0) 推荐(0) 编辑