A flow based on this article
Comments from Adam on the original version of this gist can be found here
A flow based on this article
Comments from Adam on the original version of this gist can be found here
1.- Get into the src folder, download & extract nginx source
cd ~/srccurl -O http://nginx.org/download/nginx-1.7.0.tar.gztar -xzvf nginx-1.7.0.tar.gzcd nginx-1.7.02.- Configuring the source
./configure --prefix=$HOME/local/nginx \
| # Local Dates: | |
| git log --date=local --pretty=format:"%h%x09%an%x09%ad%x09%s" > commits.local.tsv.txt | |
| # ISO Dates: | |
| git log --date=iso --pretty=format:"%h%x09%an%x09%ad%x09%s" > commits.iso.tsv.txt |
| set nocompatible | |
| set encoding=utf-8 | |
| set hidden | |
| filetype plugin indent on | |
| syntax on | |
| set synmaxcol=2048 " Don't syntax highlight super-long lines (for performance) | |
| set autoindent " automatically indent lines and try to do it intelligently | |
| set smartindent | |
| set backspace=indent,eol,start " backspace behaves 'normally' |
| #!/bin/bash | |
| # for use with cron, eg: | |
| # 0 3 * * * postgres /var/db/db_backup.sh foo_db | |
| if [[ -z "$1" ]]; then | |
| echo "Usage: $0 <db_name> [pg_dump args]" | |
| exit 1 | |
| fi |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| import DB from './DB' | |
| describe('DB', () => { | |
| let db: DB | |
| const data = { name: 'Tom Cook', type: ['person', 'CEO'] } | |
| beforeEach(() => { | |
| db = new DB() | |
| db.addNode('1', { name: 'Apple Computer Company', type: ['company', 'start-up'], founded: 'April 1, 1976' }) |