2017年8月11日星期五

ds415play

sudo     /bin/mount /dev/vg1/volume_2      /mnt/disk2

2017年8月8日星期二

vim 相关知识

1、简短的教程
 http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html

2、 _vimrc 基本配置
set fileencodings=utf-8,utf-16,gbk,big5,gb18030,latin1 "自动猜测文件编码
syntax on " 自动语法高亮
set number " 显示行号

filetype plugin indent on
" show existing tab with 4 spaces width
set tabstop=4
" when indenting with '>', use 4 spaces width
set shiftwidth=4
" On pressing tab, insert 4 spaces
set expandtab

"Open command prompt by running :Cp
command Dos :!start cmd /k cd %:p:h<CR>

"Open windows explorer by running :We
command We :!start Explorer /select,%:p<CR>
3、技巧
4、http://vim.wikia.com/wiki/Highlight_all_search_pattern_matches

2017年8月4日星期五

Python3 unicode_escape


 在python3中

In [1]:      url = r"\u8fd9\u4e2a\u7cfb\u5217\u5fc5\u987b\u8f6c2"
In [2]:      url.encode().decode('unicode_escape')
Out [3]:   '这个系列必须转2'






In [4]:      c = '国家'
In [5]:      c.encode('unicode_escape')
Out [6]:   b'\\u56fd\\u5bb6'

2017年8月1日星期二

conda创建的虚拟环境,pyqt出错

conda创建的虚拟环境,复制到其它计算机后,执行pyqt程序时,出错。
解决方法:
https://github.com/ContinuumIO/anaconda-issues/issues/1270
COPY the
Continuum\Anaconda3\Library\plugins\platforms
folder to
Continuum\Anaconda3