Skip to content

Instantly share code, notes, and snippets.

View itallonardi's full-sized avatar
🎯
Focusing

Itallo Nardi itallonardi

🎯
Focusing
View GitHub Profile
@itallonardi
itallonardi / main.py
Created June 7, 2024 23:16
Estudo de Caso para Disciplina do Curso de Bacharelado em Ciência de Dados e Inteligência Artificial
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from scipy.stats import linregress
data = {
'Subdistritos': ['Nossa Senhora do Ó', 'Casa Verde', 'Vila Formosa', 'Santana', 'Barra Funda', 'Jardim Paulista', 'Santo Amaro', 'Lapa', 'Pinheiros'],
'Numero_Estabelecimentos': [16, 30, 35, 70, 90, 120, 160, 237, 378],
'Deposito_Medio_Mensal': [14, 16, 19, 30, 31, 33, 35, 43, 50]
}
@itallonardi
itallonardi / .hyper.js
Created May 7, 2024 01:52
My .hyper.js configuration file
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@itallonardi
itallonardi / .zshrc
Created September 17, 2020 19:41
My ZSH Configuration File
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/home/vader/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
@itallonardi
itallonardi / settings.json
Last active April 24, 2024 20:09
My VSCode Configuration file
{
"workbench.iconTheme": "vscode-great-icons",
"terminal.integrated.shell.osx": "/bin/zsh",
"powermode.enabled": true,
"powermode.presets": "magic",
"powermode.shake.intensity": 0,
"powermode.combo.counterEnabled": "hide",
"powermode.combo.timerEnabled": "hide",