Skip to content

Instantly share code, notes, and snippets.

View Shanathory's full-sized avatar
🎮

Damian Shnary Shanathory

🎮
View GitHub Profile
@webbertakken
webbertakken / .gitattributes
Last active July 16, 2024 08:46
.gitattributes for Unity projects
#
# Git attributes for Unity projects
#
# Compiled by the GameCI community under the MIT license - https://game.ci
#
# Latest version at https://gist.github.com/webbertakken/ff250a0d5e59a8aae961c2e509c07fbc
#
# Ensure that text files that any contributor introduces to the repository have their line endings normalized
* text=auto
@astrojuanlu
astrojuanlu / juego-vida.py
Created November 6, 2012 16:40
Juego de la vida de Conway en Python
# coding: utf-8
"""Juego de la vida de Conway.
Autor: Juan Luis Cano <juanlu001@gmail.com>
El tablero es un array de NumPy, donde 0 significa célula muerta y 1 célula
viva. Se muestra una animación con matplotlib.
"""