Skip to content

Instantly share code, notes, and snippets.

View usmarcv's full-sized avatar

Márcus Vinícius usmarcv

  • University of São Paulo
  • São Carlos - São Paulo, Brazil
  • LinkedIn in/marcusvlc
View GitHub Profile
@luizomf
luizomf / ambiente-dev-ubuntu-curso-python.sh
Created October 31, 2022 01:23
Instalação ambiente dev Ubuntu 22 do curso de Python
#!/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
#include <bits/stdc++.h>
#define endl '\n'
#define oo 987654321
#define mod 1000000007
#define _ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
typedef long long ll;
using namespace std;
int main(){_