Skip to content

Instantly share code, notes, and snippets.

View luigiMinardi's full-sized avatar
🎯
Focusing

Luigi Minardi luigiMinardi

🎯
Focusing
View GitHub Profile
@luigiMinardi
luigiMinardi / format_mac_book.md
Created March 12, 2022 22:41
How to format a mac book

How to Format your Mac Book

I have a 2012 Mac that time to time get stuck in the loading screen or get a infinite white screen.

Cuz of that i already formated it 3 times, so now I'll make a guide of how to format your Mac Book. For everyone that needs it and for me who everytime that need to format again need to re-search everything another time cuz already forgot how to do it.

Anyway, lets go to the how to do everything that Mac says for you to do, and some others.

To Apple, the circle with a line through it, the Mac starts up to an Apple logo progress bar, the blank screen and probably some others is solved by macOS Recovery (press power button for 10s until your mac turns off then turn on and hold cmd + R). Then you repair your disk with the Disk Utility, if it don't work reinstall the macOS.

@luigiMinardi
luigiMinardi / resumo_python_oo.md
Created March 12, 2022 22:36
Resumo python Orientação a Objeto

O que é OO?

Opa, tudo certo? Pense nesses nomes dificeis como convensões que foram dadas pra nomear certas coisas dentro do código, não se preocupe muito se você sabe exatamente o nome dessas coisas, foque em conseguir escrever o código em si e saiba que vai sempre ter gente pra te ajudar no que precisar.

A respeito dos nomes vou te explicar alguns aqui:

*vou colocar entre parênteses o nome em inglês pra você :)

modulo (module)

@luigiMinardi
luigiMinardi / tutorial_django_rest_api_with_drf.md
Last active January 26, 2024 11:00
How to start a REST API with Django and DRF

How to start a REST API with Django and DRF

In this gist you will learn the basic to create a simple REST API with Django and Django REST Framework with a basic crud.

Create venv

python3 -m venv .venv

Activate venv

mac/linux