Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azuyamat/conway
Conway game of life in VueJS + ViteJS
https://github.com/azuyamat/conway
Last synced: 29 days ago
JSON representation
Conway game of life in VueJS + ViteJS
- Host: GitHub
- URL: https://github.com/azuyamat/conway
- Owner: Azuyamat
- Created: 2023-09-03T03:59:47.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-03T04:30:13.000Z (over 1 year ago)
- Last Synced: 2024-11-06T08:03:59.564Z (3 months ago)
- Language: Vue
- Homepage: https://conway.azuyamat.com
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Website
> Visit [conway](https://conway.azuyamat.com) --> Made in VueJS + ViteJS## Conway game of life[^1]
> Conway's Game of Life is a computer program that creates patterns using a grid of cells, kind of like a checkerboard. Each cell can be alive or dead. It follows these rules:
| Index | Rule |
| --- | --- |
| 1 | Any live cell with fewer than two live neighbours dies, as if by underpopulation. |
| 2 | Any live cell with two or three live neighbours lives on to the next generation. |
| 3 | Any live cell with more than three live neighbours dies, as if by overpopulation. |
| 4 | Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction. |> Imagine starting with some living cells on the grid and then watching how they change with each "generation." It's like a simple computer game where patterns evolve over time based on these rules, creating interesting shapes and designs.
___
## Here are a few examples of shapes you may encounter:
1. **Block**:
```
XX
XX
```
2. **Beehive**:
```
XX
X X
XX
```
3. **Blinker**:
```
X
X
X
```
4. **Blinker**:
```
XXX
XXX
```
___
## About the Author*Azuyamat*
![Profile Picture](https://media.discordapp.net/attachments/839527216534388807/1147749523473575977/azuyamatpfpfinal.png?width=105&height=105)
- **GitHub:** [Azuyamat](https://github.com/azuyamat)
- **Website:** [Azuyamat](https://azuyamat.com)---
[^1]: https://en.wikipedia.org/wiki/Conway's_Game_of_Life