Skip to content

Instantly share code, notes, and snippets.

View wzhsunn's full-sized avatar
💭
github

sunny wzhsunn

💭
github
View GitHub Profile
@wzhsunn
wzhsunn / PhpStorm Keymap
Created April 4, 2017 03:07 — forked from niweea/PhpStorm Keymap
PhpStorm快捷键
### Editing ###
`Ctrl + Space` 基本代码完成(任意类的,方法的或者变量的名称)
`Ctrl + Shift + Enter` 补全当前语句
`Ctrl + P` Parameter info (within method call arguments)
`Ctrl + Q` 快速查找文档
`Ctrl + 鼠标滑过` 简明信息查看
`Ctrl + F1` 在插入符号处显示错误或者警告信息
`Alt + Insert` 生成代码...(Getters,Setters,Constructors)
`Ctrl + O` 重写方法
`Ctrl + I` 实现方法
@wzhsunn
wzhsunn / redmine-3.0.2-on-ubuntu-14.04
Created June 20, 2016 02:28 — forked from wenzhixin/redmine-3.0.2-on-ubuntu-14.04
redmine 3.0.2 installer on ubuntu 14.04(new installtion) with nginx, mysql and puma
# set cache proxy
sudo vi /etc/apt/apt.conf << EOT
Acquire::http::Proxy "http://192.168.88.10:3142";
Acquire::HTTP::Proxy::192.168.88.10 "DIRECT";
EOT
sudo apt-get update
sudo apt-get upgrade