- Why I'm not the biggest WordPress fan - about weaknesses of wp, nehalist.io.
- Как обновить Gulp до версии 4?. How do I update to Gulp 4? - оригиналльная статья.
- The Complete-Ish Guide to Upgrading to Gulp 4
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
'use strict'; | |
const webpack = require('webpack'); | |
const path = require('path'); | |
const NODE_ENV = process.env.NODE_ENV || 'development'; | |
const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); | |
// process.noDeprecation = true; | |
const ExtractTextPlugin = require('extract-text-webpack-plugin'); |
Сочетания клавиш
dw
- delete word, удаление слова с места, где находится курсор.d$
- удаление части строки от курсора до конца.dd
- удаление строки целиком.m + любая клавиша
- сделать закладку в файле. Затем, когда хотим вернуться к этому месту, набрать" + заданная клавиша
.u
- отмена последнего изменения.Ctrl + r
- повторить отменённое изменение./ + искомое слово
- поиск слова. n - искать дальше.
Команды удаления (цитаты из vim tutor)
При делегировании событий удобно использовать метод Element.matches(), которому передаётся любой css-селектор.
- Set, Map, WeakSet и WeakMap - новые типы коллекций в JavaScript ES-2015, статья Кантора на learn.javascript.ru.
- ES6 — set, map, weak
Private data with WeakMap use case
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
# add logging.disable(logging.CRITICAL) for disable logging | |
import logging | |
logging.basicConfig(level=logging.DEBUG, format=' %(asctime)s - %(levelname)s | |
- %(message)s') | |
logging.debug('Start of program') | |
def factorial(n): | |
logging.debug('Start of factorial( %)' % (n)) | |
total = 1 |
Книги:
Работа с формами
Работа с формами в официальном руководстве для Django 2:
Добавление классов и атрибутов к ModelForm.