摘要:
linux 系统上配置 .gitconfig [core] autocrlf = input safecrlf = warn 配置为提交时转为 lf,下拉时不转换。如果文件时混合换行符时,进行警告。 参考:https://www.jianshu.com/p/6ef90ce18ba2 https:// 阅读全文
摘要:
linux 系统上配置 .gitconfig [core] autocrlf = input safecrlf = warn 配置为提交时转为 lf,下拉时不转换。如果文件时混合换行符时,进行警告。 参考:https://www.jianshu.com/p/6ef90ce18ba2 https:// 阅读全文
摘要:
1. 从 二进制 pcm 文件中读取数据,并转化位想要的矩阵数组 with open(audioPath, 'rb') as f: audioData = np.fromfile(f, dtype = np.uint16) audioData.shape = -1, 8 转换的音频数据是 不确定行, 阅读全文
摘要:
两种方法: 1. 启动的时候,使用命令启动 LC_CTYPE=zh_CN.UTF-8 emacs $@ 2. 设置 bashrc LC_CTYPE = zh_CN.utf8 或者 UTF-8 参考: https://www.douban.com/group/topic/29718313/ 阅读全文
摘要:
samba 共享的文件,被修改后,会被增加执行位。 要保留原来的属性,只需要修改 /etc/samba/smb.conf [global] ...... map archive = no 参考: https://stackoverflow.com/questions/20958888/preserv 阅读全文
摘要:
使用 feh 命令 feh --magick-timeout 1 /mnt/speech/speech/assets/ico-录音.svg 也有说法是 --magick-timeout 在新版本被废弃了,使用 --conversion-timeout 参考: https://superuser.co 阅读全文
摘要:
1. 使用命令 qmlscene 可以直接执行 qml 文件。 2. qml 中 quick 对应的版本 Qt QtQml QtQml.Models QtQuick QtQuick.Controls QtQuick.Layouts QtQuick.Dialogs QtQuick.Particles 阅读全文
摘要:
1. 安装见 https://www.cnblogs.com/ramlife/p/14096103.html 2. 安装好后,import 一下,看看有没有问题。 python3 import PyQt5 exit() 3. 用 qtdesigner 做一个只有 label 的 ui,然后在 ui文 阅读全文
摘要:
X86 直接安装 python3 -m pip install --upgrade pip pip3 install pyqt5==5.14.2 --user pyqt5 最好和 qt5 版本对应。 参考: https://stackoverflow.com/questions/59711301/i 阅读全文
摘要:
1. 修改软连接 ln –snf /opt/apps/redis-5.0.4 /usr/local/redis 注意: 源、目标文件/目录都不要在后面加”/”,重要的事情说三遍,原因自行度娘/Google 参考: https://www.jianshu.com/p/946b48a13a01 阅读全文
摘要:
尝试在 3399 上面安装 pyside2 ,结果碰到很多问题。 需要 qt5.12 需要 clang 全部需求如下: General Requirements¶ Python: 3.5+ and 2.7 Qt: 5.12+ is recommended libclang: The libclang 阅读全文
|