上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页

2021年8月6日

摘要: gnome-terminal gnome-terminal -- bash -c "your_command; exec bash" 在新终端中执行指令后关闭 常用 printenv # 显示环境变量 lspci|grep nvidia # 是否有nvidia的显卡 lscpu # CPU的相关信息 阅读全文
posted @ 2021-08-06 17:06 qev211 阅读(59) 评论(0) 推荐(0) 编辑

2021年7月30日

摘要: 基本 音频处理的技术,有以下: 采集麦克风输入 采集声卡输出 将音频数据送入声卡播放 将多路音频输入进行混音 MME: MultiMedia Extentions。 级别最低的驱动,等待时间长。 Direct Sound: 一般提供远低于MME的等待时间 ASIO: Audio Stream Inp 阅读全文
posted @ 2021-07-30 16:59 qev211 阅读(378) 评论(0) 推荐(0) 编辑

2021年7月8日

摘要: 关键字参数 def func(a, b=5, c=10): print('a is', a, 'and b is', b, 'and c is', c) func(3, 7) func(25, c=24) func(c=50, a=100) 输出: $ python function_keyword 阅读全文
posted @ 2021-07-08 18:05 qev211 阅读(37) 评论(0) 推荐(0) 编辑

2021年7月2日

摘要: os模块 os.path.exists('D:/xx') # 文件存在与否进行判断,也可以是文件夹。 存在返回True os.path.getctime('D:/xx') # 获取文件的创建时间 为time.time()类似的数字 os.path.isdir(path) # 此路径是目录还是文件 o 阅读全文
posted @ 2021-07-02 16:18 qev211 阅读(46) 评论(0) 推荐(0) 编辑
 
摘要: time # 1、时间戳 类型:浮点数 >>> time.time() 1625208594.7282684 # 2、时间字符串 >>> time.strftime("%Y-%m-%d %X") '2021-07-02 15:38:17' >>> time.strftime("%Y-%m-%d %H 阅读全文
posted @ 2021-07-02 16:08 qev211 阅读(43) 评论(0) 推荐(0) 编辑

2021年6月30日

摘要: 命名 常用简写 名称相关 # 信息 information: info # 功能 function : func # 数量 quantity:qty # 元素uiautomatr id_ text_ des_ class_ PYQT相关 button : btn_ checkbox : chkbox 阅读全文
posted @ 2021-06-30 18:11 qev211 阅读(63) 评论(0) 推荐(0) 编辑

2021年6月23日

摘要: 一、基本 变量 let:只在块内 var:块外没有 常量 数据类型:undefined Number String Bool 运算符 二、流程控制 if switch for 循环 while do while 三、数组 函数 数组: let b = ["a","b"] let a = new Ar 阅读全文
posted @ 2021-06-23 19:59 qev211 阅读(59) 评论(0) 推荐(0) 编辑

2021年6月9日

摘要: zetcode教程 汉化版: https://maicss.gitbook.io/pyqt5-chinese-tutoral/ 官方网站: https://www.riverbankcomputing.com/static/Docs/PyQt5/introduction.html QT使用手册: h 阅读全文
posted @ 2021-06-09 17:25 qev211 阅读(163) 评论(0) 推荐(0) 编辑

2021年6月7日

摘要: PYSIDE2 添加外部工具 file settings External Tools,点击左上角的 加号+ designer 位置: envs\QT6\Lib\site-packages\PySide6\designer.exe uic 位置:envs\QT6\Scripts\pyside6-ui 阅读全文
posted @ 2021-06-07 11:17 qev211 阅读(260) 评论(0) 推荐(0) 编辑

2021年6月4日

摘要: 标贴打印机 目前使用的打印机有两种一种是 热敏打印机:DL-888F 热转印打印机: ZEBRA GT800 一、GT800 耗材 1、碳带 必须用 树脂基碳带,用蜡基或混合基碳带打印出的标贴易掉墨 推荐: https://item.m.jd.com/product/35299805990.html 阅读全文
posted @ 2021-06-04 13:47 qev211 阅读(859) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页