Skip to content

Instantly share code, notes, and snippets.

View Tsugami's full-sized avatar

Yslan Ramos Tsugami

  • Brazil
  • 22:52 (UTC -03:00)
View GitHub Profile
Write-Output "Teste teste" >> teste.txt
@Tsugami
Tsugami / binary-tree-type.ts
Created June 13, 2022 21:33
binary tree in typescript type system
type Equal<L, R> = L extends R ? true : false;
type GreaterThan<L, R, C extends number[] = []> = L extends R
? false
: C["length"] extends L
? false
: C["length"] extends R
? true
: GreaterThan<L, R, [...C, 1]>;
interface INode<V extends number | null, L, R> {
@Tsugami
Tsugami / README.md
Last active June 3, 2022 19:35
Change MHFrontier hosts Batch file

Batch file to update the hosts file with MHF addresses

How to use:

  1. Copy this file to your machine
  2. open cmd in the folder you pasted the file
  3. Run the below command in cmd to setup your a server
setup.bat 26.220.184.112 pewpewdojo-server
@Tsugami
Tsugami / .prettierrc
Created May 14, 2022 14:06
Setup my prettier config
{
"semi": true,
"tabWidth": 2,
"useTabs": false,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"jsxSingleQuote": true,
"jsxBracketSameLine": true,
"arrowParens": "always",
import { useCallback, useEffect, useMemo, useReducer } from 'react';
import { io, Socket } from 'socket.io-client';
export enum SocketStatus {
CONNECTING = 'CONNECTING',
CONNECTED = 'CONNECTED',
DISCONNECTED = 'DISCONNECTED',
ERROR = 'ERROR',
RECONNECT = 'RECONNECT',
CONNECT_ERROR = 'CONNECT_ERROR',
@Tsugami
Tsugami / source.ts
Last active December 29, 2021 02:31
codemod to replace Array.each to for-in in javascript
/**
* Paste or drop some JavaScript here and explore
* the syntax tree created by chosen parser.
* You can use all the cool new features from ES6
* and even more. Enjoy!
*/
const name = 1
const description = 'Yo ' + name + '! How are you doing? ' + 1
@Tsugami
Tsugami / README.md
Last active December 24, 2021 23:48
My first codemod!
import React from 'react';
import { render, fireEvent, waitFor } from '@testing-library/react-native';
import { LoginForm } from './LoginForm';
import { withTheme } from '../../../../tests/withTheme';
import { VALIDATION_ERROR_MESSAGES } from '../../../../Constants';
jest.mock('@expo/vector-icons', () => ({
Ionicons: '',
AntDesign: '',
}));
export const CAST_LIST_FIELDS = gql`
${CAST_FIELDS}
fragment CAST_LIST_FIELDS on Media {
cast(first: 10) {
edges {
node {
id
...CAST_FIELDS
}
}
declare function rename<
P extends string,
P2 extends string,
O extends object,
Key extends keyof O
>(
prefix: P,
newPrefix: P2,
obj: O
): {