HTTP methods indicate the desired action to be performed on the identified resource.
Method | Idempotent | Safe | Body |
---|---|---|---|
GET | yes | yes | no |
SEARCH (proposed) | yes | yes | yes |
POST | no | no | yes |
PUT | yes | no | yes |
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: dashing | |
# Required-Start: $network | |
# Required-Stop: $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
### END INIT INFO | |
USER=dashing |
HTTP methods indicate the desired action to be performed on the identified resource.
Method | Idempotent | Safe | Body |
---|---|---|---|
GET | yes | yes | no |
SEARCH (proposed) | yes | yes | yes |
POST | no | no | yes |
PUT | yes | no | yes |
[user] | |
name = Jan Zak | |
email = [email protected] | |
[core] | |
editor = vim | |
[color] | |
ui = true | |
[pull] | |
rebase = true | |
[push] |
#!/bin/sh | |
NAME=phpci | |
PIDFILE=/var/run/${NAME}.pid | |
DAEMON=/home/www/ci.d.cdn77.com/subdomains/www/phpci/daemonise | |
DAEMON_OPTS=phpci:daemonise | |
do_start() { | |
echo -n "Starting daemon $NAME... " |
I hereby claim:
To claim this, I am signing this object:
###* | |
* Encryption: | |
* | |
* cipher: AES-128-CBC | |
* key: 16 bytes | |
* IV: 16 bytes, random, non-reused, prepended to cipher text | |
* padding: PKCS#7 | |
### | |
crypto = require 'crypto' |
var toSource = function (value) { | |
function show (value) { | |
if (_.isUndefined(value)) { | |
value = "undefined"; | |
} else if (_.isFunction(value)) { | |
value = "" + value; | |
var indentMatches = value.match(/^ +/mg); | |
if (!_.isEmpty(indentMatches)) { | |
var indentSize = Math.min.apply(null, _.map(indentMatches, function (x) { return x.length; })); | |
value = value.replace(new RegExp("^ {" + indentSize + "}", "mg"), ""); |