- 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
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 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. | |
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
; #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 | |
; |
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
Categorias: | |
1xx - Informational | |
2xx - Success | |
3xx - Redirection | |
4xx - Client Error | |
5xx - Server Error | |
Alguns status code muito utilizados: |
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
#!/bin/bash | |
sudo service postgresql start | |
sudo service docker start | |
sudo service mysql start |
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
{ | |
"semi": true, | |
"tabWidth": 2, | |
"singleQuote": true | |
} |
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es2019", | |
"moduleResolution": "node", | |
"module": "commonjs", | |
"lib": ["es2019"], | |
"sourceMap": true, | |
"outDir": "dist", | |
"strict": true, | |
"noImplicitAny": true, |