Welcome to the Error Culture Community Collection! This repository serves as a collaborative space to document, share, and learn from error examples. By contributing to this project, you help build a diverse and comprehensive collection of error scenarios, fostering a culture of openness and continuous improvement.
This project provides a growing collection of error examples contributed by the community. All entries are stored in a single CSV file located at: src/assets/Error_Culture_Community_Collection.csv Each row in the CSV file represents a unique error example, and the columns provide details about the error and its context. The CSV uses ; as the delimiter to separate columns.
We welcome contributions to the error collection! To maintain consistency and integrity, please follow the steps below:
Fork this repository and clone it to your local machine: git clone https://github.com//Error_Culture_Community_Collection.git
Navigate to the file: src/assets/Error_Culture_Community_Collection.csv
Make sure you: Use ; as the delimiter for columns. Add one row for each new error example. Do not modify any other files in the repository. Ensure the formatting and column structure of the CSV file remain intact.
git add src/assets/Error_Culture_Community_Collection.csv git commit -m "Add new error example: [brief description of your addition]" git push origin main
Submit a pull request to the main repository. Please include: A brief description of the error(s) added. Any context or explanation, if applicable.
Before contributing, review the format of the CSV file by looking at the existing entries. Here's a simplified example: Error ID;Error Type;Description;Solution;Tags 001;Runtime Error;Null pointer exception in Java;Check if object is null before calling methods;Java, Exception Handling 002;Syntax Error;Missing semicolon in Python;Add the missing semicolon at the end of the line;Python, Syntax
If you have questions, suggestions, or need assistance with your contribution, feel free to open an issue in the repository. Thank you for helping to grow the Error Culture Community Collection!