I no personal preference/order
vim-elixir: Vim configuration files for Elixir
Janus: This is a distribution of plug-ins and mappings for Vim, Gvim and MacVim.
I no personal preference/order
vim-elixir: Vim configuration files for Elixir
Janus: This is a distribution of plug-ins and mappings for Vim, Gvim and MacVim.
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
| -- 临时表 t_temp_a,有重复articleid的记录 | |
| CREATE TEMPORARY TABLE t_temp_a ( | |
| SELECT d.id, d.articleid, d.hitcount, d.cnt | |
| FROM ( | |
| SELECT c.id, c.articleid, c.hitcount, b.cnt | |
| FROM t_article_hitcount AS c | |
| INNER JOIN ( | |
| SELECT articleid, cnt | |
| FROM ( | |
| SELECT articleid, COUNT(*) AS cnt |
| git init # 初始化本地git仓库(创建新仓库) | |
| git config --global user.name "xxx" # 配置用户名 | |
| git config --global user.email "xxx@xxx.com" # 配置邮件 | |
| git config --global color.ui true # git status等命令自动着色 | |
| git config --global color.status auto | |
| git config --global color.diff auto | |
| git config --global color.branch auto | |
| git config --global color.interactive auto | |
| git config --global --unset http.proxy # remove proxy configuration on git | |
| git clone git+ssh://git@192.168.53.168/VT.git # clone远程仓库 |
| server { | |
| listen 80; | |
| server_name app.example.com; | |
| rewrite ^ https://$server_name$request_uri? permanent; | |
| } | |
| server { | |
| listen 443; | |
| server_name app.example.com; |