You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Before continuing, please be sure you have read the [How to contribute guide for
11
11
12
12
1. discussed the chapter with James Schloss (Leios) first and know where this chapter fits into the broader scope of the project
13
13
2. edited the Markdown file with the appropriate line numbers for your submission
14
-
3. built the algorithm archive with `gitbook install && gitbook serve` to make sure your code can be seen on your branch
14
+
3. built the algorithm archive with `npm install && npm run serve` to make sure your code can be seen on your branch
15
15
4. followed all necessary [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for the initial submission language, if available
16
16
5. agreed to share your chapter under [CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/deed.en)
Copy file name to clipboardexpand all lines: .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Thanks for submitting code to the Algorithm Archive!
9
9
Before continuing, please be sure you have read the [How to contribute guide for code submission](https://github.com/algorithm-archivists/algorithm-archive/wiki/How-to-Contribute#step-3---submitting-code) and have:
10
10
11
11
1. edited the Markdown file with the appropriate line numbers for your submission
12
-
2. built the Algorithm Archive with `gitbook install && gitbook serve` to make sure your code can be seen on your branch
12
+
2. built the Algorithm Archive with `npm install && npm run serve` to make sure your code can be seen on your branch
13
13
3. followed all necessary [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for your language, if available
14
14
15
15
If you would like to contact us, we are also available on Discord at https://discord.gg/2PEjsR
Copy file name to clipboardexpand all lines: contents/how_to_contribute/how_to_contribute.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,13 @@ If you are having trouble with git and version control, please also check out [t
7
7
8
8
In addition, we also have an [FAQ](https://github.com/algorithm-archivists/algorithm-archive/wiki/FAQ) and a [code style guide](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide), which is currently being written for all languages submitted to the Algorithm Archive so far.
9
9
10
-
Currently, we are not accepting chapter submissions; however, we will allow for this in the near future.
10
+
Currently, we are not accepting chapter submissions; however, we will allow for this in the near future.
11
11
For now, here are the basics for submitting code to the Algorithm Archive:
12
12
13
13
1.**Style**: We are developing a [code style guide](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for all the languages in the Algorithm Archive. For the most part, follow standard style guidelines associated with your language of choice. Your code should be readable and understandable to anyone -- especially those who are new to the language. In addition, remember that your code will be displayed in this book, so try to keep to around 80 columns, try to remove any visual clutter, and keep variable names clean and understandable.
14
14
2.**Licensing**: All the code from this project will be under the MIT license found in `LICENSE.md`; however, the text will be under a Creative Commons Attribution-NonCommercial 4.0 International License.
15
15
3.**CONTRIBUTORS.md**: After contributing code, please echo your name to the end of `CONTRIBUTORS.md` with `echo "- name" >> CONTRIBUTORS.md`.
16
-
4.**Building the Algorithm Archive**: Before every submission, you should build the Algorithm Archive on your own machine. To do this, install GitBook and use `gitbook install` and then `gitbook serve` in the main directory (where `README.md` is). This will provide a local URL to go to to view the archive in your browser of choice. Use this server to make sure your version of the Algorithm Archive works cleanly for the chapter you are updating!
16
+
4.**Building the Algorithm Archive**: Before every submission, you should build the Algorithm Archive on your own machine. To do this, install [Node](https://nodejs.org/) and use `npm install` and then `npm run serve` in the main directory (where `README.md` is). This will provide a local URL to go to to view the archive in your browser of choice. Use this server to make sure your version of the Algorithm Archive works cleanly for the chapter you are updating!
17
17
18
18
To submit code, simply go to the `code/` directory of whatever chapter you want and add another directory for your language of choice.
19
19
@@ -28,7 +28,7 @@ Note that to standardize the language capitalization schemes, we ask that each l
28
28
This keeps the title in the theme-api consistent across different languages.
29
29
Also note that depending on the algorithm, there might be in-text code snippets that also need to be written.
30
30
31
-
I'll update this page as the project grows.
31
+
I'll update this page as the project grows.
32
32
If you would like to be a part of the ongoing discussion, please feel free to join our discord server: https://discord.gg/pb976sY.
33
33
Thanks for all the support and considering contributing to the Algorithm Archive!
0 commit comments