Skip to content

Instantly share code, notes, and snippets.

Avatar

Miguel González Duque miguelgondu

View GitHub Profile
@miguelgondu
miguelgondu / Ejercicio20.ipynb
Created October 2, 2017 17:25
Solución del problema 20
View Ejercicio20.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View All_groups_of_order_n.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View A couple metrics on generalrepytivity.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Blogpost_sc2parser_1.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View blogpost_on_priors.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Aarhus_presentation_CHI.md

Presentation - Center for Hybrid Intelligence - 27/01/20

This document holds some relevant links for the presentation that will take place on the 27th of Jan. in the Center for Hybrid Intelligence, at Aarhus University.

About myself - previous work

Procedural Content Generation

@miguelgondu
miguelgondu / plot_graph.py
Created November 3, 2019 15:58
Random graph plotter
View plot_graph.py
import click
import matplotlib.pyplot as plt
import numpy as np
def parse_string_to_int(string):
chars_as_ints = [ord(char) for char in string]
string_as_int = sum(chars_as_ints)
return string_as_int
def create_random_points(string=None):