摘要: 软件环境vim74gitvim中文帮助vundle安装——插件管理软件cd vim所在路径/vimfiles/bundlegit clone https://github.com/gmarik/vundle.git修改vimrc文件,默认在vim所在路径/_vimrc修改完毕后运行:BundleInstall,检查是否安装完毕 set nocompatible " be iMproved filetype off " required! set rtp+=~/.vim/bundle/vundle/ ... 阅读全文
posted @ 2014-01-02 13:22 Solon Tan 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: 推荐方案推荐安装vpnc,来替代官方版,VPNC--Linux cisco vpn client install.md安装步骤解压缩后,运行./vpn_installautostart 输入nokernel的位置输入本机kernel的源码所在,参加错误处理错误处理kernel的位置yum install kernel-develrpm -ql kernel-devel即可找到kernel的位置为/usr/src/kernels/2.6.18-371.3.1.el5-x86_64CFLAGS / EXTRA_CFLAGS errorMaking modulemake -C /lib/module 阅读全文
posted @ 2013-12-30 23:21 Solon Tan 阅读(374) 评论(0) 推荐(0) 编辑
摘要: pre-installlibgcrypt-dev or libgcrypt-devel安装if need crypt, modified the Makefile file, following the Errormakemake installErrorbuilt without opensslvpnc was built without openssl: Can't do hybrid or cert modevim Makefile#uncomment# OPENSSL_GPL_VIOLATION = -DOPENSSL_GPL_VIOLATION# OPENSSLLIBS = 阅读全文
posted @ 2013-12-30 23:18 Solon Tan 阅读(585) 评论(0) 推荐(0) 编辑
摘要: shell使用指南ZMODEM功能yum install lrzszrz 上传sz 下载快捷键alt + o 打开终端alt 1-9 切换ctrl + alt 切换ctrl + shift + n 打开新选项卡vim的小键盘不能使用的问题在会话的属性中,将VT模式的初始数字键盘设置为普通配色方案保存成xcs文件,导入;在每个会话窗口设置成默认在.bashrc中添加 alias ls='ls --color=auto' LS_COLORS='no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40; 阅读全文
posted @ 2013-06-09 14:40 Solon Tan 阅读(1228) 评论(0) 推荐(0) 编辑
摘要: AutoHotKey使用点滴基本语法别名::by the way::by the way::l166::192.168.100.166键绑定键对应"#" 表示Windows键 "^" 表示Cntrl键 "!" 表示Alt "+" 表示Shift键Example常用#Esc::Send !{F4} ;win+ESC 替换 alt F4#f::Run https://www.google.com/search?q=%clipboard%#f:: current_clipboard = %Clipboard% ; 把目前 阅读全文
posted @ 2013-06-08 10:36 Solon Tan 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 3 using namespace std; 4 5 class ComputeBase 6 { 7 public: 8 //virtual 拼写出错 9 //没写成纯虚函数,没有写实现,会出现链接错误 10 virtual double operation(double pre, double next) = 0; 11 }; 12 13 class Add: public ComputeBase 14 { 15 public: 16 virtual double operation(double pr... 阅读全文
posted @ 2012-04-30 15:38 Solon Tan 阅读(255) 评论(1) 推荐(0) 编辑