Skip to content

Instantly share code, notes, and snippets.

View OscardR's full-sized avatar
💭
👾

Óscar Gómez Alcañiz OscardR

💭
👾
View GitHub Profile
@OscardR
OscardR / README.md
Last active June 24, 2019 21:26 — forked from jstcki/README.md
Swiss Cantons and Municipalities

Map of Switzerland with TopoJSON and map data from Swiss Maps. Cantons and municipalities are combined in a single TopoJSON file.

@OscardR
OscardR / esnextbin.md
Last active October 31, 2017 19:34
BinaryTree test in ESNext.bin
@OscardR
OscardR / esnextbin.md
Last active October 31, 2017 19:33
Gantt Chart made with ESNext.bin
@OscardR
OscardR / gist:c18006993695d8e5458b
Last active January 17, 2017 09:14
Python Request
# coding: utf8
#########################
# 1. Inicio del programa
#########################
print "\nINICIO"
'''
Problema 1
@OscardR
OscardR / p1ej12_v2.c
Last active December 24, 2015 05:39
Imprime N tablas de multiplicar calculadas en paralelo por N procesos.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
/* Estructura para crear un array de tuberías */
typedef struct tubo {
int p[2];
} tubo;
int main( int argc, char *argv[] ) {