上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页
摘要: Bcompare 提示 “这个授权密钥已被吊销” 解决方法 打开文件夹 %appdata%\Scooter Software 找到相应的版本,例如 Beyond Compare 3 删除里面的 BCState.xml 和 BCState.xml.bak (注意不要整个 Beyond Compare 阅读全文
posted @ 2019-10-30 10:51 ibingshan 阅读(3171) 评论(0) 推荐(0) 编辑
摘要: git 获取 remote 的 url git ls-remote --get-url [remote] 例如: git ls-remote --get-url origin 阅读全文
posted @ 2019-10-29 11:29 ibingshan 阅读(7009) 评论(0) 推荐(0) 编辑
摘要: git daemon 安装和使用 系统:Cent OS 8 安装 git 和 git daemon(不同系统有不同的安装命令) yum install -y git yum install -y git-daemon git daeom 不是 git 命令,git daemon 为用户提供TCP协议 阅读全文
posted @ 2019-10-28 15:02 ibingshan 阅读(3225) 评论(0) 推荐(0) 编辑
摘要: linux systemd 从简单的例子入门 网上很多相关链接,一上来就给一大堆命令和讲解,让人头都大。 我们希望有一个service(服务),让它在开机启动的时候就执行。 用 root 登陆以后: 新建service vim /etc/systemd/system/my-test-daemon.s 阅读全文
posted @ 2019-10-28 14:40 ibingshan 阅读(1168) 评论(0) 推荐(1) 编辑
摘要: linux 用户,密码,用户组 在root登陆的情况下: 用户密码: useradd <username> passwd <username> <提示输入密码>: userdel <username> rm -rf <username> #删除用户的文件夹 用户组: groupadd <groupn 阅读全文
posted @ 2019-10-23 15:09 ibingshan 阅读(355) 评论(0) 推荐(0) 编辑
摘要: git 在不同服务器主机上同步 git 仓库 参考链接:https://opentechguides.com/how-to/article/git/177/git-sync-repos.html 1.在本地的一个文件夹中执行: git clone --mirror ssh://[url]/repo_ 阅读全文
posted @ 2019-09-26 16:02 ibingshan 阅读(1854) 评论(0) 推荐(0) 编辑
摘要: maya 在 pymel 中运行 mel 前言 maya mel 自身定义了很多有用的方法,当我们用 pymel 开发的时候,不想重新写一遍 mel 已经有的功能,那么就可以在 pymel 中运行 mel import maya.mel as mel melCmdStr = 'changeSelec 阅读全文
posted @ 2019-09-23 14:43 ibingshan 阅读(577) 评论(0) 推荐(0) 编辑
摘要: python listdir() 中文路径 中文文件夹 乱码 解决方法 listdir(path)返回的结果的编码似乎和我们提供的 path 参数的编码有关: import os path = 'd:/test' try: path = unicode(path, 'utf-8') # 经过编码处理 阅读全文
posted @ 2019-09-10 15:44 ibingshan 阅读(6469) 评论(0) 推荐(0) 编辑
摘要: git rev-list 按照时间来列出两个 commit id 之间的相差数 git rev-list: Lists commit objects in reverse chronological order(按时间逆向列出 commit 对象的顺序) 所谓时间逆向:第一个 commit id 提 阅读全文
posted @ 2019-09-06 10:34 ibingshan 阅读(1829) 评论(0) 推荐(0) 编辑
摘要: pyqt pyside qcombobox disable wheel scrolling,去除滚轮改变值和获取焦点功能 from PyQt5 import QtWidgets, QtCore class CustemComboBox(QtWidgets.QComboBox): def __init 阅读全文
posted @ 2019-09-03 17:58 ibingshan 阅读(1765) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页