Skip to content

Instantly share code, notes, and snippets.

View caiohsfar's full-sized avatar
🏠
Working from home

Caio Farias caiohsfar

🏠
Working from home
  • Accenture
  • Recife-PE
View GitHub Profile
@caiohsfar
caiohsfar / perguntas-jornada-culinaria.csv
Last active February 18, 2024 01:50
Perguntas - Jornada Culinária: references/question/correctAnswer/alternativeA/alternativeB/alternativeC/alternativeD/level
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 4.
references,question,correctAnswer,alternativeA,alternativeB,alternativeC,alternativeD,level
"(1) Galinhada tradicional: aprenda a fazer a receita clássica. https://guiadacozinha.com.br/receitas/galinhada-tradicional/.
(2) Galinhada – Wikipédia, a enciclopédia livre. https://pt.wikipedia.org/wiki/Galinhada.
","Qual é o ingrediente que dá cor à “Galinhada”, prato típico de origem bandeirante?",A,Açafrão,Pimenta-do-reino,Cebola,Alho,1
"(1) Maniçoba: origem, ingredientes e tempo de preparo. https://www.mundoboaforma.com.br/manicoba-origem-ingredientes-e-tempo-de-preparo/.
(2) Maniçoba é um prato de origem indígena e comum na ... - Agro20. https://www.agro20.com.br/manicoba/.
","Qual é o ingrediente principal da “Maniçoba”, prato típico amazônico?",B,Peixe,Mandioca brava,Carne de sol,Tucumã,1
"(1) 12 comidas típicas do Nordeste para você provar em sua viagem. https://www.melhoresdestinos.com.br/comidas-tipicas-nordeste.html.
(2) Comida típica de Pernambuco: prove 22 pratos deliciosos. https://www.fuiserviajante.c
@caiohsfar
caiohsfar / gist:5481377df31c0bd770c47d00e487bb67
Created May 21, 2022 16:22
Geojson dos estados brasileiros
This file has been truncated, but you can view the full file.
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "UF_05": "AC", "MICRO": "BRASILEIA", "MESO": "VALE DO ACRE", "REGIAO": "Norte", "NOME_UF": "Acre", "GEOCODIGO": "12" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.800983150850584, -7.111457753361378 ], [ -73.737625150791587, -7.134317253382619 ], [ -72.90061215001208, -7.436948253664468 ], [ -72.588010149720958, -7.550250253770059 ], [ -72.3029271494554, -7.584564753801942 ], [ -72.168962149330582, -7.600226253816572 ], [ -71.957814649133979, -7.624874753839549 ], [ -71.381112148596912, -7.691940753901918 ], [ -71.087928648323896, -7.725894253933575 ], [ -70.515258647790461, -7.791927253995141 ], [ -70.132605647434161, -7.83582675403602 ], [ -70.051806147358889, -7.847003754046341 ], [ -69.801148147125446, -8.060750754245419 ], [ -69.442709146791572, -8.366957254530575 ], [ -69.212413146577092, -8.56399675471414 ], [ -68.9223356463070
@caiohsfar
caiohsfar / gist:37bcc99fbef183a4ad9ba4f8e3b76f79
Created May 21, 2022 16:21
População e PIB dos estados brasileiros
Sigla;Estado;Populacao;PIB
AC;Acre;732.793;8.477.000
AL;Alagoas;3.120.922;24.575.000
AP;Amap�;668.689;8.266.000
AM;Amazonas;3.480.937;59.779.000
BA;Bahia;14.021.432;154.340.000
CE;Ceara;8.448.055;77.865.000
DF;Distrito Federal;2.562.963;149.906.000
ES;Esp�rito Santo;3.512.672;82.122.000
GO;Goi�s;6.004.045;97.576.000
@caiohsfar
caiohsfar / AVL.py
Last active February 18, 2024 01:49
class Node():
def __init__(self, key):
self._p = None
self._right = None
self._key = key
self._left = None
def get_key(self):
return self._key
class Node():
def __init__(self, key, cor):
self._p = None
self._right = None
self._key = key
self._left = None
self._cor = cor
def get_cor(self):
return self._cor