Skip to content

Instantly share code, notes, and snippets.

View LeonardoPizzoquero's full-sized avatar
👨‍💻
Developing awesome things

Leonardo Pizzoquero LeonardoPizzoquero

👨‍💻
Developing awesome things
View GitHub Profile
@LeonardoPizzoquero
LeonardoPizzoquero / main.py
Last active April 14, 2021 14:18
Python script to convert excel file (xlsx) into languages multiple files (JSON), use the files on i18next library - Languages: en-US, es-ES and pt-BR
import pandas as pd
import re
import json
import openpyxl
import os
import codecs
df = pd.read_excel('./translations.xlsx', sheet_name = 0)
titles = []
@LeonardoPizzoquero
LeonardoPizzoquero / main.c
Created February 20, 2019 14:37
HonestTightAggregators created by LeonardoPizzoqu - https://repl.it/@LeonardoPizzoqu/HonestTightAggregators
#include <stdio.h>
#include <math.h>
int main(void) {
/*** URI Desafio 1010 ***/
int cod1, np1, cod2, np2;
float val1, val2, total;
@LeonardoPizzoquero
LeonardoPizzoquero / main.c
Created February 20, 2019 14:36
HonestTightAggregators created by LeonardoPizzoqu - https://repl.it/@LeonardoPizzoqu/HonestTightAggregators
#include <stdio.h>
#include <math.h>
int main(void) {
/*** URI Desafio 1010 ***/
int cod1, np1, cod2, np2;
float val1, val2, total;
@LeonardoPizzoquero
LeonardoPizzoquero / Bhaskara.c
Last active February 20, 2019 13:52
HonestTightAggregators created by LeonardoPizzoqu - https://repl.it/@LeonardoPizzoqu/HonestTightAggregators
#include <stdio.h>
#include <math.h>
int main(void) {
float a,b,c,delta;
printf("Digite o valor de a: \n");
scanf("%f", &a);