Skip to content

Instantly share code, notes, and snippets.

View hootlex's full-sized avatar

Alex Kyriakidis hootlex

View GitHub Profile

How to make Frappe

  1. Add 1-3 teaspoons of coffee and the desired amount of sugar in a high glass. Then cover the mix with water.

  1. Use tha shaker to make foam until it looks nice.

@hootlex
hootlex / export-slack-email-invites.md
Last active November 22, 2017 14:44
How to export all email invites from Slack
@hootlex
hootlex / getPaperLinks.js
Created May 13, 2019 08:40
Get links for all Dropbox Paper files under a folder
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);