На винде офнуть crlf
git config --global core.autocrlf false
git config --global core.eol lf
Убрать вим
git config --global core.editor "nano"
# Создать юзера | |
useradd -m -d /home/enity enity | |
passwd enity | |
usermod -a -G sudo enity | |
# ssh | |
ssh-keygen -C "[email protected]" | |
eval "$(ssh-agent -s)" | |
ssh-add -K ~/.ssh/id_rsa |
const metroList = { | |
devyatkino: { | |
name: 'Девяткино', | |
color: 'red', | |
}, | |
grajdanskii: { | |
name: 'Гражданский проспект', | |
color: 'red', | |
}, | |
akademicheskaya: { |
.git | |
.dockerignore | |
LICENSE | |
README.md | |
.gitignore | |
Dockerfile | |
docker-compose.yml | |
.DS_Store | |
/target | |
.vscode |
На винде офнуть crlf
git config --global core.autocrlf false
git config --global core.eol lf
Убрать вим
git config --global core.editor "nano"
<scheme name="MyTheme" version="142" parent_scheme="ReSharper Dark"> | |
<metaInfo> | |
<property name="created">2018-10-23T00:31:02</property> | |
<property name="ide">Rider</property> | |
<property name="ideVersion">2018.2.3.0.0</property> | |
<property name="modified">2018-10-23T00:31:25</property> | |
<property name="originalScheme">MyTheme</property> | |
</metaInfo> | |
<colors> | |
<option name="LINE_NUMBERS_COLOR" value="666772" /> |
const info = { | |
timeOpened:new Date(), | |
timezone:(new Date()).getTimezoneOffset()/60, | |
pageon(){return window.location.pathname}, | |
referrer(){return document.referrer}, | |
previousSites(){return history.length}, | |
browserName(){return navigator.appName}, |