- Add 1-3 teaspoons of coffee and the desired amount of sugar in a high glass. Then cover the mix with water.
- Use tha shaker to make foam until it looks nice.
Visit https://MYCHANNEL.slack.com/admin/invites and run
const emails = []
Array.from($('.email')).forEach(invite => emails.push(invite.innerText))
copy(emails)| let docs, toCopy | |
| docs = Array.from($('.hp-list-item-doc')) | |
| toCopy = '' | |
| docs.forEach(doc => { | |
| // let name = doc.querySelector('.hp-list-item-title').firstChild.innerText | |
| toCopy += ` | |
| ` + doc.href |
| import { ref } from 'vue'; | |
| const useCounterUp = (initialVaue = 0) => { | |
| const counter = ref(initialVaue); | |
| const increment = () => counter.value += 1; | |
| return { counter, increment }; | |
| }; | |
| const useCounterDown = (initialVaue = 0) => { | |
| const counter = ref(initialVaue); |