
工具使用手册
Marshal Zheng
CUHK-SZ PhD student
展开
-
pip使用清华源下载包
pip清华源原创 2023-01-31 09:23:27 · 650 阅读 · 0 评论 -
Vim 快捷键
Vim 快捷键The most basic onesEsc: return to mode “Normal”i: go into mode “Insert”: - go into mode “Command”, you can use wq! to save and quit or just q! to force quitCommon use onesh: go left for one characterl: go right for one characterj: go down原创 2021-04-24 18:04:21 · 148 阅读 · 0 评论 -
Sublime text 3 + LaTex - How to get started
Install tex-live. Try to download tex-live domestic mirror unless you are abroad. For this stage, speed of downloading is critical.Install sublime text 3. This is kind of troublesome. Go to the official website of sublime text 3 and download it. However,.原创 2021-01-23 10:37:26 · 184 阅读 · 1 评论 -
Ubuntu系统正常连接外接显示器
Ubuntu系统正常连接外接显示器运行,查看已经连接的显示器xrandr设置双屏幕显示xrandr --output eDP-1-1 --same-as DP-1-1 --auto可选:外接显示器右侧拓展xrandr --output DP-1-1 --right-of eDP-1-1 --auto原创 2020-05-29 10:32:55 · 2747 阅读 · 0 评论 -
个人git常用操作记录
个人git常用操作记录git clone ***git statusgit add .git statusgit pullgit commit -m “version*”git push原创 2020-05-26 20:15:29 · 149 阅读 · 0 评论 -
matplotlib绘图入门及常用
import numpy as npimport pandas as pdimport matplotlib.pyplot as pltfrom matplotlib.ticker import MultipleLocator#使用numpy产生数据x=np.arange(-5,5,0.1)y=x*3#创建窗口、子图#方法1:先创建窗口,再创建子图。(一定绘制)fig = p...原创 2020-03-20 16:13:10 · 219 阅读 · 0 评论 -
pip安装库报错
Could not find a version that satisfies the requirement xlrd (from versions: )No matching distribution found for xlrd解决方法:pip install xlrd -i http://pypi.douban.com/simple/ --trusted-host pypi.doub...原创 2019-03-26 21:10:55 · 707 阅读 · 0 评论 -
Typora学习笔记
Typora学习笔记文章目录Typora学习笔记标题居中强调加粗下划线有序列表无序列表代码块引用代码一句转义分隔线创建表格插入URL链接注释数学表达式插入图片删除线表情目录列表绘制流程图标题用“#”表示快捷键:ctrl+1,2,3,4,5居中居中可用center标签强调使用强调加粗使用加粗下划线使用u标签:下划线有序列表输入数字+空格即可正常...原创 2019-02-24 21:27:03 · 819 阅读 · 0 评论 -
pycharm快捷键及常用设置
pycharm快捷键及常用设置Alt+Enter 自动添加包shift+O 自动建议代码补全Ctrl+t SVN更新Ctrl+k SVN提交Ctrl + / 注释(取消注释)选择的行Ctrl+Shift+F 高级查找Ctrl+Enter 补全Shift + Enter 开始新行TAB Shift+TAB 缩进/取消缩进所选择的行Ctrl + Alt + I 自动缩进行C...转载 2018-01-19 20:10:00 · 155 阅读 · 0 评论 -
PHP官方文档和phpstorm配置指南
PHP官方文档和phpstorm配置指南http://cn2.php.net/manual/zh/phpstorm安装——>next——>……下载PHP.exe地址:http://www.php.net/配置interpreter:……/……/php.exesucceed!posted @ 2018-03-04 22:56 Edge_of_Eternity ...原创 2018-03-04 22:56:00 · 390 阅读 · 0 评论 -
webstorm's interpreter
webstorm's interpreter下载node.js地址:http://nodejs.cn/next——>Node interpreter: ……/……/node.exeposted @ 2018-03-04 22:57 Edge_of_Eternity 阅读(...) 评论(...) 编辑 收藏...原创 2018-03-04 22:57:00 · 214 阅读 · 0 评论 -
webstorm实用快捷键
webstorm实用快捷键webstorm实用快捷键 Ctrl+/ 或 Ctrl+Shift+/ 注释(// 或者/*…*/ ) Shift+F6 重构-重命名 Ctrl+X 删除行 Ctrl+D 复制行 Ctrl+G 查找行 Ctrl+Shift+Up/Down 代码向上/下移动。 F2 或Shift+F2 高亮错误或...原创 2018-03-28 18:32:00 · 92 阅读 · 0 评论