- Представься: краткая информация о себе – имя, место работы, чем занимаешься, можно фото для тех, кто будет смотреть слайды отдельно
- План доклада: несколько пунктов (лучше не более 5) о чём будет доклад. Это могут быть главы доклада (кстати, составление плана может помочь грамотнее структурировать доклад ещё при создании)
- Зачем: кратко рассказать, чем то, о чем рассказываешь в докладе, может быть полезно остальным – и разработчикам, и руководителям, и клиентам (можно акцентироваться на аудитории конкретной конфы – например если там есть дизайнеры, бэкенды, то упомянуть, что они могут узнать из доклада)
- Итоги: в конце доклада ещё раз пройтись по плану и подвести итог по каждому пункту – что узнали, чему научились
- Контакты: как слушатель и тот кто смотрит слайды может связаться и задать вопрос
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
| async function processPens(pens) { | |
| for (let pen of pens) { | |
| await processPen(pen); | |
| } | |
| } | |
| async function processPen(pen) { | |
| await page.goto(url); | |
| await page.waitForSelector(FORK_SELECTOR); | |
| await page.click(FORK_SELECTOR); |
Amplifr’s rules for landing pages created by outsource.
I think I just found the easiest and cleanest way to add precise dates to my bash prompt:
PS0=">>> \$(date +%T.%3N)\\n$PS0"
PROMPT_COMMAND='echo "<<<" $(date +%T.%3N);'$PROMPT_COMMAND
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
| import { useState, useCallback } from "react"; | |
| function useToggle(initialValue = false){ | |
| // State with initial boolean value (true/false) | |
| const [state, setState] = useState(initialValue); | |
| // Let's create a toggle function | |
| // This works, but we're using the state value from above | |
| // instead of the current state. Usually they are the same, | |
| // but if this hook was triggered multiple times rapidly then |
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
| # Path for openSuSE – may be different in other distributions | |
| source /usr/share/bash-completion/completions/git-prompt.sh | |
| # taken from https://github.com/qupada/git-bashrc/blob/master/git-bashrc | |
| _in_git_repo () { | |
| # Check the current dir is actually a repository | |
| git status &> /dev/null || return 2 | |
| # If we are not on a branch we will get annoying errors if we don't do this check | |
| git branch | grep -qE '^\* \((no branch|detached from .*)\)' && return 1 | |
| return 0 |
OlderNewer
