
笔记
文章平均质量分 91
Zero_zhzh
在学习中焦虑,在焦虑中学习。
展开
-
centos7 部署 RocketChat 服务
Rocket.Chat 是特性最丰富的 Slack 开源替代品之一。主要功能:群组聊天,直接通信,私聊群,桌面通知,媒体嵌入,链接预览,文件上传,语音/视频 聊天,截图等等。Rocket.Chat 原生支持 Windows,Mac OS X ,Linux,iOS 和 Android 平台。Rocket.Chat 通过 hubot 集成了非常流行的服务,比如 GitHub,GitLab,Confluence,JIRA 等等。安装必要的依赖包使用yum安装官方MongoDB软件包echo -e ".原创 2021-05-10 14:41:00 · 1936 阅读 · 0 评论 -
【Maya】编译USD(个人笔记)
参考:https://www.manicmachinegames.com/blog/2019/1/10/tutorial-setting-up-and-building-pixars-usd-on-windowshttps://zhuanlan.zhihu.com/p/109115796按照以上参考进行编译前的准备,需要注意:python2版本需要64bit的,也是编译的才发现我的python是32bit的编译过程遇到的问题:报错: ERROR: Failed to download htt.原创 2020-12-08 11:53:06 · 1073 阅读 · 0 评论 -
【GitLab】修改仓库路径为ip地址(笔记)
GitLab搭建完成后,新建一个项目玩玩,但是http地址不是ip,导致无法访问。以下是修改此地址为ip的方法:修改gitlab.yml文件,host值改为服务器IP地址cd /opt/gitlab/embedded/service/gitlab-rails/configvim gitlab.yml打开gitlab.rb文件,external_url改成服务器IPvim /etc/g...原创 2019-12-23 15:46:35 · 1192 阅读 · 0 评论 -
【PyQt】QListWidget删除选择的item
为了实现点击item,item删除,当QListWidget的item为空时,关闭窗口。首先想到的是用removeItemWidget ,但是结果并不像我预期那样的。如下效果:removeItemWidget 不会删除item,而是删除item的widget。从QListWidget中删除item的正确方法应该是takeItem(row),效果如下:代码示例:# -*- coding...原创 2019-08-20 15:23:55 · 8800 阅读 · 0 评论 -
【Python】pipenv lock Read timed out
虚拟环境下安装Python第三方库,到lock文件时超时,如下(...)...>pipenv install PyQt5Installing PyQt5...Adding PyQt5 to Pipfile's [packages]...Installation SucceededPipfile.lock (3c9a0b) out of date, updating to (a654...原创 2019-08-23 16:30:06 · 1937 阅读 · 0 评论 -
【Maya】后台拍屏:以指定摄像机的视口拍屏
maya后台拍屏指定摄像机maya后台拍屏默认的是persp摄像机视口,那么如何改变摄像机呢?经过在谷歌上的一番冲浪,找到了一个解决办法。原来当maya独立运行的时候,需要一个可渲染的相机来拍屏,只需要把除了想要的摄像机之外的相机设置为不可渲染即可。例如:cams = cmds.ls(type='camera')for cam in cams: if cam not is yourCa...原创 2019-06-06 18:07:31 · 3334 阅读 · 0 评论 -
【Maya】Error line 1 Cannot find procedure onModelChange3dc
病毒式的maya报错:Error line 1 Cannot find procedure onModelChange3dc解决办法:import pymel.core as pm# Get all model editors in Maya and reset the editorChanged eventfor item in pm.lsUI(editors=True): if...原创 2019-07-17 17:19:15 · 16728 阅读 · 7 评论 -
Python 触发 Windows10 通知
Python 触发 Windows 通知需要使用第三方库,在这里我使用的是 win10toast。安装库(注:要求安装pywin32):pip install win10toast示例:from win10toast import ToastNotifiertoaster = ToastNotifier()toaster.show_toast(u'标题', u'收到一个通知')库...原创 2019-07-12 15:31:33 · 5024 阅读 · 0 评论 -
VMware桥接模式下,ping不通,无法访问目标主机
记录一次物理机ping不通虚拟机的解决办法原创 2019-07-11 13:52:17 · 13976 阅读 · 2 评论