Skip to content

Instantly share code, notes, and snippets.

View Tsugami's full-sized avatar

Yslan Ramos Tsugami

  • Brazil
  • 06:25 (UTC -03:00)
View GitHub Profile
import { clearDatabase, closeDatabase, connectDatabase } from '../../../../../tests/mongo';
import { mutate } from '../../../../../tests/app';
import { createUserFixture } from '../../../../../tests/user.factory';
import ERRORS from '../../../../errors';
beforeAll(async () => await connectDatabase());
beforeEach(async () => {
await clearDatabase();
@Tsugami
Tsugami / depthEpisodeSum.ts
Last active December 3, 2021 15:39
MONGO - calculate the total of items from one array and another from another array
// Data
// [
// {
// "key": 1,
// "seasons": [
// {
// episodes: [
// 3,
// 3
// ]
<script>
const a = document.querySelector("table tbody");
const getPersons = async (count = 30) => {
const response = await fetch(
"https://randomuser.me/api/?results=" + count
);
const data = await response.json();
return data.results.map((person) => {
@Tsugami
Tsugami / bulk.ts
Last active December 1, 2021 17:50
export enum BulkTypes {
SEQUENCE = 'SEQUENCE',
NOT_SEQUENCE = 'NOT_SEQUENCE',
}
interface NotSequenceValue {
numbers: number[];
type: BulkTypes.NOT_SEQUENCE;
}
const watchedEpisodesNow = (
media: IMedia,
season: ISeason,
episode: IEpisode,
watched: WatchedDocument | null,
sawPrevius: boolean,
): [IEpisode[], SeasonWatch[]] => {
if (!watched) {
// CREATE NEW WATCHED
@Tsugami
Tsugami / follow-mutation.test.ts
Last active November 3, 2021 17:34
follow mutation test
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();
@Tsugami
Tsugami / i18next-types.ts
Last active June 10, 2022 16:42
i18next types
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;
@Tsugami
Tsugami / README.md
Last active November 1, 2021 21:42
Learn Programming With Discord Bots - DiscordJS
@Tsugami
Tsugami / MongooseNextAuthAdapter.ts
Created October 15, 2021 21:40
MongooseNextAuthAdapter.
import mongoose, { Types, Document } from 'mongoose';
import {
Adapter,
AdapterUser,
AdapterSession,
VerificationToken as AdapterVerificationToken,
} from 'next-auth/adapters';
import { Account as AdapterAccount } from 'next-auth';