Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ieee-nitk/envision-algosimulator
https://github.com/ieee-nitk/envision-algosimulator
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ieee-nitk/envision-algosimulator
- Owner: IEEE-NITK
- Created: 2022-04-05T18:33:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-09T11:37:31.000Z (over 2 years ago)
- Last Synced: 2024-11-03T17:26:31.658Z (about 2 months ago)
- Language: HTML
- Size: 17.8 MB
- Stars: 0
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Envision-AlgoSimulator
## Contributing Guidelines
### Setting Up
- Fork the repo.
- Clone the forked repo using `git clone ` to desired directory.
### Pull Requests
- For each new `submission`, `fix` or `feature` create a new branch named `-`.
```cmd
git branch
```
- Switch to the new branch.
```cmd
git checkout
```
- Make the changes in the new branch.
- Stage the changes for the next commit.
To stage changes from specific files:
```cmd
git add
```
To stage all the changes at once:
```cmd
git add .
```
Use `git status` to track the changes made.
- Commit the changes.
```cmd
git commit -m ""
```
- Push the changes to your forked repo.
If you're working on a new branch:
```cmd
git push -u origin
```
If the branch already exists:
```
git push
```
- Create a `pull request`.
### Keep in Mind
- Use `meaningful small commits`. Refer to this [link](https://cbea.ms/git-commit/).
- `Remember to fetch` changes from the upstream repo before working on something.## Learning HTML
- Go through the [lessons](https://learn.shayhowe.com/html-css/) `1`, `2`, `8` & `11` (`12` is optional) `skipping any CSS` that comes up.
- The `assignment` is to create a simple personal website using `HTML`.
- It should be submitted to the subdirectory `learning\personal_website\\`.## Learing CSS
- Go through the following [link](https://www.codecademy.com/learn/learn-css).
- The `assignment` is to style the page from the previous assignment.## Learning JS
- Go through the `Coding Train's` [YouTube playlist](https://youtu.be/HerCR8bw_GE) on `p5.JS`## Implementing an Algorithm
- Implement an algorithm of your choosing using `JS`.
- Submit it to the subdirectory `learning\algorithms\-\` e.g. `learning\algorithms\kid-116-dfs\`.