2022-01-08 13:12:15 +01:00
|
|
|
# explorata
|
2022-11-29 17:31:01 +01:00
|
|
|
|
2022-01-08 13:12:15 +01:00
|
|
|
Explore 1D and 2D cellular automata, with a few bells and whistles.
|
|
|
|
|
|
|
|
## Project setup
|
2022-11-29 17:31:01 +01:00
|
|
|
|
2022-01-08 13:12:15 +01:00
|
|
|
```
|
|
|
|
npm install
|
|
|
|
```
|
|
|
|
|
|
|
|
### Compiles and hot-reloads for development
|
2022-11-29 17:31:01 +01:00
|
|
|
|
2022-01-08 13:12:15 +01:00
|
|
|
```
|
2022-12-02 17:36:11 +01:00
|
|
|
npm run dev
|
2022-01-08 13:12:15 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
### Compiles and minifies for production
|
2022-11-29 17:31:01 +01:00
|
|
|
|
2022-01-08 13:12:15 +01:00
|
|
|
```
|
|
|
|
npm run build
|
|
|
|
```
|
|
|
|
|
|
|
|
### Lints and fixes files
|
2022-11-29 17:31:01 +01:00
|
|
|
|
2022-01-08 13:12:15 +01:00
|
|
|
```
|
|
|
|
npm run lint
|
|
|
|
```
|
|
|
|
|
2022-12-02 17:36:11 +01:00
|
|
|
### Format files
|
|
|
|
|
|
|
|
```
|
|
|
|
npm run format
|
|
|
|
```
|
|
|
|
|
2022-01-08 13:12:15 +01:00
|
|
|
### Customize configuration
|
2022-11-29 17:31:01 +01:00
|
|
|
|
2022-12-02 17:36:11 +01:00
|
|
|
See [Configuration Reference](https://vitejs.dev/guide/).
|
2022-01-08 13:12:15 +01:00
|
|
|
|
|
|
|
### References
|
2022-11-29 17:31:01 +01:00
|
|
|
|
2022-01-08 13:12:15 +01:00
|
|
|
- https://natureofcode.com/book/chapter-7-cellular-automata/
|
|
|
|
- https://en.wikipedia.org/wiki/Hashlife
|
2022-01-10 22:31:40 +01:00
|
|
|
- https://plato.stanford.edu/entries/cellular-automata/supplement.html
|
|
|
|
- https://www.conwaylife.com/wiki/Cellular_automaton
|