Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
9216510
Got grid to show on server, toggle grid,and toggle a non working star…
vetorobert3 Aug 21, 2020
3dddd93
Working on the animation for the cells
vetorobert3 Aug 22, 2020
983ea40
Made logic. Working on components and UI.
vetorobert3 Aug 22, 2020
89531b6
working on components on another file
vetorobert3 Aug 22, 2020
a48ecbb
Created a grid component.
vetorobert3 Aug 25, 2020
08045e7
updating files.
vetorobert3 Aug 25, 2020
29096ee
Didn't finish color randomization or speed of cells. Cleaning up what…
vetorobert3 Aug 28, 2020
f055754
MAke comments on code
vetorobert3 Aug 28, 2020
e00f2e5
Finished with speed Ui, but not working. Developing random color chan…
vetorobert3 Aug 29, 2020
e15cabf
added randomcolor package for random color button. Need to work on bu…
vetorobert3 Aug 29, 2020
42a976c
Working on getting the generations to populate. Now getting an other …
vetorobert3 Oct 16, 2020
0126e56
working on making game work with new methods.
vetorobert3 Oct 18, 2020
973843a
Got app to work by commenting out generation component.
vetorobert3 Oct 18, 2020
6584723
added a speed change feature.
vetorobert3 Oct 21, 2020
6ee109e
got the generation counter to work. Yaygit add .git add .git add .git…
vetorobert3 Oct 22, 2020
b746a99
Got generations to work, now need to make 2 features to work.
vetorobert3 Oct 22, 2020
bb7db86
Gettign close with the speed feature. Still need to work out bugs. Ne…
vetorobert3 Oct 23, 2020
eb97171
working on drop down for color change.
vetorobert3 Oct 26, 2020
6a8b93b
pushing for review. Still wprking on speed.
vetorobert3 Oct 27, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Game_of_Life/gameoflife/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
68 changes: 68 additions & 0 deletions Game_of_Life/gameoflife/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `yarn start`

Runs the app in the development mode.<br />
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.<br />
You will also see any lint errors in the console.

### `yarn test`

Launches the test runner in the interactive watch mode.<br />
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `yarn build`

Builds the app for production to the `build` folder.<br />
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.<br />
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `yarn eject`

**Note: this is a one-way operation. Once you `eject`, you can’t go back!**

If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting

### Analyzing the Bundle Size

This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size

### Making a Progressive Web App

This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app

### Advanced Configuration

This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration

### Deployment

This section has moved here: https://facebook.github.io/create-react-app/docs/deployment

### `yarn build` fails to minify

This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
Loading