I hereby claim:
- I am lightsound on github.
- I am shimabu_it (https://keybase.io/shimabu_it) on keybase.
- I have a public key ASDFYCmRStJlCG6BT0Va_mVXGdluciP4Ct40JhkMf1xUkwo
To claim this, I am signing this object:
| import useSWR from "swr"; | |
| const useSharedState = (key: string, fallbackData: any) => { | |
| const { data, mutate } = useSWR(key, { fallbackData }); | |
| return [data, mutate]; | |
| }; | |
| const useCounter = () => { | |
| const [count, setCount] = useSharedState("counter", 0); | |
| const handleIncrement = () => { |
I hereby claim:
To claim this, I am signing this object:
| window.addEventListener('load', () => { | |
| /* initializer */ | |
| const menu = [...$(".global-menu")[0].children]; | |
| const lastIndex = menu.findIndex(v => v.className === "divider") - 1; | |
| const hasStreamParam = location.pathname.includes("stream"); | |
| $("#app-container").attr("data-stream", hasStreamParam); | |
| setStreamBtn(); | |
| setProjects(); | |
| /* event */ |
git checkout -b presentation-dev-branch
#
# Now develop your presentation content in this branch,
# committing as often as you want
# Then when you are finished, do the following:
#
git checkout master
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta charset="utf-8"> | |
| <title></title> | |
| <meta name="description" content=""> | |
| <meta name="author" content=""> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href=""> |