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
/* | |
dado o seguinte cenário, um objeto que pode ter valores aninhados até 2 níveis, | |
deve-se remover a chave do primeiro nível se alguma das chaves aninhadas | |
for (undefined ou {} ou '' ou null) - 0 não conta | |
*/ | |
const isObject = (v) => typeof v === 'object' && !Array.isArray(v) | |
const isEmptyObject = (obj) => isObject(obj) && (Object.keys(obj).length === 0) | |
const isNull = (v) => v === '' || v === null || v === undefined; |
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
FROM node:lts as builder | |
ENV NODE_ENV=production | |
WORKDIR /app | |
COPY package.json /app | |
COPY yarn.lock /app | |
COPY tsconfig.base.json /app | |
COPY /apps /app/apps |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
</head> | |
<body> |
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 { FieldPolicy } from '@apollo/client'; | |
type TExistingShortMedia<TNode> = { | |
edges: TNode[]; | |
_search: string; | |
totalCount: number; | |
count: number; | |
totalPages: number; | |
hasNextPage: boolean; | |
}; |
- https://twitter.com/camelouu/status/1409886433515606027
- https://www.youtube.com/watch?v=kjIgcgqqh38
- https://www.youtube.com/watch?v=-dZ0CmEDG9w
- https://www.swyx.io/learn-in-public/
- https://twitter.com/sseraphini/status/1382330962273525760
- https://gist.github.com/sibelius/d8cf0d8b4a68bc36952a37006bb84109
- https://gist.github.com/sibelius/a347a5a49d3731eab27bdc99b7af478e
- https://twitter.com/NannoKa/status/1447594684793212939?t=qSSC3Cj5JOfxvCBrOUAByQ&s=19
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 mongoose, { Types, Document } from 'mongoose'; | |
import { | |
Adapter, | |
AdapterUser, | |
AdapterSession, | |
VerificationToken as AdapterVerificationToken, | |
} from 'next-auth/adapters'; | |
import { Account as AdapterAccount } from 'next-auth'; |
https://discordjs.guide/preparations/#installing-node-js
-
What is Events/Listeners?
-
How to create commands with Message Event
-
How to create an command handler
-
How to separate commands in files
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
type TokenTranslation<Namespaces, R extends boolean = false> = Extract< | |
keyof { | |
[Key in Extract<keyof Namespaces, string> as Namespaces[Key] extends | |
| string | |
| number | |
? `${Key}` | |
: `${Key}${R extends true ? "." : ":"}${TokenTranslation< | |
Namespaces[Key], | |
true | |
>}`]: unknown; |
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 { makeID, mutate } from '../../../../../tests/app'; | |
import { clearDatabase, closeDatabase, connectDatabase } from '../../../../../tests/mongo'; | |
import ERRORS from '../../../../errors'; | |
import { createUserFixture, createUserFixtureAndToken } from '../../../../../tests/user.factory'; | |
import folllowModel from '../../folllow.model'; | |
beforeAll(async () => await connectDatabase()); | |
beforeEach(async () => { | |
await clearDatabase(); |