Skip to content

Commit 39735af

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 94d5d67 + 4533ef3 commit 39735af

File tree

4 files changed

+188
-0
lines changed

4 files changed

+188
-0
lines changed

.github/FUNDING.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These are supported funding model platforms
2+
3+
github: ['raj713335']
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13+
custom: ['paypal.me/raj713335']

CODE_OF_CONDUCT.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Low Level Design Lld Using Python Code of Conduct
2+
3+
Like the technical community as a whole, the Low Level Design Lld Using Python team and community is made up of a mixture of professionals and volunteers from all over the world, working on every aspect of the mission - including mentorship, teaching, and connecting people.
4+
5+
Diversity is one of our huge strengths, but it can also lead to communication issues and unhappiness. To that end, we have a few ground rules that we ask people to adhere to. This code applies equally to founders, mentors and those seeking help and guidance.
6+
7+
This isn’t an exhaustive list of things that you can’t do. Rather, take it in the spirit in which it’s intended - a guide to make it easier to enrich all of us and the technical communities in which we participate.
8+
9+
This code of conduct applies to all spaces managed by the Low Level Design Lld Using Python project or . This includes IRC, the mailing lists, the issue tracker, DSF events, and any other forums created by the project team which the community uses for communication. In addition, violations of this code outside these spaces may affect a person's ability to participate within them.
10+
11+
If you believe someone is violating the code of conduct, we ask that you report it by emailing [raj713335@gmail.com](mailto:raj713335@gmail.com). For more details please see our
12+
13+
- **Be friendly and patient.**
14+
- **Be welcoming.** We strive to be a community that welcomes and supports people of all backgrounds and identities. This includes, but is not limited to members of any race, ethnicity, culture, national origin, colour, immigration status, social and economic class, educational level, sex, sexual orientation, gender identity and expression, age, size, family status, political belief, religion, and mental and physical ability.
15+
- **Be considerate.** Your work will be used by other people, and you in turn will depend on the work of others. Any decision you take will affect users and colleagues, and you should take those consequences into account when making decisions. Remember that we're a world-wide community, so you might not be communicating in someone else's primary language.
16+
- **Be respectful.** Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners. We might all experience some frustration now and then, but we cannot allow that frustration to turn into a personal attack. It’s important to remember that a community where people feel uncomfortable or threatened is not a productive one. Members of the Low Level Design Lld Using Python community should be respectful when dealing with other members as well as with people outside the Low Level Design Lld Using Python community.
17+
- **Be careful in the words that you choose.** We are a community of professionals, and we conduct ourselves professionally. Be kind to others. Do not insult or put down other participants. Harassment and other exclusionary behavior aren't acceptable. This includes, but is not limited to:
18+
- Violent threats or language directed against another person.
19+
- Discriminatory jokes and language.
20+
- Posting sexually explicit or violent material.
21+
- Posting (or threatening to post) other people's personally identifying information ("doxing").
22+
- Personal insults, especially those using racist or sexist terms.
23+
- Unwelcome sexual attention.
24+
- Advocating for, or encouraging, any of the above behavior.
25+
- Repeated harassment of others. In general, if someone asks you to stop, then stop.
26+
- **When we disagree, try to understand why.** Disagreements, both social and technical, happen all the time and Low Level Design Lld Using Python is no exception. It is important that we resolve disagreements and differing views constructively. Remember that we’re different. The strength of Low Level Design Lld Using Python comes from its varied community, people from a wide range of backgrounds. Different people have different perspectives on issues. Being unable to understand why someone holds a viewpoint doesn’t mean that they’re wrong. Don’t forget that it is human to err and blaming each other doesn’t get us anywhere. Instead, focus on helping to resolve issues and learning from mistakes.
27+
28+
Original text courtesy of the [Speak Up! project](http://web.archive.org/web/20141109123859/http://speakup.io/coc.html).
29+
30+
## Questions?
31+
32+
If you have questions, please see . If that doesn't answer your questions, feel free to [contact us](mailto:raj713335@gmail.com).

CONTRIBUTING.md

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
# Contributing to Low Level Design LLD Using Python
2+
3+
Welcome to the Low Level Design LLD Using Python project!
4+
Thank you for taking the time to contribute. We’re excited to collaborate with fellow engineers and learners to make this a world-class resource for system design.
5+
6+
7+
## How to Contribute
8+
9+
### 1. Fork the Repository
10+
11+
Click the **Fork** button in the top right corner of this repo to create your copy.
12+
13+
### 2. Clone Your Fork
14+
15+
```bash
16+
$ git clone https://github.com/raj713335/Low_Level_Design_LLD_Using_Python.git
17+
$ cd Low_Level_Design_LLD_Using_Python
18+
````
19+
20+
### 3. Create a Feature Branch
21+
22+
```bash
23+
$ git checkout -b feature/your-feature-name
24+
```
25+
26+
### 4. Make Your Changes
27+
28+
* Follow the existing folder and naming conventions.
29+
* Keep your code clean, modular, and well-documented.
30+
* If adding a new algorithm:
31+
32+
* Place it in the appropriate section.
33+
* Include comments and usage examples.
34+
* If updating documentation:
35+
36+
* Maintain consistent formatting.
37+
* Use Markdown best practices.
38+
39+
### 5. Test Your Contribution
40+
41+
Run your code and verify it works correctly. Add edge cases and examples where appropriate.
42+
43+
### 6. Commit and Push
44+
45+
```bash
46+
$ git add .
47+
$ git commit -m "Add: Description of your change"
48+
$ git push origin feature/your-feature-name
49+
```
50+
51+
### 7. Open a Pull Request
52+
53+
Submit a pull request from your branch to the `main` branch of this repository. Fill out the PR template with:
54+
55+
* A brief summary of your changes
56+
* Related issue (if applicable)
57+
* Screenshots or logs for UI/code changes
58+
59+
---
60+
61+
## Contribution Guidelines
62+
63+
* Keep commits atomic and meaningful.
64+
* Use clear and descriptive names for files, folders, and variables.
65+
* Include docstrings/comments for all functions and algorithms.
66+
* Maintain cross-platform compatibility (especially for scripts).
67+
* Do **not** modify files unrelated to your contribution.
68+
* Run linters and format your code (e.g., `black`, `flake8`).
69+
* Contributions should be beginner-friendly and educational.
70+
* Add references or links for advanced concepts where needed.
71+
72+
---
73+
74+
## Contribution Ideas
75+
76+
You can contribute in many ways:
77+
78+
* Add new Low Level design patterns or algorithms.
79+
* Improve documentation or examples
80+
* Create diagrams or visuals for concepts
81+
* Submit bug fixes or optimizations
82+
* Translate content into other languages
83+
* Add test cases or edge scenarios
84+
* Create presentation slides or learning guides
85+
86+
---
87+
88+
## Development Setup
89+
90+
* Python 3.7+
91+
* pip
92+
93+
To install common dependencies:
94+
95+
```bash
96+
pip install -r requirements.txt
97+
```
98+
99+
For specific modules, refer to the README or project root guide.
100+
101+
---
102+
103+
## Support & Questions
104+
105+
* Open an [Issue](https://github.com/raj713335/Low_Level_Design_LLD_Using_Python/issues) for bugs, questions, or feature requests.
106+
* Join discussions in the community tab or comments.
107+
* Please search existing issues before creating a new one.
108+
109+
---
110+
111+
## License
112+
113+
By contributing, you agree that your contributions will be licensed under the [GNU Lesser General Public License v2.1](LICENSE).
114+
115+
---
116+
117+
## Acknowledgment
118+
119+
Your efforts make this project better! Whether it’s code, docs, or just a bug report — **every bit helps**. Let’s build the ultimate system design masterclass together.
120+
121+
## Happy Contributing!
122+

SECURITY.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
Use this section to tell people about which versions of your project are
6+
currently being supported with security updates.
7+
8+
| Version | Supported |
9+
| ------- | ------------------ |
10+
| 5.1.x | :white_check_mark: |
11+
| 5.0.x | :x: |
12+
| 4.0.x | :white_check_mark: |
13+
| < 4.0 | :x: |
14+
15+
## Reporting a Vulnerability
16+
17+
Use this section to tell people how to report a vulnerability.
18+
19+
Tell them where to go, how often they can expect to get an update on a
20+
reported vulnerability, what to expect if the vulnerability is accepted or
21+
declined, etc.

0 commit comments

Comments
 (0)