mirror of
https://github.com/osmarks/website
synced 2025-08-30 01:07:57 +00:00
initial commit
This commit is contained in:
25
experiments/game-of-life/index.html
Executable file
25
experiments/game-of-life/index.html
Executable file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Game of Life V2
|
||||
description: Obligatory (John Conway's) Game of Life implementation.
|
||||
slug: gol
|
||||
---
|
||||
<style>
|
||||
td.on {
|
||||
background: white;
|
||||
}
|
||||
td.off {
|
||||
background: black;
|
||||
}
|
||||
|
||||
td {
|
||||
width: 1vw;
|
||||
height: 1vw;
|
||||
border: 1px solid gray;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
</style>
|
||||
<div id="app"></div>
|
||||
<script src="out.js"></script>
|
Reference in New Issue
Block a user