Skip to content

Instantly share code, notes, and snippets.

View djbrunoramon's full-sized avatar
👋
Olá!

Bruno Ramon djbrunoramon

👋
Olá!
View GitHub Profile
@djbrunoramon
djbrunoramon / mac-monterey.md
Created April 14, 2022 22:11 — forked from luizomf/mac-monterey.md
Comandos para aula de criação de ambiente Python no Mac OS Monterey
package app.config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.authentication.AuthenticationManager;
import org.springframework.security.authentication.AuthenticationProvider;
import org.springframework.security.authentication.ProviderManager;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
@djbrunoramon
djbrunoramon / ambiente-dev-ubuntu.sh
Created April 14, 2022 14:24 — 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
# Instalar pacotes a seguir
sudo apt install dkms make perl gcc build-essential git curl -y
# Instalar Python 3.10 (opcional)