<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:
| #ifndef _UNISTD_H | |
| #define _UNISTD_H 1 | |
| /* This is intended as a drop-in replacement for unistd.h on Windows. | |
| * Please add functionality as neeeded. | |
| * https://stackoverflow.com/a/826027/1202830 | |
| */ | |
| #include <stdlib.h> | |
| #include <io.h> |
| { | |
| /* Keybindings for emacs emulation. Compiled by Jacob Rus. | |
| * | |
| * This is a pretty good set, especially considering that many emacs bindings | |
| * such as C-o, C-a, C-e, C-k, C-y, C-v, C-f, C-b, C-p, C-n, C-t, and | |
| * perhaps a few more, are already built into the system. | |
| * | |
| * BEWARE: | |
| * This file uses the Option key as a meta key. This has the side-effect | |
| * of overriding Mac OS keybindings for the option key, which generally |
| /** | |
| * @author xiangshouding | |
| */ | |
| class Box { | |
| constructor(x, y, icon) { | |
| this.x = x; | |
| this.y = y; | |
| this.icon = icon; | |
| } |
| 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'` |