Sjoerd Langkemper
Sjoerd Langkemper
Well, 4.1.3 basically says "users should only be able to access what they are allowed to access". That's true, but too wide. I think it would have value to split...
> password size is limited to 50 The value of 50 doesn't make much sense to me. I would expect 72. And you would have to be clear that this...
Yes, it's literally NIST: * [reauthentication of the subscriber SHOULD be repeated at least once per 30 days during an extended usage session](https://pages.nist.gov/800-63-3/sp800-63b.html#aal1reauth) * [Reauthentication of the subscriber SHALL be...
I would also recommend CSP3 with nonces, but I would not require it. For some applications a CSP with allow-lists works fine and provides adequate security. I would not require...
From https://securitytxt.org/: > For websites, the security.txt file should be placed under the /.well-known/ path (/.well-known/security.txt) [[RFC8615](https://tools.ietf.org/html/rfc8615)]. It can also be placed in the root directory (/security.txt) of a website,...
So what is the status of this issue? Can it be closed?
This is currently implemented like this: five.chinese('pinyin'); // "wǔ"
Other issues related to conditional access expressions are #131, #138, #151, #173.
Test case: ``` ===================================== Conditional access expression is right-associative ===================================== var a = b?.Something?.Something; --- (compilation_unit (global_statement (local_declaration_statement (variable_declaration (implicit_type) (variable_declarator (identifier) (equals_value_clause (conditional_access_expression (identifier) (conditional_access_expression (member_binding_expression (identifier)) (member_binding_expression (identifier))))))))))...
I thought conditional access expressions should be right-associative because: * Roslyn parses it this way. * The grammar specifies `prec.right` in [conditional_access_expression](https://github.com/tree-sitter/tree-sitter-c-sharp/blob/master/grammar.js#L1095). However, whether it is left or right associative...