Skip to content

Instantly share code, notes, and snippets.

View JinAirsOs's full-sized avatar

LifeCoder JinAirsOs

  • Shanghai, China
View GitHub Profile
@JinAirsOs
JinAirsOs / .vimrc
Created May 23, 2019 06:05 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
@JinAirsOs
JinAirsOs / .vimrc
Created May 23, 2019 06:05 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on

Keybase proof

I hereby claim:

  • I am JinAirsOs on github.
  • I am zhendong (https://keybase.io/zhendong) on keybase.
  • I have a public key whose fingerprint is E7D5 408D ED19 359B 13B4 A94D FAB4 B05A D1EA E353

To claim this, I am signing this object:

@JinAirsOs
JinAirsOs / Install-nginx-with-http2-support.md
Created November 16, 2016 13:57 — forked from hollodotme/Install-nginx-with-http2-support.md
Install nginx with http2 support on ubuntu 14.04 LTS (Trusty)

How to install nginx (>= 1.9.5) with http2 support on Ubuntu 14.04 LTS (Trusty)

IMPORTANT: Backup your nginx site configs (usually under /etc/nginx/sites-available)!

Remove old nginx

Remove old nginx incl. nginx-common:

apt-get autoremove --purge nginx nginx-common