-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added CODE_OF_CONDUCT - Added CONTRIBUTING - Added ISSUE_TEMPLATE - Added contributors to README
- Loading branch information
Showing
4 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
## Code of Conduct | ||
|
||
### Pledge | ||
|
||
As someone who considers himself a beginner, I aim to develop and foster a community of beginner open-source contributors and maintainers with healthy participation. This also expands to a disregard for level of experience, ethnicity, gender identity, nationality, appearance, race, and orientation while interacting with this community. | ||
|
||
### Standards | ||
|
||
- Using welcoming and inclusive language. | ||
- Being respectful of differing viewpoints and experiences. | ||
- Gracefully accepting constructive criticism. | ||
- Focusing on what is best for the community. | ||
- Showing empathy towards other community members. | ||
|
||
### Responsibilities | ||
|
||
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. | ||
|
||
### Scope | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. | ||
|
||
### Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at pysaqib@gmail.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. | ||
|
||
### Attribution | ||
|
||
Various points were taken from <a href="https://gist.github.com/PurpleBooth/b24679402957c63ec426">this repository</a>. Furthermore, this Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at <a href="http://contributor-covenant.org/version/1/4">http://contributor-covenant.org/version/1/4</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Contributing | ||
|
||
Hi there! I am glad that you're considering contributing to this project. Your efforts mean a lot for this repository and it's sustainability. | ||
|
||
We have a simple pull request process that all contributors are required to comply with. | ||
|
||
### Pull Request Process | ||
|
||
1. Firstly, make sure the repository is forked and cloned on your system. This will allow for smooth and error-free development. | ||
|
||
2. Make sure to use <b>g++</b> command-line compilation to run your code. This ensures consistency across platforms. | ||
|
||
3. Since we are developing the library to be accessible for most computers, we require you to use standard libraries such as STL or common cross-platform libraries such as <i>iostream</i>. Avoid using platform-specific libraries such as Windows.h. | ||
|
||
4. You may create a pull-request once you are completely satisfied with your contribution. The format of merge request should be "Added [insert what you have added]". Emojis are fine as long as they are not profane. | ||
|
||
Try to follow <a href="https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html">good commit message</a> guidelines. | ||
|
||
### Contribution License | ||
|
||
All of the contributions made to the repository are published under the MIT License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Make sure all of these boxes are checked before submitting your issue--thank you! | ||
|
||
- [] Check that you are running C++ 98 or above. | ||
- [] Check that you are compiling on g++ command line compiler rather than a VS compiler. | ||
- [] Check that your g++ compiler is configured in an appropriate way. | ||
- [] Check that you have thoroughly gone through (demo.cpp). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters