Skip to content

Instantly share code, notes, and snippets.

import requests
import json
import openpyxl
import pandas as pd
# Token da API do Twitter - Bearer Token
BEARER_TOKEN = ""
query = "" # Coloca aqui a palavra/frase que quer procurar.
@geraldoam
geraldoam / config.ahk
Last active June 6, 2022 03:20
minha config do teclado husky
; #InstallKeybdHook
; ABNT2 - Remapeia WASD arrows com shift direito
;
; Segure o shift direito do teclado e as seguinte teclas:
; W - Cima
; A - Esquerda
; S- Baixo
; D - Direita
;
@geraldoam
geraldoam / status_code.txt
Created January 12, 2022 13:49
Status code copypasta
Categorias:
1xx - Informational
2xx - Success
3xx - Redirection
4xx - Client Error
5xx - Server Error
Alguns status code muito utilizados:
@geraldoam
geraldoam / dev.sh
Created December 16, 2021 16:33
Setup services for development in WSL.
#!/bin/bash
sudo service postgresql start
sudo service docker start
sudo service mysql start
@geraldoam
geraldoam / .prettierrc
Last active December 21, 2021 17:17
my prettier
{
"semi": true,
"tabWidth": 2,
"singleQuote": true
}
@geraldoam
geraldoam / commit.md
Last active July 11, 2021 16:15
default commit

type

  • feat: The new feature being added to a particular application
  • fix: A bug fix (this correlates with PATCH in SemVer)
  • style: Feature and updates related to styling
  • refactor: Refactoring a specific section of the codebase
  • test: Everything related to testing
  • docs: Everything related to documentation
  • chore: Regular code maintenance

scope

@geraldoam
geraldoam / tsconfig.json
Last active July 11, 2021 16:15
tsconfig from waldemar
{
"compilerOptions": {
"target": "es2019",
"moduleResolution": "node",
"module": "commonjs",
"lib": ["es2019"],
"sourceMap": true,
"outDir": "dist",
"strict": true,
"noImplicitAny": true,