Skip to content

Instantly share code, notes, and snippets.

View lidymonteiro's full-sized avatar
😜

Lidy Monteiro lidymonteiro

😜
View GitHub Profile
@cuducos
cuducos / data.csv
Last active February 23, 2022 15:43
Porcentagem de votos em Bolsonaro no 2º turno de 2018, por município (apenas os com mais de 100.000 habitantes)
Porcentagem de votos em Bolsonaro (2º turno - 2018) Município UF
15.4083557181231 CRATO CE
17.4993648911847 PARINTINS AM
18.2141640486014 IGUATU CE
18.9022837888431 ITAPIPOCA CE
20.8163619031112 PAULO AFONSO BA
22.6305304061384 CODÓ MA
23.8899617526168 JUAZEIRO DO NORTE CE
24.0801281633823 CAXIAS MA
24.2147907626013 CAMETÁ PA
@rponte
rponte / using-uuid-as-pk.md
Last active March 10, 2025 16:29
Não use UUID como PK nas tabelas do seu banco de dados

Pretende usar UUID como PK em vez de Int/BigInt no seu banco de dados? Pense novamente...

TL;TD

Não use UUID como PK nas tabelas do seu banco de dados.

Um pouco mais de detalhes

@nrollr
nrollr / MongoDB_macOS_Sierra.md
Last active February 13, 2025 10:55
Install MongoDB on Sierra using Homebrew

Install MongoDB on macOS Sierra

This procedure explains how to install MongoDB using Homebrew on macOS Sierra 10.12.
Official MongoDB install documentation: here

Install Homebrew

  • Installing Homebrew is effortless, open Terminal and enter :
    $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
@briankung
briankung / Learning Object Oriented Python.md
Last active September 7, 2023 13:24
Learning Object Oriented Python

Learning Object Oriented Python

I wrote this as a guide for a financial analyst friend of mine looking to learn Python. He is already fairly well versed in doing Project Euler problems in Ruby. All italicized text is for the benefit of any other readers, such as yourself.

Each section is divided into a short resource (10 minutes or less), a long resource (days to weeks or more), and a challenge.

~

So what you're looking to do is to be able to recreate financial models in code. And other types of models. This is a noble pursuit.