Skip to content

Instantly share code, notes, and snippets.

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

Gonzalo Benoffi benoffi7

🏠
Working from home
View GitHub Profile
@benoffi7
benoffi7 / gist:8b1bc0477b43087924a43513359ff3a3
Created January 7, 2017 19:24
Documentación oficial de Android
Portal general de Android: https://developer.android.com/index.html
Portal de diseño: https://developer.android.com/design/index.html
Portal de desarrolladores: https://developer.android.com/develop/index.html
Portal de distribucion: https://developer.android.com/distribute/index.html
Consola de desarrolladores: https://play.google.com/apps/publish/
@benoffi7
benoffi7 / main.c
Created April 27, 2017 14:14
Ejercitación Parcial
#include <stdio.h>
#include <stdlib.h>
#include "pila.h"
float porcentaje(Pila p, int entero);
int main()
{
/*
printf("Hello world!\n");
@benoffi7
benoffi7 / ejemplo.json
Created May 29, 2017 18:53
Ejemplo 1 de JSON
{
"firstName": "John",
"lastName": "Smith",
"age": 25,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": 10021
},
@benoffi7
benoffi7 / main.c
Created August 27, 2018 16:33
Hey Jude by The Beatles con recursividad
#include <stdio.h>
#include <stdlib.h>
int main()
{
cantarEstribilloCompleto(2,0);
return 0;
}
void cantarNaNaNa(int limite, int vuelta)