This file contains 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
Traffic Light* | |
Green* | |
timer -> Yellow | |
Yellow | |
timer -> Red | |
Red | |
timer -> Green |
This file contains 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
Traffic Light* | |
Green* | |
timer -> Yellow | |
Yellow | |
timer -> Red | |
Red | |
timer -> Green |
This file contains 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
Income Calculator* | |
Steps* | |
incomeType* | |
SUBMIT if employed by other -> income | |
SUBMIT -> frequency | |
frequency | |
SUBMIT -> income | |
income |
This file contains 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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
I hereby claim:
- I am with-heart on github.
- I am withheart (https://keybase.io/withheart) on keybase.
- I have a public key ASAbfkkWDJS1LCfX8i5BssCIYzlkL8qZORlC0Xr57nj3cwo
To claim this, I am signing this object:
This file contains 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
// ==UserScript== | |
// @name Hashnode Editor Toggle | |
// @namespace https://github.com/with-heart | |
// @author with-heart <[email protected]> | |
// @version 0.0.6 | |
// @description Toggle between the Write and Preview tabs in the Hashnode editor | |
// @match https://hashnode.com/draft/* | |
// @updateURL https://gist.githubusercontent.com/with-heart/78e459cc0ba2df21302153e26ea9f6b2/raw/hashnode-editor-toggle.js | |
// @downloadURL https://gist.githubusercontent.com/with-heart/78e459cc0ba2df21302153e26ea9f6b2/raw/hashnode-editor-toggle.js | |
// ==/UserScript== |
- Channels
- List
- 42 channels total
- Grouped by Discord category
- Legend
- 🟢 = keep
- 🟡 = keep if someone takes ownership
- 🟠 = keep but move
- 🔴 = archive
- List
- ❓ = not sure
This file contains 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 { useEffect, useState } from 'react' | |
export const Component = () => { | |
const [whatevers, setWhatevers] = useState([]) | |
const [isLoading, setIsLoading] = useState(false) | |
const [error, setError] = useState() | |
useEffect(() => { | |
const loadWhatevers = async () => { | |
// show loading status |