Skip to content

Instantly share code, notes, and snippets.

View Maia1111's full-sized avatar
🔏
Ligado!

Rogerio Maia Maia1111

🔏
Ligado!
  • Sinop-MT
View GitHub Profile
@Maia1111
Maia1111 / nutrilab.md
Last active March 29, 2023 03:13
Projeto Nutrilab PythonFull

CODIGO PROJETO NUTRILAB PYTHONFULL

Aula 1

Acesse o material diretamente pelo Notion, segue o link:

https://grizzly-amaranthus-f6a.notion.site/PYSTACK-WEEK-4-0-AULA-01-5a288e9287584eceb44482dc844f2244

@Maia1111
Maia1111 / settings.json
Created December 17, 2022 17:49 — forked from luizomf/settings.json
Configuração do VS Code para Python e Django.
{
"window.zoomLevel": 0,
"python.languageServer": "Pylance", // ms-python.vscode-pylance
"python.testing.unittestEnabled": false, // ms-python.python
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [], // -x to bail
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.pylintArgs": [
"--load-plugins=pylint_django",
@Maia1111
Maia1111 / ambiente-dev-python-linux.md
Last active December 17, 2022 17:05 — forked from luizomf/ambiente-dev-ubuntu.sh
Ambiente de desenvolvimento Python no Ubuntu - Com VS Code, Google Chrome, ZSH, Oh-my-zsh, zsh-syntax-highlighting, zsh-autosuggestions e spaceship prompt.
#!/bin/bash
# Executar comandos a seguir para atualizar os pacotes
sudo apt update -y
sudo apt upgrade -y
# Só o Python
sudo apt install python3.10-full python3.10-dev -y
# Instalar pacotes a seguir
@Maia1111
Maia1111 / Git_Comandos_gerais_Top.md
Last active April 16, 2022 13:45
Principais Comandos Git Hub- top

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

@Maia1111
Maia1111 / office-no-linux.md
Last active February 3, 2022 15:55
instalar Office (OnlyOfifice) no linux peloterminal

Instalar OnlyOficce Pelo terminal

Passos:

1- Abrir o terminal

    use as teclas CTRL + ALT + T

2- Digitar o comando no terminal

@Maia1111
Maia1111 / inverte.md
Last active November 22, 2022 12:44
Como inverter um texto em Python

Como inverter um texto em Python

def inverte_texto(texto):
    return texto[::-1]