Loading

摘要: Windows 10 64-bits Python 3.8.10 64-bits PySide2 5.15.2 PyInstaller 4.3 UPX 4.1.0 Problem 1: > "This application failed to start because no Qt platfor 阅读全文
posted @ 2023-08-29 18:53 gamesun 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Windows下 pip 换源 `pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple` 将系统已安装的包按照需要的格式打包 `pip freeze >requirements.txt` 下载离线包 `pip 阅读全文
posted @ 2023-06-08 09:09 gamesun 阅读(17) 评论(0) 推荐(0) 编辑
摘要: `git svn clone http://???/svn/??? --authors-file=authors-transform.txt` ``` cat authors-transform.txt svn_username = git_username ``` 阅读全文
posted @ 2023-05-31 09:53 gamesun 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Ubuntu安装RTL8761B驱动 # Download rtl8761b_config and rtl8761b_fw from https://github.com/Realtek-OpenSource/android_hardware_realtek wget https://raw.git 阅读全文
posted @ 2022-04-24 10:08 gamesun 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 最好的办法是删除update-notifier sudo apt-get remove update-notifier 参考链接 阅读全文
posted @ 2022-03-18 09:52 gamesun 阅读(1195) 评论(0) 推荐(0) 编辑
摘要: 点击Win键+R键打开Run窗口。 在窗口中输入cmd /c “echo off | clip” 。(您可以直接拷贝这段命令) 点击确定按钮。 阅读全文
posted @ 2020-08-25 22:20 gamesun 阅读(1186) 评论(0) 推荐(0) 编辑
摘要: 代码:https://github.com/gamesun/memcpy_fast memcpy_fast与memcpy速度比较 测试方法 memcpy_fast(dest + a, src + b, TEST_BUFF_SIZE + c); 与 memcpy(dest + a, src + b, 阅读全文
posted @ 2020-08-25 10:31 gamesun 阅读(637) 评论(0) 推荐(0) 编辑
摘要: CH340 https://github.com/juliagoda/CH341SER CP210x 因为源码版本不是linux-source-4.15.0-91-generic,导致error,一个临时办法是修改Makefile中的版本号,但是不确定有没有影响。 $ uname -r 4.15.0 阅读全文
posted @ 2020-04-10 09:03 gamesun 阅读(3101) 评论(0) 推荐(0) 编辑
摘要: 2021/2/4更新,微信已更新到2.9.5.41(发帖时Windows上的微信最新是3.1.0) 安装后注销再登录,可以看到微信图标了 安装步骤,依然是: wget -O- https://deepin-wine.i-m.dev/setup.sh | sh sudo apt-get install 阅读全文
posted @ 2020-01-22 13:20 gamesun 阅读(6561) 评论(0) 推荐(0) 编辑
摘要: Firefox 52.90版是最后一个支持 Windows XP 和 Windows Vista 的升级版。(参考:https://support.mozilla.org/zh-CN/kb/firefox-windows-xp-vista) Firefox 52.90 简体中文版: http://f 阅读全文
posted @ 2020-01-10 21:00 gamesun 阅读(5694) 评论(0) 推荐(0) 编辑
摘要: 最近更新了Eclipse 2019-12 CDT,工具栏的编译按钮太碍事了,关闭方法挺难找的,记录如下供参考: Menu "Window" -> Preferences -> Run/Debug -> Launching -> Launch Bar,取消所有钩选框。 阅读全文
posted @ 2020-01-06 22:23 gamesun 阅读(684) 评论(0) 推荐(0) 编辑
摘要: 虽然自己已经改用xml作为配置文件首选格式了,但是有时候还是需要解析ini、cfg文件(为了兼容早期版本或者其他作者的软件)。 基本上Python自带的ConfigParser足够应对了,但是美中不足的是,configparser.RawConfigParser.write()保存文件时,会把所有k 阅读全文
posted @ 2019-06-26 15:01 gamesun 阅读(636) 评论(0) 推荐(0) 编辑
摘要: TortoiseGit兼容Windows XP和Windows Server 2003的最后版本: TortoiseGit 1.8.16.0 (https://download.tortoisegit.org/tgit/1.8.16.0/) Git for Windows支持Windows XP和W 阅读全文
posted @ 2019-01-12 10:45 gamesun 阅读(3329) 评论(0) 推荐(0) 编辑
摘要: 更新tensorflow时遇到报错 Found existing installation: enum34 1.0.4Cannot uninstall 'enum34'. It is a distutils installed project and thus we cannot accuratel 阅读全文
posted @ 2018-12-11 16:46 gamesun 阅读(3303) 评论(0) 推荐(0) 编辑