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
### Когда создаём репозиторий ### | |
# Инициализируем гит (это если мы создаём новый проект у себя на компе) | |
git init | |
# Посмотреть какие изменения были внесены | |
git status | |
# Пометить все файлы к отправке на сервер | |
git add -A |
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
# Создаём ридми | |
echo "# git-leopards-quiz" >> README.md | |
# Инициализируем гит (это если мы создаём новый проект у себя на компе) | |
git init | |
# Посмотреть какие изменения были внесены | |
git status | |
# Пометить все файлы к отправке на сервер |
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
<script src='https://pos.gosuslugi.ru/bin/script.min.js'></script> | |
<style> | |
#js-show-iframe-wrapper{position:relative;display:flex;align-items:center;justify-content:center;width:100%;min-width:293px;max-width:100%;background:linear-gradient(138.4deg,#38bafe 26.49%,#2d73bc 79.45%);color:#fff;cursor:pointer}#js-show-iframe-wrapper .pos-banner-fluid *{box-sizing:border-box}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2{display:block;width:240px;min-height:56px;font-size:18px;line-height:24px;cursor:pointer;background:#0d4cd3;color:#fff;border:none;border-radius:8px;outline:0}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:hover{background:#1d5deb}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:focus{background:#2a63ad}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:active{background:#2a63ad}@-webkit-keyframes fadeInFromNone{0%{display:none;opacity:0}1%{display:block;opacity:0}100%{display:block;opacity:1}}@keyframes fadeInFromNone{0%{display:none;opacity:0}1%{dis |
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
// friends | |
(async () => { | |
let replace = false; | |
do { | |
replace = false; | |
while (document.querySelector('[onclick*="Friends.declineRequest"]')) { | |
document.querySelector('[onclick*="Friends.declineRequest"]').click(); | |
replace = true; | |
document.querySelector('.friends_user_row').remove(); | |
const bl = document.querySelector('.friends_list_bl'); |