Skip to content

Instantly share code, notes, and snippets.

View fullstackjedi's full-sized avatar

Emmax fullstackjedi

View GitHub Profile
import { PresenceFacepile, PresenceObserver } from '@cord-sdk/react'
import { useMemo } from 'react'
import { useWorkspaceState } from '@pulse-modules/workspace/state/use-workspace-state'
import { TEntity, TEntityRecord, TEntityView, TEntityViewField } from '@pulse-types/entities'
import {
CountryCellEditor,
CurrencyCellEditor,
@fullstackjedi
fullstackjedi / countries.json
Created July 15, 2021 09:37
JSON of country codes, dial codes and their flags
[
{
"name":"Afghanistan",
"flag":"🇦🇫",
"code":"AF",
"dial_code":"+93"
},
{
"name":"Åland Islands",
"flag":"🇦🇽",
/* http://meyerweb.com/eric/tools/css/reset/
v2.0-modified | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
@fullstackjedi
fullstackjedi / es6-import-cheat-sheet.md
Created December 10, 2019 11:07 — forked from samueljseay/es6-import-cheat-sheet.md
ES6 exports / imports cheat sheet
// default exports
export default 42;
export default {};
export default [];
export default (1 + 2);
export default foo;
export default function () {}
export default class {}
export default function foo () {}