Skip to content

Instantly share code, notes, and snippets.

View tgmarinho's full-sized avatar
馃捇
read my blog: tgmarinho.com

Thiago Marinho tgmarinho

馃捇
read my blog: tgmarinho.com
View GitHub Profile
import { gql } from "graphql-request";
// import { returningValues as genericValues } from "./payload";
import { returningValues as genericValues } from "./payload";
export interface IPage {
/** How many records should be returned on the page */
limit: number;
/** Which page should be displayed (starts with 1) */
page: number;
@tgmarinho
tgmarinho / git_submodules.md
Created January 9, 2023 18:45 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.
@tgmarinho
tgmarinho / private-npm-in-gh-actions.md
Created December 22, 2022 13:01 — forked from nandorojo/private-npm-in-gh-actions.md
Use private NPM packages in your GitHub actions

1 NPM_TOKEN

Add an NPM_TOKEN secret on GitHub. Get your secret key from the NPM dashboard.

2 Add a step to your action

- name: Authenticate with private NPM package
  run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
@tgmarinho
tgmarinho / generateTokenAddressMaping.js
Created November 18, 2022 18:03
generateTokenAddressMaping
const https = require("https");
const fs = require("fs");
const SKIP_PLATFORMS = [
"tron",
"sora",
"factom",
"elrond",
"osmosis",
"cosmos",
@tgmarinho
tgmarinho / generateTokenImageURI.js
Created November 18, 2022 18:01
generateTokenImageURI
const fs = require("fs");
const axios = require("axios");
const URLS = [
"https://tokens.uniswap.org",
"https://extendedtokens.uniswap.org",
"https://unsupportedtokens.uniswap.org",
"https://raw.githubusercontent.com/The-Blockchain-Association/sec-notice-list/master/ba-sec-list.json",
"https://api.coinmarketcap.com/data-api/v3/uniswap/all.json",
"https://tokens.coingecko.com/uniswap/all.json",
@tgmarinho
tgmarinho / order_obj_by_key.js
Created November 11, 2022 21:12
order object by key
const data = {
amount_marketplace: null,
amount: 500000000000000000000,
latest_settlement_offer_address: null,
released_at: null,
arbitrator_fee: 500,
marketplace: '0x0000000000000000000000000000000000000777',
split_marketplace: 1000,
refunded_at: null,
amount_arbitrator: null,
@tgmarinho
tgmarinho / .zsh
Created September 21, 2022 11:50
.zsh
# Fig pre block. Keep at the top of this file.
[[ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]] && builtin source "$HOME/.fig/shell/zshrc.pre.zsh"
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
# export ANDROID_HOME=~/Android/Sdk
# export PATH="$PATH:$ANDROID_HOME/tools"
# export PATH="$PATH:$ANDROID_HOME/platform-tools"
.fadeinDown {
-webkit-animation: fadeInDown 500ms ease-in-out; /* Chrome, Safari, Opera */
animation: fadeInDown 500ms ease-in-out;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes fadeInDown {
0% {
@tgmarinho
tgmarinho / displayChallengePeriod.ts
Created August 22, 2022 13:47
Se usar IIFE voc锚 consegue ter a infer锚ncia funcionando
import { DateTime, DurationLikeObject } from 'luxon'
const DAYS_IN_SECONDS = 86400
const HOURS_IN_SECONDS = 3600
const MINUTES_IN_SECONDS = 60
/*
const getUnit = (challengePeriod: number): keyof DurationLikeObject => {
let unit: keyof DurationLikeObject = 'days'
@tgmarinho
tgmarinho / extensions.txt
Created July 7, 2022 19:04
vs code extensions - >vsc import
ambar.bundle-size
andys8.jest-snippets
apollographql.vscode-apollo
aslamanver.vsc-export
bierner.markdown-preview-github-styles
bradlc.vscode-tailwindcss
carbonid1.emmet-jss
christian-kohler.npm-intellisense
CoenraadS.bracket-pair-colorizer-2
dbaeumer.vscode-eslint