Skip to content

Instantly share code, notes, and snippets.

View thedvlprs's full-sized avatar
⌨️
One mistake—and you’re wrong.

Sophie thedvlprs

⌨️
One mistake—and you’re wrong.
View GitHub Profile
базовые команды
git clone адрес репозитория - клонировать репозиторий на локальный компютер
git commit -m 'initial commit' комит изменений в локальный репозиторий
git push -u origin master - только первый раз отправка изменений в удаленный репозиторий
git push - все последующие разы отправка изменений в удаленный репозиторий
окат изменений
git pull - скачивается актуальная версия удаленного репозитория и все изменения применяются к локальному репозиторию
checkout - перейти в другую ветку
discard - не отправлять в репозиторий те изменения которые нам не нравятся
@thedvlprs
thedvlprs / automatic-browser-page-refresh.html
Last active May 30, 2019 17:35
Автоматическое обновление страницы браузера на HTML
<!-- 15 – это число, обозначающее время, через которое должна автоматически обновиться веб-страница (в секундах). -->
<meta http-equiv="Refresh" content="15" />
@thedvlprs
thedvlprs / hold-before-fired.js
Last active May 30, 2019 17:36
Задержка при наступлении события (обычно используется в серии однотипных событий - mousemove, dragover и т.д.)
function holdBeforeFired(funcToFire, holdTime){
let hold = false, _this, _arguments;
return function action(){
if (hold) { _this = this; _arguments = arguments; return; }
hold = true;
funcToFire.apply(this,arguments);
@thedvlprs
thedvlprs / async-img.js
Created May 30, 2019 17:38
Ускорение загрузки страницы за счёт параллельной загрузки картинок, вместо последовательной
(async ()=>{
for (let node of document.getElementsByTagName('img')) {
await new Promise(res=>{
node.src=node.dataset.src;
node.onload = ()=>res();
})
}
})()
// Используется data-src вместо src
@thedvlprs
thedvlprs / auto-page-refresh.js
Created May 30, 2019 17:39
Автоматическое обновление страницы браузера на JavaScript
// Автоматическое обновление страницы браузера на JavaScript
<script> setTimeout(function(){ location.reload(); }, 15000); </script>
// 15000 - это миллисекунды, через которые должна обновиться веб-страница.
@thedvlprs
thedvlprs / css_reset.css
Created July 17, 2019 14:30 — forked from freetonik/css_reset.css
Eric Meyer’s CSS Reset 2.0
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
@thedvlprs
thedvlprs / django_cheat_sheet.md
Created September 5, 2019 05:38 — forked from bradtraversy/django_cheat_sheet.md
Django command cheat sheet

Django 2.x Cheat Sheet

Creating a virtual environment

We need to create a virtual env for our app to run in: More Here Run this command in whatever folder you want to create your venv folder

python -m venv ./venv
# GET VERSION
yarn -v (or --version)
# GET HELP
yarn help
# CREATE PACKAGE.JSON
yarn init
yarn init -y // Use defaults
@thedvlprs
thedvlprs / npmcrashcourse.txt
Created September 5, 2019 05:41 — forked from bradtraversy/npmcrashcourse.txt
NPM Crash Course Commands
# GET VERSION
npm -v (or --version)
# GET HELP
npm help
npm
# CREATE PACKAGE.JSON
npm init
npm init -y (or --yes)
@thedvlprs
thedvlprs / django_crash_course.MD
Created September 5, 2019 05:43 — forked from bradtraversy/django_crash_course.MD
Commands for Django 2.x Crash Course

Django Crash Course Commands

# Install pipenv
pip install pipenv
# Create Venv
pipenv shell