List of helpful shortcuts for faster coding
If you have any other helpful shortcuts, feel free to add in the comments of this gist :)
| btn Button chk CheckBox ckl CheckedListBox | |
| cmb ComboBox dtp DateTimePicker lbl Label | |
| llb LinkLabel lst ListBox lvw ListView | |
| mtx MaskedTextBox cdr MonthCalendar icn NotifyIcon | |
| nud NumeircUpDown pic PictureBox prg ProgressBar | |
| rdo RadioButton rtx RichTextBox txt TextBox | |
| tip ToolTip tvw TreeView wbs WebBrowser | |
| 容器 | |
| flp FlowLayoutPanel grp GroupBox pnl Panel |
3 августа 2017, RamblerFront& meetup #2, Москва
В коде начинающих программистов обычно много ошибок. Постепенно мы набираемся опыта, код становится надежнее, покрывается тестами, и нам кажется, что ошибки в нашем коде практически исключены.
Но фронтенд — это неконтролируемая среда и произойти может что угодно. Доклад о том, как начать использовать ошибки в свою пользу.
Let's say alice is a github.com user, with 2 or more private repositories repoN.
For this example we'll work with just two repositories named repo1 and repo2
https://github.com/alice/repo1
https://github.com/alice/repo2
You need to be to pull from these repositories without entering a passwords probably on a server, or on multiple servers.
You want to perform git pull origin master for example, and you want this to happen without asking for a password.
| # General | |
| POWERLEVEL9K_MODE='nerdfont-complete' | |
| POWERLEVEL9K_COLOR_SCHEME='dark' | |
| # Prompts | |
| if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then | |
| POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir virtualenv vcs) | |
| else | |
| POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(root_indicator dir virtualenv vcs) | |
| fi |
| import { useState, useEffect, useRef } from 'react'; | |
| // import { HideUntilLoaded } from 'react-animation'; | |
| import PropTypes from 'prop-types'; | |
| import Spinner from '../spinner/Spinner'; | |
| import ErrorMessage from '../errorMessage/ErrorMessage'; | |
| import MarvelServices from '../services/MarvelServices'; | |
| import './charlist.scss'; |