From 7557499a319578f348edf41d705f66893dd236d5 Mon Sep 17 00:00:00 2001 From: leios Date: Wed, 2 Jan 2019 17:30:39 +0900 Subject: [PATCH 01/21] adding some templates to be modified in review --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 48 +++++++++++++++++++ .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md | 28 +++++++++++ .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 29 +++++++++++ .../CHAPTER_SUBMISSION_TEMPLATE.md | 43 +++++++++++++++++ .../CODE_SUBMISSION_TEMPLATE.md | 30 ++++++++++++ 5 files changed, 178 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.md create mode 100644 .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md create mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md new file mode 100644 index 000000000..ca0872eed --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -0,0 +1,48 @@ +--- +name: Bug Report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + + + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Environment (please complete the following information):** + - OS: [e.g. Ubuntu, iOS, Windows] + - OS Version: [e.g. 16.04, 11.3.1, 10 09/2018] + - Browser [e.g. Chrome, Safari, Firefox] + - Browser Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. + + +** For Algorithm Archive Developers ** +- [ ] The bug can be reproduced +- [ ] The bug can be fixed (if not, please explain why not) +- [ ] There is a timeline to fix the bug +- [ ] The bug has been fixed (Please link the PR) diff --git a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md new file mode 100644 index 000000000..c336d24cb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md @@ -0,0 +1,28 @@ +--- +name: Chapter Request +about: Requesting a new chapter to be in the Algorithm Archive +title: '' +labels: '' +assignees: '' + +--- + + + +**Describe the new algorithm, method, or data structure** +A clear and concise description of what the new method would be about, including links to the relevant academic articles or sources. + +**Additional context** +Add any other reasons why this chapter should be a higher priority. + + +** For Algorithm Archive Developers ** +- [ ] This chapter can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why -- lack of sufficient technical sources, not novel enough, too ambitious) +- [ ] There is a timeline for when this chapter can be written +- [ ] The chapter has been added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md new file mode 100644 index 000000000..002f3f88f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -0,0 +1,29 @@ +--- +name: Feature Request +about: Requesting a new feature to be in the Algorithm Archive +title: '' +labels: '' +assignees: '' + +--- + + + +**Describe the desired feature** +A clear and concise description of what the desired feature is and how it would help, including any relevant screenshots / schematics. + +**Additional context** +Add any other reasons why this feature will help with the goals of the Algorithm Archive + + +** For Algorithm Archive Developers ** +- [ ] This feature can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why -- lack of technical expertise, not relevant to the scope of this project, too ambitious) +- [ ] There is a timeline for when this feature can be implemented +- [ ] The feature has been added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) + diff --git a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md new file mode 100644 index 000000000..65129701b --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md @@ -0,0 +1,43 @@ +--- +name: Chapter submission +about: Add a chapter or modify an existing chapter in the Algorithm Archive +title: '' +labels: '' +assignees: '' + +--- + + + +** Describe the chapter ** +A clear and concise description of the chapter with relevant sources + +** Describe the code ** +A clear and concise description of the code with compilation instructions + +** CC BY-SA notice ** +I, AUTHOR, the copyright holder of this work, irrevocably grant anyone the right to use this work, including derivatives created during the review process, under the Creative Commons Attribution ShareAlike 4.0 license ([legal code](https://creativecommons.org/licenses/by-sa/4.0/deed.en)). + +(Anyone may use, share or remix this work, as long as they credit me and share any derivative work under this license.) + + +** For Algorithm Archive Developers ** +- [ ] The algorithm archive can be built locally +- [ ] The markdown file has been edited with appropriate line numbers +- [ ] There are appropriate images / animations to describe the chapter's algorithm, data structure, or method +- [ ] The chapter opens up the Algorithm Archive to moving in a new direction or connects to other parts of the archive +- [ ] All appropriate references have been cited or linked +- [ ] The code conforms to the [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) +- [ ] The CC BY-SA licese is an appropriate modification of the license found in `cc/license.txt` and has all images and graphics, text, code, and auxiliary materials licensed appropriately diff --git a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md new file mode 100644 index 000000000..c011b7dc7 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md @@ -0,0 +1,30 @@ +--- +name: Code submission +about: Add code or modify existing code in the Algorithm Archive +title: '' +labels: '' +assignees: '' + +--- + + + +**Describe the code** +A clear and concise description of the code with compilation instructions + + +** For Algorithm Archive Developers ** +- [ ] There are no open PR's for this language implementation before this one +- [ ] The algorithm archive can be built locally +- [ ] The code conforms to the [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) +- [ ] The markdown file has been edited with appropriate line numbers From c97d852dba53b9a24ae83b24bc316f3056a4e60c Mon Sep 17 00:00:00 2001 From: leios Date: Wed, 2 Jan 2019 17:35:23 +0900 Subject: [PATCH 02/21] fixing a smallscale typo and adding leios to automatically be assigned for chapter requests and submissions. --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 2 +- .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md | 4 ++-- .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 2 +- .github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md | 4 ++-- .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md index ca0872eed..ff4d1ca11 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -41,7 +41,7 @@ If applicable, add screenshots to help explain your problem. Add any other context about the problem here. -** For Algorithm Archive Developers ** +**For Algorithm Archive Developers** - [ ] The bug can be reproduced - [ ] The bug can be fixed (if not, please explain why not) - [ ] There is a timeline to fix the bug diff --git a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md index c336d24cb..1f28cf244 100644 --- a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md @@ -3,7 +3,7 @@ name: Chapter Request about: Requesting a new chapter to be in the Algorithm Archive title: '' labels: '' -assignees: '' +assignees: 'leios' --- @@ -22,7 +22,7 @@ A clear and concise description of what the new method would be about, including Add any other reasons why this chapter should be a higher priority. -** For Algorithm Archive Developers ** +**For Algorithm Archive Developers** - [ ] This chapter can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why -- lack of sufficient technical sources, not novel enough, too ambitious) - [ ] There is a timeline for when this chapter can be written - [ ] The chapter has been added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md index 002f3f88f..63122e117 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -22,7 +22,7 @@ A clear and concise description of what the desired feature is and how it would Add any other reasons why this feature will help with the goals of the Algorithm Archive -** For Algorithm Archive Developers ** +**For Algorithm Archive Developers** - [ ] This feature can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why -- lack of technical expertise, not relevant to the scope of this project, too ambitious) - [ ] There is a timeline for when this feature can be implemented - [ ] The feature has been added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) diff --git a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md index 65129701b..e4df1d214 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md @@ -3,7 +3,7 @@ name: Chapter submission about: Add a chapter or modify an existing chapter in the Algorithm Archive title: '' labels: '' -assignees: '' +assignees: 'leios' --- @@ -33,7 +33,7 @@ I, AUTHOR, the copyright holder of this work, irrevocably grant anyone the right (Anyone may use, share or remix this work, as long as they credit me and share any derivative work under this license.) -** For Algorithm Archive Developers ** +**For Algorithm Archive Developers** - [ ] The algorithm archive can be built locally - [ ] The markdown file has been edited with appropriate line numbers - [ ] There are appropriate images / animations to describe the chapter's algorithm, data structure, or method diff --git a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md index c011b7dc7..58cf4e2d1 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md @@ -23,7 +23,7 @@ If you would like to contact us, we are also available on discord at https://dis A clear and concise description of the code with compilation instructions -** For Algorithm Archive Developers ** +**For Algorithm Archive Developers** - [ ] There are no open PR's for this language implementation before this one - [ ] The algorithm archive can be built locally - [ ] The code conforms to the [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) From f33ef4e1a7819a7e5aabb10bf2008c139ab84415 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:14:09 +0900 Subject: [PATCH 03/21] Update .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md Co-Authored-By: leios --- .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md index 1f28cf244..e7e430cb6 100644 --- a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md @@ -20,6 +20,7 @@ A clear and concise description of what the new method would be about, including **Additional context** Add any other reasons why this chapter should be a higher priority. +Delete this section, if you don't think the chapter is of a high priority. **For Algorithm Archive Developers** From 7d4ebd5faaa446a00e906ef7662c36b854935d68 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:14:22 +0900 Subject: [PATCH 04/21] Update .github/ISSUE_TEMPLATE/BUG_REPORT.md Co-Authored-By: leios --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md index ff4d1ca11..52f8fdf27 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -43,6 +43,6 @@ Add any other context about the problem here. **For Algorithm Archive Developers** - [ ] The bug can be reproduced -- [ ] The bug can be fixed (if not, please explain why not) +- [ ] The bug can be fixed (if not, please explain why not in a comment below) - [ ] There is a timeline to fix the bug - [ ] The bug has been fixed (Please link the PR) From f18f949bceb79b63451db1dffef52bc63bcbb562 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:14:32 +0900 Subject: [PATCH 05/21] Update .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md Co-Authored-By: leios --- .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md index e7e430cb6..9122dc2e0 100644 --- a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md @@ -24,6 +24,6 @@ Delete this section, if you don't think the chapter is of a high priority. **For Algorithm Archive Developers** -- [ ] This chapter can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why -- lack of sufficient technical sources, not novel enough, too ambitious) +- [ ] This chapter can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why in a comment below -- lack of sufficient technical sources, not novel enough, too ambitious, etc.) - [ ] There is a timeline for when this chapter can be written - [ ] The chapter has been added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) From 06b7509085697b7c56d995c2cbec1b1ebea48c41 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:14:48 +0900 Subject: [PATCH 06/21] Update .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md Co-Authored-By: leios --- .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md index 9122dc2e0..a52483d72 100644 --- a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md @@ -27,3 +27,4 @@ Delete this section, if you don't think the chapter is of a high priority. - [ ] This chapter can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why in a comment below -- lack of sufficient technical sources, not novel enough, too ambitious, etc.) - [ ] There is a timeline for when this chapter can be written - [ ] The chapter has been added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) +- [ ] The chapter has been written (Please link the PR) From 86efe43a5ddfe9d9c564d5cf3c04c77e03bfb0f8 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:15:01 +0900 Subject: [PATCH 07/21] Update .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md Co-Authored-By: leios --- .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md index 63122e117..9d5e8fd66 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -23,7 +23,7 @@ Add any other reasons why this feature will help with the goals of the Algorithm **For Algorithm Archive Developers** -- [ ] This feature can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why -- lack of technical expertise, not relevant to the scope of this project, too ambitious) +- [ ] This feature can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why in a comment below -- lack of technical expertise, not relevant to the scope of this project, too ambitious) - [ ] There is a timeline for when this feature can be implemented - [ ] The feature has been added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) From 7e9ba484249e0e9d0c4c2a889521f06bba36c856 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:15:12 +0900 Subject: [PATCH 08/21] Update .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md Co-Authored-By: leios --- .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md index 58cf4e2d1..0689b3738 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md @@ -13,7 +13,7 @@ Thanks for submitting code to the Algorithm Archive! 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: 1. edited the markdown file with the appropriate line numbers for your submission -2. built the algorithm archive with `gitbook install && gitbook serve` to make sure your code can be seen on your branch +2. built the Algorithm Archive with `gitbook install && gitbook serve` to make sure your code can be seen on your branch 3. followed all necessary [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for your language, if available If you would like to contact us, we are also available on discord at https://discord.gg/2PEjsR From eabce295329a85a450ba74515d50b4165872b18b Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:15:31 +0900 Subject: [PATCH 09/21] Update .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md Co-Authored-By: leios --- .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md index 9d5e8fd66..af3cce380 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -26,4 +26,4 @@ Add any other reasons why this feature will help with the goals of the Algorithm - [ ] This feature can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why in a comment below -- lack of technical expertise, not relevant to the scope of this project, too ambitious) - [ ] There is a timeline for when this feature can be implemented - [ ] The feature has been added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) - +- [ ] The feature has been implemented (Please link the PR) From c173351342796b53d735485d244665a9f30f85a6 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:15:57 +0900 Subject: [PATCH 10/21] Update .github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md Co-Authored-By: leios --- .github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md index e4df1d214..14ffde916 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md @@ -13,7 +13,7 @@ Thanks for submitting a chapter to the Algorithm Archive! Before continuing, please be sure you have read the [How to contribute guide for chapter submission](https://github.com/algorithm-archivists/algorithm-archive/wiki/Chapter-submission) and have: 1. discussed the chapter with James Schloss (Leios) first and know where this chapter fits into the broader scope of the project -2. edited the markdown file with the appropriate line numbers for your submission +2. edited the Markdown file with the appropriate line numbers for your submission 3. built the algorithm archive with `gitbook install && gitbook serve` to make sure your code can be seen on your branch 4. followed all necessary [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for the initial submission language, if available 5. agreed to share your chapter under [CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/deed.en) From 3d0b877d32b1060e7c9206e6434f51cb83f5f9a7 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:16:07 +0900 Subject: [PATCH 11/21] Update .github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md Co-Authored-By: leios --- .github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md index 14ffde916..4d6640a8e 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md @@ -40,4 +40,4 @@ I, AUTHOR, the copyright holder of this work, irrevocably grant anyone the right - [ ] The chapter opens up the Algorithm Archive to moving in a new direction or connects to other parts of the archive - [ ] All appropriate references have been cited or linked - [ ] The code conforms to the [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) -- [ ] The CC BY-SA licese is an appropriate modification of the license found in `cc/license.txt` and has all images and graphics, text, code, and auxiliary materials licensed appropriately +- [ ] The CC BY-SA license is an appropriate modification of the license found in `cc/license.txt` and has all images and graphics, text, code, and auxiliary materials licensed appropriately From acd2d548c45d0c10de28226eef3d0fcf5293e907 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:16:19 +0900 Subject: [PATCH 12/21] Update .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md Co-Authored-By: leios --- .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md index 0689b3738..281b13937 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md @@ -12,7 +12,7 @@ Thanks for submitting code to the Algorithm Archive! 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: -1. edited the markdown file with the appropriate line numbers for your submission +1. edited the Markdown file with the appropriate line numbers for your submission 2. built the Algorithm Archive with `gitbook install && gitbook serve` to make sure your code can be seen on your branch 3. followed all necessary [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for your language, if available From d046b7bd721ae6ece2b597d891f03253b2f744b9 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:16:30 +0900 Subject: [PATCH 13/21] Update .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md Co-Authored-By: leios --- .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md index 281b13937..4db3c2c37 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md @@ -20,7 +20,7 @@ If you would like to contact us, we are also available on discord at https://dis --> **Describe the code** -A clear and concise description of the code with compilation instructions +A clear and concise description of the code with compilation instructions. **For Algorithm Archive Developers** From d7c3a42ee19128226fb7241788fe8956f5cb07eb Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:16:36 +0900 Subject: [PATCH 14/21] Update .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md Co-Authored-By: leios --- .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md index 4db3c2c37..ddf02f30f 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md @@ -25,6 +25,6 @@ A clear and concise description of the code with compilation instructions. **For Algorithm Archive Developers** - [ ] There are no open PR's for this language implementation before this one -- [ ] The algorithm archive can be built locally +- [ ] The Algorithm Archive can be built locally - [ ] The code conforms to the [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) - [ ] The markdown file has been edited with appropriate line numbers From 4cfa3c9b5a2ca56429c1daf08a1c2dfce30e5c81 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:16:43 +0900 Subject: [PATCH 15/21] Update .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md Co-Authored-By: leios --- .github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md index ddf02f30f..cdbfd3d6e 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md @@ -27,4 +27,4 @@ A clear and concise description of the code with compilation instructions. - [ ] There are no open PR's for this language implementation before this one - [ ] The Algorithm Archive can be built locally - [ ] The code conforms to the [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) -- [ ] The markdown file has been edited with appropriate line numbers +- [ ] The Markdown file has been edited with appropriate line numbers From 12256b21fc921ad4dff5befafe0c4b1274bcb304 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 17 Mar 2019 09:16:54 +0900 Subject: [PATCH 16/21] Update .github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md Co-Authored-By: leios --- .github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md index 4d6640a8e..b0a97c757 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md @@ -28,6 +28,7 @@ A clear and concise description of the chapter with relevant sources A clear and concise description of the code with compilation instructions ** CC BY-SA notice ** + I, AUTHOR, the copyright holder of this work, irrevocably grant anyone the right to use this work, including derivatives created during the review process, under the Creative Commons Attribution ShareAlike 4.0 license ([legal code](https://creativecommons.org/licenses/by-sa/4.0/deed.en)). (Anyone may use, share or remix this work, as long as they credit me and share any derivative work under this license.) From 8917723d3a1134cac0e8dec4abb3c5029143fa8f Mon Sep 17 00:00:00 2001 From: Julian Schacher Date: Thu, 21 Mar 2019 22:06:53 +0100 Subject: [PATCH 17/21] Use markdown heading notation and add more structure. --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 24 +++++++++++++------ .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md | 14 +++++++---- .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 12 +++++++--- .../CHAPTER_SUBMISSION_TEMPLATE.md | 17 +++++++++---- .../CODE_SUBMISSION_TEMPLATE.md | 9 +++++-- 5 files changed, 56 insertions(+), 20 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md index 52f8fdf27..6806f1ea5 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -15,33 +15,43 @@ Please fill in the information below. If you would like to contact us, we are also available on discord at https://discord.gg/2PEjsR --> -**Describe the bug** +# Bug Report + +## Description + A clear and concise description of what the bug is. -**To Reproduce** +### Steps to Reproduce + Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error -**Expected behavior** +### Expected behavior + A clear and concise description of what you expected to happen. -**Screenshots** +## Screenshots + If applicable, add screenshots to help explain your problem. -**Environment (please complete the following information):** +## Environment (please complete the following information) + - OS: [e.g. Ubuntu, iOS, Windows] - OS Version: [e.g. 16.04, 11.3.1, 10 09/2018] - Browser [e.g. Chrome, Safari, Firefox] - Browser Version [e.g. 22] -**Additional context** +## Additional context + Add any other context about the problem here. -**For Algorithm Archive Developers** + +## For Algorithm Archive Developers + - [ ] The bug can be reproduced - [ ] The bug can be fixed (if not, please explain why not in a comment below) - [ ] There is a timeline to fix the bug diff --git a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md index a52483d72..eeebd93f2 100644 --- a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md @@ -15,15 +15,21 @@ Please fill in the information below If you would like to contact us, we are also available on discord at https://discord.gg/2PEjsR --> -**Describe the new algorithm, method, or data structure** -A clear and concise description of what the new method would be about, including links to the relevant academic articles or sources. +# Chapter Request + +## Description + +A clear and concise description of what the new algorithm, method or data structure would be about, including links to the relevant academic articles or sources. + +## Additional context -**Additional context** Add any other reasons why this chapter should be a higher priority. Delete this section, if you don't think the chapter is of a high priority. -**For Algorithm Archive Developers** + +## For Algorithm Archive Developers + - [ ] This chapter can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why in a comment below -- lack of sufficient technical sources, not novel enough, too ambitious, etc.) - [ ] There is a timeline for when this chapter can be written - [ ] The chapter has been added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md index af3cce380..35867b605 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -15,14 +15,20 @@ Please fill in the information below If you would like to contact us, we are also available on discord at https://discord.gg/2PEjsR --> -**Describe the desired feature** +# Feature Request + +## Description + A clear and concise description of what the desired feature is and how it would help, including any relevant screenshots / schematics. -**Additional context** +## Additional context + Add any other reasons why this feature will help with the goals of the Algorithm Archive -**For Algorithm Archive Developers** + +## For Algorithm Archive Developers + - [ ] This feature can be added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) (if it cannot be, explain why in a comment below -- lack of technical expertise, not relevant to the scope of this project, too ambitious) - [ ] There is a timeline for when this feature can be implemented - [ ] The feature has been added to the [Master Overview](https://github.com/algorithm-archivists/algorithm-archive/projects/11) diff --git a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md index b0a97c757..233a113ee 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md @@ -21,20 +21,29 @@ Before continuing, please be sure you have read the [How to contribute guide for If you would like to contact us, we are also available on discord at https://discord.gg/2PEjsR --> -** Describe the chapter ** +# Chapter Submission + +## Description + +### The Chapter + A clear and concise description of the chapter with relevant sources -** Describe the code ** +### The Code + A clear and concise description of the code with compilation instructions -** CC BY-SA notice ** +## CC BY-SA notice + I, AUTHOR, the copyright holder of this work, irrevocably grant anyone the right to use this work, including derivatives created during the review process, under the Creative Commons Attribution ShareAlike 4.0 license ([legal code](https://creativecommons.org/licenses/by-sa/4.0/deed.en)). (Anyone may use, share or remix this work, as long as they credit me and share any derivative work under this license.) -**For Algorithm Archive Developers** + +## For Algorithm Archive Developers + - [ ] The algorithm archive can be built locally - [ ] The markdown file has been edited with appropriate line numbers - [ ] There are appropriate images / animations to describe the chapter's algorithm, data structure, or method diff --git a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md index cdbfd3d6e..0093fb722 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md @@ -19,11 +19,16 @@ Before continuing, please be sure you have read the [How to contribute guide for If you would like to contact us, we are also available on discord at https://discord.gg/2PEjsR --> -**Describe the code** +# Code submission + +## Description + A clear and concise description of the code with compilation instructions. -**For Algorithm Archive Developers** + +## For Algorithm Archive Developers + - [ ] There are no open PR's for this language implementation before this one - [ ] The Algorithm Archive can be built locally - [ ] The code conforms to the [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) From 427ec0327952bfdc900e4bd64035c8d936e9fccc Mon Sep 17 00:00:00 2001 From: Julian Date: Fri, 22 Mar 2019 08:22:26 +0900 Subject: [PATCH 18/21] Apply suggestions from code review Co-Authored-By: leios --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 20 ++++++++++--------- .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md | 6 ++---- .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 6 ++---- .../CHAPTER_SUBMISSION_TEMPLATE.md | 5 ++--- .../CODE_SUBMISSION_TEMPLATE.md | 6 ++---- 5 files changed, 19 insertions(+), 24 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md index 6806f1ea5..6ac3c7f31 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -1,9 +1,7 @@ --- name: Bug Report about: Create a report to help us improve -title: '' -labels: '' -assignees: '' +labels: Problem --- @@ -24,9 +22,10 @@ A clear and concise description of what the bug is. ### Steps to Reproduce Steps to reproduce the behavior: + 1. Go to '...' -2. Click on '....' -3. Scroll down to '....' +2. Click on '...' +3. Scroll down to '...' 4. See error ### Expected behavior @@ -37,18 +36,21 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. -## Environment (please complete the following information) +## Environment + + - OS: [e.g. Ubuntu, iOS, Windows] - OS Version: [e.g. 16.04, 11.3.1, 10 09/2018] - - Browser [e.g. Chrome, Safari, Firefox] - - Browser Version [e.g. 22] + - Browser: [e.g. Chrome, Safari, Firefox] + - Browser Version: [e.g. 22] ## Additional context Add any other context about the problem here. - + + ## For Algorithm Archive Developers diff --git a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md index eeebd93f2..687955faf 100644 --- a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md @@ -1,9 +1,6 @@ --- name: Chapter Request about: Requesting a new chapter to be in the Algorithm Archive -title: '' -labels: '' -assignees: 'leios' --- @@ -26,7 +23,8 @@ A clear and concise description of what the new algorithm, method or data struct Add any other reasons why this chapter should be a higher priority. Delete this section, if you don't think the chapter is of a high priority. - + + ## For Algorithm Archive Developers diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md index 35867b605..47ac0d507 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -1,9 +1,6 @@ --- name: Feature Request about: Requesting a new feature to be in the Algorithm Archive -title: '' -labels: '' -assignees: '' --- @@ -25,7 +22,8 @@ A clear and concise description of what the desired feature is and how it would Add any other reasons why this feature will help with the goals of the Algorithm Archive - + + ## For Algorithm Archive Developers diff --git a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md index 233a113ee..12d2fa461 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md @@ -1,8 +1,6 @@ --- name: Chapter submission about: Add a chapter or modify an existing chapter in the Algorithm Archive -title: '' -labels: '' assignees: 'leios' --- @@ -40,7 +38,8 @@ I, AUTHOR, the copyright holder of this work, irrevocably grant anyone the right (Anyone may use, share or remix this work, as long as they credit me and share any derivative work under this license.) - + + ## For Algorithm Archive Developers diff --git a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md index 0093fb722..a69b11c61 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md @@ -1,9 +1,6 @@ --- name: Code submission about: Add code or modify existing code in the Algorithm Archive -title: '' -labels: '' -assignees: '' --- @@ -25,7 +22,8 @@ If you would like to contact us, we are also available on discord at https://dis A clear and concise description of the code with compilation instructions. - + + ## For Algorithm Archive Developers From d09f7c64c314e418ec311dbe730802446776ba71 Mon Sep 17 00:00:00 2001 From: Julian Date: Fri, 22 Mar 2019 08:32:58 +0900 Subject: [PATCH 19/21] Apply suggestions from code review Co-Authored-By: leios --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 1 - .github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md | 1 - .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 3 +-- .github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md | 5 ++--- 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md index 6ac3c7f31..1d23ad601 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -2,7 +2,6 @@ name: Bug Report about: Create a report to help us improve labels: Problem - --- diff --git a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md index 12d2fa461..c4726e545 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md @@ -2,7 +2,6 @@ name: Chapter submission about: Add a chapter or modify an existing chapter in the Algorithm Archive assignees: 'leios' - --- # Bug Report diff --git a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md index 60d51dac1..8ecee4ae4 100644 --- a/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/CHAPTER_REQUEST.md @@ -8,7 +8,7 @@ Thanks for requesting a chapter for the Algorithm Archive! Please fill in the information below -If you would like to contact us, we are also available on discord at https://discord.gg/2PEjsR +If you would like to contact us, we are also available on Discord at https://discord.gg/2PEjsR --> # Chapter Request diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md index 8823b0279..ad3268808 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -8,7 +8,7 @@ Thanks for requesting a chapter for the Algorithm Archive! Please fill in the information below -If you would like to contact us, we are also available on discord at https://discord.gg/2PEjsR +If you would like to contact us, we are also available on Discord at https://discord.gg/2PEjsR --> # Feature Request diff --git a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md index c4726e545..5744ba2da 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CHAPTER_SUBMISSION_TEMPLATE.md @@ -15,7 +15,7 @@ Before continuing, please be sure you have read the [How to contribute guide for 4. followed all necessary [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for the initial submission language, if available 5. agreed to share your chapter under [CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/deed.en) -If you would like to contact us, we are also available on discord at https://discord.gg/2PEjsR +If you would like to contact us, we are also available on Discord at https://discord.gg/2PEjsR --> # Chapter Submission diff --git a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md index fda1c9070..215498446 100644 --- a/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE/CODE_SUBMISSION_TEMPLATE.md @@ -12,7 +12,7 @@ Before continuing, please be sure you have read the [How to contribute guide for 2. built the Algorithm Archive with `gitbook install && gitbook serve` to make sure your code can be seen on your branch 3. followed all necessary [style guidelines](https://github.com/algorithm-archivists/algorithm-archive/wiki/Code-style-guide) for your language, if available -If you would like to contact us, we are also available on discord at https://discord.gg/2PEjsR +If you would like to contact us, we are also available on Discord at https://discord.gg/2PEjsR --> # Code submission