MongoDB Crash Course 2022 < TODO: Add Video Link
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
<script> | |
// since Child is wrapped inside VideoCallFunctionProvider, | |
// we can access the context value here | |
import { get } from '.VideoCallFunctionProvider.svelte'; | |
const { triggerVideoCall } = get() | |
</script> | |
<button on:click={() => triggerVideoCall()}> | |
Call John Doe |
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
[core] | |
editor = \"C:\\Users\\WALLEL\\AppData\\Local\\Programs\\Microsoft VS Code\\Code.exe\" --wait | |
autocrlf = true | |
[user] | |
name = Gyen Abubakar | |
email = <email> | |
[diff] | |
tool = p4merge | |
[difftool "VSCode"] | |
cmd = "code --wait --diff $LOCAL $REMOTE" |
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
// example object | |
const fakeObj = { | |
key1: { | |
prop1: true, | |
prop2: 34, | |
prop3: 'Hello', | |
prop4: [], | |
}, | |
key2: { | |
prop1: true, |