"HTTP Cookies" were first half-baked by Netscape Communications Corporation and allow clients to retain certain state information to be included in future requests to a particular server. Most modern web clients can metabolize cookies. Cookies are now defined by RFC 6265. It is not necessary to use/permit cookies to read articles on arXiv.org.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2016/01/11 21:36:38 [error] 17946#0: *3389 FastCGI sent in stderr: "PHP message: [2016-01-12 08:36:38] EXCEPTION: (PhutilTypeExtraParametersException) Got unexpected parameters: maniphest.default-priority at [<phutil>/src/parser/PhutilTypeSpec.php:150] | |
PHP message: arcanist(head=stable, ref.master=4d6d3feb7fc1, ref.stable=6833ae5bd33e), phabricator(head=stable, ref.master=6d404c821902, ref.stable=2e7f2b735702), phutil(head=stable, ref.master=12bd645b58b9, ref.stable=f51205748260) | |
PHP message: #0 <#2> PhutilTypeSpec::checkMap(array, array) called at [<phabricator>/src/applications/maniphest/constants/ManiphestTaskPriority.php:144] | |
PHP message: #1 <#2> ManiphestTaskPriority::validateConfiguration(array) called at [<phabricator>/src/applications/maniphest/config/ManiphestPriorityConfigOptionType.php:7] | |
PHP message: #2 <#2> ManiphestPriorityConfigOptionType::validateOption(PhabricatorConfigOption, array) called at [<phabricator>/src/applications/config/option/PhabricatorApplicationConfigOptions.php:24] | |
PHP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"config": [ | |
{ | |
"key": "maniphest.default-priority", | |
"source": "local", | |
"value": null, | |
"status": "unset", | |
"errorInfo": null | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
username=$1 | |
password=$2 | |
db=synapse-homeserver | |
[[ -z $username ]] || [[ -z $password ]] && { print "usage: $0 <username> <password>"; exit; } | |
password_hash=$(python -c "import bcrypt; print bcrypt.hashpw(\"$password\", bcrypt.gensalt())") | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2018/05/11 00:21:19 [INFO] Terraform version: 0.11.7 41e50bd32a8825a84535e353c3674af8ce799161 | |
2018/05/11 00:21:19 [INFO] Go runtime version: go1.10.1 | |
2018/05/11 00:21:19 [INFO] CLI args: []string{"/home/rgh/bin/terraform-0.11.7", "apply", "--auto-approve"} | |
2018/05/11 00:21:19 [DEBUG] Attempting to open CLI config file: /home/rgh/.terraformrc | |
2018/05/11 00:21:19 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2018/05/11 00:21:19 [INFO] CLI command args: []string{"apply", "--auto-approve"} | |
2018/05/11 00:21:19 [INFO] command: empty terraform config, returning nil | |
2018/05/11 00:21:19 [DEBUG] command: no data state file found for backend config | |
2018/05/11 00:21:19 [DEBUG] New state was assigned lineage "ac22b346-a1b6-1211-d523-6b5b5feb07c9" | |
2018/05/11 00:21:19 [INFO] command: backend initialized: <nil> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
setopt extended_glob | |
# Find the basename for every input line | |
function filter { | |
while read i; do print $i:t:s/\.conf/; done | |
} | |
OlderNewer