<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
function noop() { | |
} | |
class Dispatcher { | |
constructor() { | |
this.ctx = { | |
tasks: [], | |
done: noop, | |
context: {} | |
}; |
;; .emacs | |
;; Added by Package.el. This must come before configurations of | |
;; installed packages. Don't delete this line. If you don't want it, | |
;; just comment it out by adding a semicolon to the start of the line. | |
;; You may delete these explanatory comments. | |
;; 开启 melpa | |
(require 'package) | |
(setq package-archives '(("gnu" . "http://mirrors.163.com/elpa/gnu/") |
## FOR UBUNTU | |
Dependencies install | |
1. apt-get install nginx-extras | |
2. apt-get install lua-zlib | |
lua file decompress request body | |
-------------------------------- | |
see https://gist.github.com/iammehrabalam/30f5402bbcdad139c9eafd3a6f47ce6c |
# -*- coding: utf-8 -*- | |
""" | |
Performance test for different types of update | |
Results sample | |
----------------------------------------------- | |
In [1]: import db_test |
#!/usr/bin/env sh | |
Pid=$1 | |
if [ "$Pid" = "" ]; then | |
echo 'please input pid' | |
exit 1 | |
fi | |
echo 'test' |
#!/usr/bin/env sh | |
cd `pwd` | |
p=' "PHPUnit_TextUI_Command" => '$(find . -name '*.php' | xargs grep 'class PHPUnit_TextUI_Command' | awk -F: '{print $1}' | sed 's/\.\/vendor/$vendorDir . "/')'",' | |
echo $p | |
fixed=`cat vendor/composer/autoload_classmap.php | grep 'PHPUnit_TextUI_Command'` |
/** | |
* @author xiangshouding<[email protected]> | |
*/ | |
var fs = require('fs'); | |
var util = require('util'); | |
var assert = require('assert'); | |
var argv = process.argv; |
call plug#begin() | |
" Make sure you use single quotes | |
Plug 'junegunn/seoul256.vim' | |
Plug 'junegunn/vim-easy-align' | |
" Group dependencies, vim-snippets depends on ultisnips | |
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' |
{ | |
"name": "Tiny", | |
"require": { | |
"symfony/http-foundation": "2.7.*", | |
"symfony/http-kernel": "2.7.*", | |
"symfony/routing": "2.7.*" | |
} | |
} |