One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| { | |
| "workbench.colorTheme": "Dracula", | |
| "workbench.iconTheme": "vscode-icons", | |
| "editor.tabSize": 2, | |
| "editor.wordWrap": "on", | |
| "editor.formatOnSave": true, | |
| "prettier.singleQuote": true, | |
| "prettier.eslintIntegration": true, | |
| "gitlens.advanced.messages": { | |
| "suppressShowKeyBindingsNotice": true |
| let re; | |
| // Literal Characters | |
| re = /hello/; | |
| re = /hello/i; | |
| // Metacharacter Symbols | |
| re = /^h/i; // Must start with | |
| re = / world$/i; // Must ends with | |
| re = /^hello$/i; // Must begin and end with | |
| re = /h.llo/i; // Matches any ONE character |
| /* Change Autocomplete styles in Chrome*/ | |
| input:-webkit-autofill, | |
| input:-webkit-autofill:hover, | |
| input:-webkit-autofill:focus | |
| textarea:-webkit-autofill, | |
| textarea:-webkit-autofill:hover | |
| textarea:-webkit-autofill:focus, | |
| select:-webkit-autofill, | |
| select:-webkit-autofill:hover, | |
| select:-webkit-autofill:focus { |
| root = true | |
| [*] | |
| indent_style = space | |
| indent_size = 2 | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true |
| "editor.fontFamily": "'Operator Mono SSm'", | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "emphasis", "storage", "comment", "entity.other.attribute-name", "entity.other.attribute-name.html", "entity.other.attribute-name.tag.jade", "entity.other.attribute-name.tag.pug", "markup.italic", "keyword.control", "variable.language" | |
| ], | |
| "settings": { | |
| "fontStyle": "italic" | |
| } |
$ ssh brad@192.168.1.29
$ mkdir test
$ cd test
Аутентификация(authentication, от греч. αὐθεντικός [authentikos] – реальный, подлинный; от αὐθέντης [authentes] – автор) - это процесс проверки учётных данных пользователя (логин/пароль). Проверка подлинности пользователя путём сравнения введённого им логина/пароля с данными сохранёнными в базе данных.
Авторизация(authorization — разрешение, уполномочивание) - это проверка прав пользователя на доступ к определенным ресурсам.
Например после аутентификации юзер sasha получает право обращатся и получать от ресурса "super.com/vip" некие данные. Во время обращения юзера sasha к ресурсу vip система авторизации проверит имеет ли право юзер обращатся к этому ресурсу (проще говоря переходить по неким разрешенным ссылкам)