├── .github └── workflows │ └── deploy.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── resources ├── Distributed Systems │ └── Introduction.md ├── Machine Learning │ └── ml_python.md ├── Operating System │ └── OS_Resourses.md └── Programming Languages │ ├── Dart.md │ ├── Java.md │ ├── Javascript.md │ └── Python.md ├── sync-resources.js └── website ├── .gitignore ├── README.md ├── blog ├── 2024-12-27-software-engineering-curriculum.mdx ├── authors.yml └── tags.yml ├── docs └── intro.md ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── sidebars.js ├── src ├── components │ └── HomepageFeatures │ │ ├── index.js │ │ └── styles.module.css ├── css │ └── custom.css └── pages │ ├── index.js │ ├── index.module.css │ └── markdown-page.md └── static ├── .nojekyll └── img ├── docusaurus-social-card.jpg ├── docusaurus.png ├── favicon.ico ├── geme_profile.jpg ├── logo.png ├── logo.svg ├── undraw_docusaurus_mountain.svg ├── undraw_docusaurus_react.svg └── undraw_docusaurus_tree.svg /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: Sync Resources 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | branches: 9 | - main 10 | 11 | jobs: 12 | sync-resources: 13 | runs-on: ubuntu-latest 14 | 15 | steps: 16 | # Checkout the repository 17 | - name: Checkout Repository 18 | uses: actions/checkout@v3 19 | with: 20 | fetch-depth: 0 21 | 22 | # Debug: List repository structure 23 | - name: List Repository Structure 24 | run: | 25 | echo "Listing repository root:" 26 | ls -R . 27 | echo "Listing resources directory:" 28 | ls -R ./resources 29 | 30 | # Set up Node.js (use Node.js >=18.0) 31 | - name: Set up Node.js 32 | uses: actions/setup-node@v3 33 | with: 34 | node-version: 18 35 | 36 | # Install dependencies 37 | - name: Install Dependencies 38 | working-directory: ./website 39 | run: npm install 40 | 41 | # Sync resources 42 | - name: Sync Resources 43 | working-directory: . 44 | run: node sync-resources.js 45 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socioeconomic status, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. 8 | 9 | ## Our Standards 10 | 11 | Examples of behavior that contributes to a positive environment for our community include: 12 | 13 | - Demonstrating empathy and kindness toward other people 14 | - Being respectful of differing opinions, viewpoints, and experiences 15 | - Giving and gracefully accepting constructive feedback 16 | - Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience 17 | - Focusing on what is best not just for us as individuals, but for the overall community 18 | 19 | Examples of unacceptable behavior include: 20 | 21 | - The use of sexualized language or imagery, and sexual attention or advances of any kind 22 | - Trolling, insulting or derogatory comments, and personal or political attacks 23 | - Public or private harassment 24 | - Publishing others’ private information, such as a physical or email address, without their explicit permission 25 | - Other conduct which could reasonably be considered inappropriate in a professional setting 26 | 27 | ## Enforcement Responsibilities 28 | 29 | Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | Community leaders 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, and will communicate reasons for moderation decisions when appropriate. 32 | 33 | ## Scope 34 | 35 | This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. 36 | 37 | ## Enforcement 38 | 39 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [gemechis.elias@aastustudent.edu,et]. All complaints will be reviewed and investigated promptly and fairly. 40 | 41 | All community leaders are obligated to respect the privacy and security of the reporter of any incident. 42 | 43 | ## Enforcement Guidelines 44 | 45 | Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: 46 | 47 | ### 1. Correction 48 | **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. 49 | **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. 50 | 51 | ### 2. Warning 52 | **Community Impact**: A violation through a single incident or series of actions. 53 | **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. 54 | 55 | ### 3. Temporary Ban 56 | **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. 57 | **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. During this time, a resolution for conflict or an improvement in behavior is expected. 58 | 59 | ### 4. Permanent Ban 60 | **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. 61 | **Consequence**: A permanent ban from any sort of public interaction within the community. 62 | 63 | ## Attribution 64 | 65 | This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 2.1, available at [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html). 66 | 67 | For answers to common questions about this code of conduct, see the FAQ at [https://www.contributor-covenant.org/faq](https://www.contributor-covenant.org/faq). Translations are available at [https://www.contributor-covenant.org/translations](https://www.contributor-covenant.org/translations). 68 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | # Contribution Guidelines 3 | 4 | Welcome to the **AASTU Software Engineering Resource** project! This repository serves as a collection of resources for students at **Addis Ababa Science and Technology University**, designed to organize and share helpful materials such as links, PDFs, PPTs, and more. Contributions from the community are highly encouraged! 5 | 6 | --- 7 | 8 | ## How to Contribute 9 | 10 | Follow these steps to contribute to the project: 11 | 12 | ### **1. Prerequisites** 13 | To get started, ensure you have the following: 14 | - A GitHub account. 15 | - Basic knowledge of Git for version control. 16 | - [Node.js](https://nodejs.org/en/download/) version **18.0** or above installed on your machine: 17 | - During installation, check all options related to dependencies. 18 | 19 | --- 20 | 21 | ### **2. Fork the Repository** 22 | 1. Go to the [AASTU Software Engineering Resource repository](https://github.com/gemechis-elias/AASTU-Software-Engineering-Resource). 23 | 2. Click the **Fork** button (top-right) to create a copy of the repository under your account. 24 | 25 | --- 26 | 27 | ### **3. Clone the Repository** 28 | Clone the forked repository to your local machine: 29 | 30 | ```bash 31 | git clone https://github.com//AASTU-Software-Engineering-Resource.git 32 | cd AASTU-Software-Engineering-Resource 33 | ``` 34 | 35 | --- 36 | 37 | ### **4. Add Your Contribution** 38 | 39 | #### **Adding Resources** 40 | 1. Navigate to the appropriate folder in the `resources/` directory (e.g., `programming/`, `design/`, etc.). 41 | 2. Add your resource in the correct format (Markdown, PDF, etc.). 42 | 3. Ensure that the file is named clearly and appropriately. 43 | 44 | #### **Example Resource Format** (Markdown): 45 | ```markdown 46 | # Resource Title 47 | 48 | - **Type**: [Link/PDF/Book] 49 | - **Title**: [Resource Name] 50 | - **Link**: [https://example.com](https://example.com) 51 | - **Description**: A brief description of the resource. 52 | ``` 53 | 54 | #### **Run Resource Sync Script (Optional)** 55 | To ensure the resources are synced correctly: 56 | 57 | ```bash 58 | node sync-resources.js 59 | ``` 60 | 61 | --- 62 | 63 | ### **5. Test the Website Locally** 64 | Run the following commands to test the website locally: 65 | 66 | ```bash 67 | cd website 68 | npm install 69 | npm run start 70 | ``` 71 | 72 | This starts a local development server. Open your browser and go to `http://localhost:3000/` to see the website. 73 | 74 | --- 75 | 76 | ### **6. Commit and Push Your Changes** 77 | After adding your resources: 78 | 79 | 1. Stage your changes: 80 | ```bash 81 | git add . 82 | ``` 83 | 2. Commit your changes with a descriptive message: 84 | ```bash 85 | git commit -m "Add [resource name] to [category]" 86 | ``` 87 | 3. Push your changes to your forked repository: 88 | ```bash 89 | git push origin main 90 | ``` 91 | 92 | --- 93 | 94 | ### **7. Create a Pull Request** 95 | 1. Go to your forked repository on GitHub. 96 | 2. Click **Pull Request** > **New Pull Request**. 97 | 3. Compare changes between your fork and the main repository. 98 | 4. Add a descriptive title and explanation for your changes. 99 | 5. Submit the pull request for review. 100 | 101 | --- 102 | 103 | ## Code of Conduct 104 | Please adhere to our Code of Conduct to maintain a welcoming and inclusive environment. 105 | 106 | --- 107 | 108 | Thank you for contributing to the **AASTU Software Engineering Resource** project! 109 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Software Engineering Resources 2 | 3 | ![Node.js Version](https://img.shields.io/badge/Node.js-18.0-green) 4 | ![Docusaurus Version](https://img.shields.io/badge/Docusaurus-2.0-orange) 5 | ![GitHub Stars](https://img.shields.io/github/stars/gemechis-elias/AASTU-Software-Engineering-Resource?style=social) 6 | 7 | --- 8 | 9 | ## 🌟 Welcome to Software Engineering Resources 10 | 11 | This repository is a collaborative effort by **Addis Ababa Science and Technology University (AASTU)** Software Engineering students. Our mission is to create a centralized, well-organized, and easily accessible collection of learning resources such as books, PPTs, PDFs, code snippets, tests, and assignments. Together, we aim to empower students by sharing knowledge and supporting academic success. 12 | 13 | --- 14 | 15 | ## 🚀 Project Overview 16 | 17 | ### **Our Mission** 18 | 19 | Most resources are scattered or poorly organized. Our main goal is: 20 | - Collecting and organizing educational materials to make them accessible to everyone. 21 | - Providing a platform for students to practice and improve their Git and collaboration skills. 22 | 23 | The **website is automatically generated** from the resources in this repository using modern web technologies, ensuring it stays up-to-date with the latest contributions. 24 | 25 | Have any ideas or suggestions? [Contact us on Telegram](https://t.me/realgemechis). 26 | 27 | --- 28 | 29 | ## 🛠️ Technologies Used 30 | 31 | This project leverages the following technologies: 32 | - **Docusaurus**: To generate a static, user-friendly website from the repository content. 33 | - **Node.js**: For automating tasks like resource syncing. 34 | - **GitHub Actions**: To automate the syncing and deployment processes. 35 | - **Markdown**: To structure and format resources. 36 | 37 | --- 38 | 39 | ## ✍️ How to Contribute 40 | 41 | Interested in contributing to this project? Your contributions are highly valued! Here’s how you can help: 42 | 1. **Fork** this repository. 43 | 2. Add or organize resources in the appropriate directories. 44 | 3. Submit a **Pull Request** with your changes. 45 | 46 | ### Contribution Guidelines 47 | - Add resources in the correct format and directory. 48 | - Ensure filenames are clear and descriptive. 49 | - Be respectful of the community guidelines and focus on sharing quality content. 50 | 51 | --- 52 | 53 | ## 💛 Note to Contributors 54 | 55 | "We rise by lifting others." Please upload any resources you have that may help others. By sharing, you’re not only enriching this repository but also contributing to the success of fellow students. 56 | 57 | --- 58 | 59 | ## ⭐ Show Your Support 60 | 61 | If you find this project helpful, please consider giving it a star 🌟 on GitHub. Your support motivates us to keep improving and expanding this initiative! 62 | 63 | --- 64 | -------------------------------------------------------------------------------- /resources/Distributed Systems/Introduction.md: -------------------------------------------------------------------------------- 1 | # Distributed Systems Resources 2 | 3 | ## Online Courses 4 | 5 | - **Type**: [Link] 6 | - **Title**: What is a Distributed System? 7 | - **Link**: [https://www.geeksforgeeks.org/what-is-a-distributed-system/](https://www.geeksforgeeks.org/what-is-a-distributed-system/) 8 | - **Description**: A distributed system is a collection of independent computers that appear to the users of the system as a single coherent system... -------------------------------------------------------------------------------- /resources/Machine Learning/ml_python.md: -------------------------------------------------------------------------------- 1 | # Machine Learning Resources 2 | 3 | ## Online Courses 4 | 5 | - **Type**: [Link] 6 | - **Title**: Machine Learning by Andrew Ng on Coursera 7 | - **Link**: [https://www.coursera.org/learn/machine-learning](https://www.coursera.org/learn/machine-learning) 8 | - **Description**: A foundational course covering all aspects of machine learning, including supervised and unsupervised learning, delivered by one of the most recognized instructors in the field. 9 | 10 | - **Type**: [Link] 11 | - **Title**: Machine Learning Crash Course by Google 12 | - **Link**: [https://developers.google.com/machine-learning/crash-course](https://developers.google.com/machine-learning/crash-course) 13 | - **Description**: A quick-start guide with video lectures, real-world case studies, and hands-on exercises using TensorFlow APIs. 14 | 15 | ## Books 16 | 17 | - **Type**: [Book] 18 | - **Title**: "Pattern Recognition and Machine Learning" by Christopher M. Bishop 19 | - **Link**: [https://www.springer.com/gp/book/9780387310732](https://www.springer.com/gp/book/9780387310732) 20 | - **Description**: A comprehensive textbook providing an advanced introduction to pattern recognition and machine learning techniques. 21 | 22 | - **Type**: [Book] 23 | - **Title**: "Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow" by Aurélien Géron 24 | - **Link**: [https://www.oreilly.com/library/view/hands-on-machine-learning/9781492032632/](https://www.oreilly.com/library/view/hands-on-machine-learning/9781492032632/) 25 | - **Description**: A practical guide to building machine learning models with Python libraries. 26 | 27 | ## Libraries and Tools 28 | 29 | - **Type**: [Link] 30 | - **Title**: TensorFlow 31 | - **Link**: [https://www.tensorflow.org/](https://www.tensorflow.org/) 32 | - **Description**: An open-source library for machine learning models and a complete ecosystem for building, training, and deploying models. 33 | 34 | - **Type**: [Link] 35 | - **Title**: PyTorch 36 | - **Link**: [https://pytorch.org/](https://pytorch.org/) 37 | - **Description**: A flexible deep learning library widely used in research and production for building machine learning solutions. -------------------------------------------------------------------------------- /resources/Operating System/OS_Resourses.md: -------------------------------------------------------------------------------- 1 | # Operating Systems Resources 2 | 3 | ## Online Courses 4 | 5 | - **Type**: [Link] 6 | - **Title**: Operating Systems and System Programming by UC Berkeley (CS162) 7 | - **Link**: https://cs162.org/ 8 | - **Description**: A renowned course that delves into the design and implementation of operating systems, including process management, synchronization, and file systems. 9 | 10 | - **Type**: [Link] 11 | - **Title**: Operating Systems and You: Becoming a Power User by Google on Coursera 12 | - **Link**: https://www.coursera.org/learn/os-power-user 13 | - **Description**: A beginner-friendly course that introduces how operating systems work and how to manage them effectively. 14 | 15 | ## Books 16 | 17 | - **Type**: [Book] 18 | - **Title**: "Operating Systems: Three Easy Pieces" by Remzi H. Arpaci-Dusseau and Andrea C. Arpaci-Dusseau 19 | - **Link**: https://pages.cs.wisc.edu/~remzi/OSTEP/ 20 | - **Description**: A highly accessible and free textbook that introduces key concepts in operating systems, such as virtualization, concurrency, and persistence, with engaging explanations and practical examples. 21 | 22 | - **Type**: [Book] 23 | - **Title**: "The Little Book of Semaphores" by Allen B. Downey 24 | - **Link**: https://greenteapress.com/semaphores/LittleBookOfSemaphores.pdf 25 | - **Description**: A free book focused on synchronization principles in operating systems, providing step-by-step explanations and practical examples to understand semaphores and concurrency control. 26 | 27 | 28 | ## YouTube Videos 29 | 30 | - **Type**: [Video] 31 | - **Title**: Operating Systems Full Course by Neso Academy 32 | - **Link**: https://youtu.be/vBURTt97EkA?list=PLBlnK6fEyqRiVhbXDGLXDk_OQAeuVcp2O 33 | - **Description**: A comprehensive playlist covering all key topics in Operating Systems, including process management, memory management, and file systems, explained in an easy-to-understand manner. 34 | 35 | - **Type**: [Video] 36 | - **Title**: GATE Operating System Lectures by Knowledge Gate 37 | - **Link**: https://youtu.be/xw_OuOhjauw?list=PLmXKhU9FNesSFvj6gASuWmQd23Ul5omtD 38 | - **Description**: High-quality video lectures focused on Operating System concepts, useful for both university exams and competitive exams like GATE. 39 | 40 | - **Type**: [Video] 41 | - **Title**: Operating System Concepts by Jenny’s Lectures CS/IT NET&JRF 42 | - **Link**: https://youtu.be/RozoeWzT7IM?list=PLdo5W4Nhv31a5ucW_S1K3-x6ztBRD-PNa 43 | - **Description**: A beginner-friendly series explaining Operating System concepts in short, focused videos. 44 | 45 | ## Libraries and Tools 46 | 47 | - **Type**: [Link] 48 | - **Title**: Linux Kernel Development 49 | - **Link**: https://kernel.org/ 50 | - **Description**: The official website for the Linux kernel, offering the source code and tools for understanding and contributing to one of the most popular open-source operating systems. 51 | 52 | - **Type**: [Link] 53 | - **Title**: Minix Operating System 54 | - **Link**: http://www.minix3.org/ 55 | - **Description**: A lightweight, UNIX-like operating system designed for educational purposes, providing insights into operating system design and implementation. 56 | 57 | - **Type**: [Link] 58 | - **Title**: VirtualBox 59 | - **Link**: https://www.virtualbox.org/ 60 | - **Description**: A powerful x86 and AMD64/Intel64 virtualization software for running multiple operating systems simultaneously on a single machine. 61 | 62 | -------------------------------------------------------------------------------- /resources/Programming Languages/Dart.md: -------------------------------------------------------------------------------- 1 | # Dart Resources 2 | 3 | ## Online Courses 4 | 5 | - **Type**: [Link] 6 | - **Title**: Dart and Flutter: The Complete Developer's Guide 7 | - **Link**: [https://www.udemy.com/course/dart-and-flutter-the-complete-developers-guide/](https://www.udemy.com/course/dart-and-flutter-the-complete-developers-guide/) 8 | - **Description**: A comprehensive course on Dart and Flutter, covering everything from the basics to advanced topics. 9 | -------------------------------------------------------------------------------- /resources/Programming Languages/Java.md: -------------------------------------------------------------------------------- 1 | # Java Resources 2 | 3 | ## Online Courses 4 | 5 | - **Type**: [Link] 6 | - **Title**: Java Programming and Software Engineering Fundamentals by Duke University 7 | - **Link**: [https://www.coursera.org/specializations/java-programming](https://www.coursera.org/specializations/java-programming) 8 | - **Description**: A beginner-friendly specialization covering Java programming, data structures, and software engineering fundamentals. 9 | 10 | 11 | ## Books 12 | 13 | - **Type**: [Book] 14 | - **Title**: "Effective Java" by Joshua Bloch 15 | - **Link**: [https://www.amazon.com/Effective-Java-Joshua-Bloch/dp/0134685997](https://www.amazon.com/Effective-Java-Joshua-Bloch/dp/0134685997) 16 | - **Description**: A highly recommended book for intermediate and advanced Java developers, focusing on best practices and design patterns. 17 | 18 | 19 | 20 | ## Tutorials and Guides 21 | 22 | - **Type**: [Link] 23 | - **Title**: Java Programming Tutorials by GeeksforGeeks 24 | - **Link**: [https://www.geeksforgeeks.org/java/](https://www.geeksforgeeks.org/java/) 25 | - **Description**: A collection of tutorials covering Java basics, advanced topics, and practical implementations. 26 | 27 | 28 | ## Libraries and Frameworks 29 | 30 | - **Type**: [Link] 31 | - **Title**: Spring Framework 32 | - **Link**: [https://spring.io/](https://spring.io/) 33 | - **Description**: A popular Java framework for building enterprise-level applications, offering support for dependency injection, web development, and more. 34 | 35 | 36 | 37 | ## Practice and Competitive Programming 38 | 39 | - **Type**: [Link] 40 | - **Title**: HackerRank Java Challenges 41 | - **Link**: [https://www.hackerrank.com/domains/tutorials/10-days-of-java](https://www.hackerrank.com/domains/tutorials/10-days-of-java) 42 | - **Description**: A set of challenges designed to help you practice and master Java programming skills. 43 | 44 | - **Type**: [Link] 45 | - **Title**: LeetCode Java Problems 46 | - **Link**: [https://leetcode.com/problemset/all/?difficulty=Easy&listId=&search=java](https://leetcode.com/problemset/all/?difficulty=Easy&listId=&search=java) 47 | - **Description**: Solve real-world algorithm problems using Java and enhance your problem-solving skills. 48 | -------------------------------------------------------------------------------- /resources/Programming Languages/Javascript.md: -------------------------------------------------------------------------------- 1 | # JavaScript Resources 2 | 3 | ## Books 4 | 5 | - **Type**: [Book] 6 | - **Title**: Eloquent JavaScript 7 | - **Link**: [https://eloquentjavascript.net/Eloquent_JavaScript.pdf](https://eloquentjavascript.net/Eloquent_JavaScript.pdf) 8 | - **Description**: A beginner-friendly javascript comprhensive book wich covers beginner to advanced concepts. 9 | 10 | 11 | ## Books 12 | 13 | - **Type**: [Book] 14 | - **Title**: "Effective Java" by Joshua Bloch 15 | - **Link**: [https://www.amazon.com/Effective-Java-Joshua-Bloch/dp/0134685997](https://www.amazon.com/Effective-Java-Joshua-Bloch/dp/0134685997) 16 | - **Description**: A highly recommended book for intermediate and advanced Java developers, focusing on best practices and design patterns. 17 | 18 | 19 | 20 | ## Tutorials and Guides 21 | 22 | - **Type**: [Link] 23 | - **Title**: JavaScript Programming Tutorials by GeeksforGeeks 24 | - **Link**: [https://www.geeksforgeeks.org/javascript/](https://www.geeksforgeeks.org/javascript/) 25 | - **Description**: A collection of tutorials covering JavaScript basics, advanced topics, and practical implementations. 26 | 27 | 28 | ## Libraries and Frameworks 29 | 30 | - **Type**: [Link] 31 | - **Title**: React 32 | - **Link**: [https://react.dev/](https://react.dev/) 33 | - **Description**: A popular JavaScript framework for building high quality and scalable applications for the frontend. 34 | 35 | 36 | 37 | - **Type**: [Link] 38 | - **Title**: LeetCode Java Problems 39 | - **Link**: [https://leetcode.com/problemset/all/?difficulty=Easy&listId=&search=java](https://leetcode.com/problemset/all/?difficulty=Easy&listId=&search=java) 40 | - **Description**: Solve real-world algorithm problems using Java and enhance your problem-solving skills. 41 | -------------------------------------------------------------------------------- /resources/Programming Languages/Python.md: -------------------------------------------------------------------------------- 1 | # Python Resources 2 | 3 | ## Beginner-Friendly Tutorials 4 | - **Type**: Online Course 5 | - **Title**: Python for Everybody 6 | - **Link**: [https://www.py4e.com](https://www.py4e.com) 7 | - **Description**: A beginner-friendly course that covers Python basics and practical programming. 8 | 9 | ## Books 10 | - **Type**: Free PDF 11 | - **Title**: Automate the Boring Stuff with Python 12 | - **Link**: [https://automatetheboringstuff.com](https://automatetheboringstuff.com) 13 | - **Description**: Learn Python through practical, real-world examples. 14 | 15 | ## Tools 16 | - **Type**: Interactive Platform 17 | - **Title**: Replit 18 | - **Link**: [https://replit.com](https://replit.com) 19 | - **Description**: An online IDE to write, debug, and share Python code easily. 20 | -------------------------------------------------------------------------------- /sync-resources.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Use absolute paths 5 | const sourceDir = path.resolve(__dirname, './resources'); 6 | const targetDir = path.resolve(__dirname, './website/docs'); 7 | 8 | console.log('Source Directory:', sourceDir); 9 | console.log('Target Directory:', targetDir); 10 | 11 | function syncResources(source, target) { 12 | if (!fs.existsSync(source)) { 13 | console.error(`Source directory "${source}" does not exist.`); 14 | process.exit(1); 15 | } 16 | fs.readdirSync(source, { withFileTypes: true }).forEach((entry) => { 17 | const sourcePath = path.join(source, entry.name); 18 | const targetPath = path.join(target, entry.name); 19 | 20 | if (entry.isDirectory()) { 21 | if (!fs.existsSync(targetPath)) { 22 | fs.mkdirSync(targetPath, { recursive: true }); 23 | } 24 | syncResources(sourcePath, targetPath); 25 | } else { 26 | fs.copyFileSync(sourcePath, targetPath); 27 | } 28 | }); 29 | } 30 | 31 | if (!fs.existsSync(targetDir)) { 32 | fs.mkdirSync(targetDir, { recursive: true }); 33 | } 34 | 35 | syncResources(sourceDir, targetDir); 36 | console.log('✅ Resources synced successfully!'); 37 | -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Production 5 | /build 6 | 7 | # Generated files 8 | .docusaurus 9 | .cache-loader 10 | 11 | # Misc 12 | .DS_Store 13 | .env.local 14 | .env.development.local 15 | .env.test.local 16 | .env.production.local 17 | 18 | npm-debug.log* 19 | yarn-debug.log* 20 | yarn-error.log* 21 | -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- 1 | # Website 2 | 3 | This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator. 4 | 5 | ### Installation 6 | 7 | ``` 8 | $ yarn 9 | ``` 10 | 11 | ### Local Development 12 | 13 | ``` 14 | $ yarn start 15 | ``` 16 | 17 | This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. 18 | 19 | ### Build 20 | 21 | ``` 22 | $ yarn build 23 | ``` 24 | 25 | This command generates static content into the `build` directory and can be served using any static contents hosting service. 26 | 27 | ### Deployment 28 | 29 | Using SSH: 30 | 31 | ``` 32 | $ USE_SSH=true yarn deploy 33 | ``` 34 | 35 | Not using SSH: 36 | 37 | ``` 38 | $ GIT_USER= yarn deploy 39 | ``` 40 | 41 | If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch. 42 | -------------------------------------------------------------------------------- /website/blog/2024-12-27-software-engineering-curriculum.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | slug: software-engineering-curriculum 3 | title: Software Engineering Curriculum 4 | authors: [gemechis] 5 | tags: [curriculum, university, software-engineering] 6 | --- 7 | 8 | The current **Software Engineering Curriculum** for Addis Ababa Science and Technology University begins from the **2nd Year, 2nd Semester** and spans through the 5th year. Below is the detailed curriculum. 9 | 10 | :::info 11 | This curriculum provides an overview of the courses offered semester by semester, focusing on key topics essential for Software Engineering students. 12 | ::: 13 | 14 | ## 2nd Year, 2nd Semester (2.2) 15 | - Fundamentals of Programming 2 16 | - Digital Logic Design 17 | - Data Communication and Computer Networks 18 | - Database System 19 | - Probability and Statistics 20 | 21 | ## 3rd Year, 1st Semester (3.1) 22 | - Object-Oriented Programming 23 | - Data Structure and Algorithms 24 | - Computer Organization and Architecture 25 | - Internet Programming 1 26 | - System Analysis and Modelling 27 | 28 | ## 3rd Year, 2nd Semester (3.2) 29 | - Internet Programming 2 30 | - Software Requirements Engineering 31 | - Operating Systems 32 | - Advanced Programming 33 | - Formal Language and Automata Theory 34 | 35 | ## 4th Year, 1st Semester (4.1) 36 | - Principles of Compiler Design 37 | - Mobile Computing and Programming 38 | - Software Design and Architecture 39 | - Introduction to Artificial Intelligence 40 | - Computer Graphics 41 | - Integrated Engineering Team Project 42 | 43 | ## 4th Year, 2nd Semester (4.2) 44 | - Embedded Systems 45 | - Software Project Management 46 | - Software Quality Assurance and Testing 47 | - Research Methods in Software Engineering 48 | - Human-Computer Interaction 49 | - Introduction to Machine Learning 50 | 51 | :::note 52 | Students also participate in an **Industrial Internship** during the summer following the 4th year. 53 | ::: 54 | 55 | ## 5th Year, 1st Semester (5.1) 56 | - Senior Research Project Phase 1 57 | - Software Configuration Management 58 | - Elective 1 59 | - Computer System Security 60 | - Software Component Design 61 | - Open Source Software Paradigms 62 | - Distributed Systems 63 | 64 | ## 5th Year, 2nd Semester (5.2) 65 | - Senior Research Project Phase 2 66 | - Elective 2 67 | - Software Evolution and Maintenance 68 | - Software Defined System 69 | - Selected Topics in Software Engineering 70 | 71 | :::tip 72 | This curriculum is subject to updates by the university. Stay informed by checking official university announcements. 73 | ::: 74 | 75 | {/* truncate */} 76 | -------------------------------------------------------------------------------- /website/blog/authors.yml: -------------------------------------------------------------------------------- 1 | gemechis: 2 | name: Gemechis Elias 3 | title: 5th year, Software Engineering 4 | url: https://gemechis.dev 5 | image_url: https://github.com/gemechis-elias/AASTU-Software-Engineering-Resource/blob/main/website/static/img/geme_profile.jpg?raw=true 6 | page: true 7 | socials: 8 | x: realgemechis 9 | github: gemechis-elias 10 | -------------------------------------------------------------------------------- /website/blog/tags.yml: -------------------------------------------------------------------------------- 1 | facebook: 2 | label: curriculum 3 | permalink: /curriculum 4 | description: Software Engineering Curriculum 5 | -------------------------------------------------------------------------------- /website/docs/intro.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # Contribution Guidelines 6 | 7 | Welcome to the **AASTU Software Engineering Resource** project! This repository serves as a collection of resources for students at **Addis Ababa Science and Technology University**, designed to organize and share helpful materials such as links, PDFs, PPTs, and more. Contributions from the community are highly encouraged! 8 | 9 | --- 10 | 11 | ## How to Contribute 12 | 13 | Follow these steps to contribute to the project: 14 | 15 | ### **1. Prerequisites** 16 | To get started, ensure you have the following: 17 | - A GitHub account. 18 | - Basic knowledge of Git for version control. 19 | - [Node.js](https://nodejs.org/en/download/) version **18.0** or above installed on your machine: 20 | - During installation, check all options related to dependencies. 21 | 22 | --- 23 | 24 | ### **2. Fork the Repository** 25 | 1. Go to the [AASTU Software Engineering Resource repository](https://github.com/gemechis-elias/AASTU-Software-Engineering-Resource). 26 | 2. Click the **Fork** button (top-right) to create a copy of the repository under your account. 27 | 28 | --- 29 | 30 | ### **3. Clone the Repository** 31 | Clone the forked repository to your local machine: 32 | 33 | ```bash 34 | git clone https://github.com//AASTU-Software-Engineering-Resource.git 35 | cd AASTU-Software-Engineering-Resource 36 | ``` 37 | 38 | --- 39 | 40 | ### **4. Add Your Contribution** 41 | 42 | #### **Adding Resources** 43 | 1. Navigate to the appropriate folder in the `resources/` directory (e.g., `programming/`, `design/`, etc.). 44 | 2. Add your resource in the correct format (Markdown, PDF, etc.). 45 | 3. Ensure that the file is named clearly and appropriately. 46 | 47 | #### **Example Resource Format** (Markdown): 48 | ```markdown 49 | # Resource Title 50 | 51 | - **Type**: [Link/PDF/Book] 52 | - **Title**: [Resource Name] 53 | - **Link**: [https://example.com](https://example.com) 54 | - **Description**: A brief description of the resource. 55 | ``` 56 | 57 | #### **Run Resource Sync Script (Optional)** 58 | To ensure the resources are synced correctly: 59 | 60 | ```bash 61 | node sync-resources.js 62 | ``` 63 | 64 | --- 65 | 66 | ### **5. Test the Website Locally** 67 | Run the following commands to test the website locally: 68 | 69 | ```bash 70 | cd website 71 | npm install 72 | npm run start 73 | ``` 74 | 75 | This starts a local development server. Open your browser and go to `http://localhost:3000/` to see the website. 76 | 77 | --- 78 | 79 | ### **6. Commit and Push Your Changes** 80 | After adding your resources: 81 | 82 | 1. Stage your changes: 83 | ```bash 84 | git add . 85 | ``` 86 | 2. Commit your changes with a descriptive message: 87 | ```bash 88 | git commit -m "Add [resource name] to [category]" 89 | ``` 90 | 3. Push your changes to your forked repository: 91 | ```bash 92 | git push origin main 93 | ``` 94 | 95 | --- 96 | 97 | ### **7. Create a Pull Request** 98 | 1. Go to your forked repository on GitHub. 99 | 2. Click **Pull Request** > **New Pull Request**. 100 | 3. Compare changes between your fork and the main repository. 101 | 4. Add a descriptive title and explanation for your changes. 102 | 5. Submit the pull request for review. 103 | 104 | --- 105 | 106 | ## Code of Conduct 107 | Please adhere to our Code of Conduct to maintain a welcoming and inclusive environment. 108 | 109 | --- 110 | 111 | Thank you for contributing to the **AASTU Software Engineering Resource** project! 112 | -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | // `@type` JSDoc annotations allow editor autocompletion and type checking 3 | // (when paired with `@ts-check`). 4 | // There are various equivalent ways to declare your Docusaurus config. 5 | // See: https://docusaurus.io/docs/api/docusaurus-config 6 | 7 | import { themes as prismThemes } from 'prism-react-renderer'; 8 | 9 | // This runs in Node.js - Don't use client-side code here (browser APIs, JSX...) 10 | 11 | /** @type {import('@docusaurus/types').Config} */ 12 | const config = { 13 | title: 'Software Eng. Resource', 14 | tagline: 'Addis Ababa Science and Technology University', 15 | favicon: 'img/favicon.ico', 16 | 17 | // Set the production url of your site here 18 | url: 'https://aastu-software-resource.vercel.app', 19 | // Set the // pathname under which your site is served 20 | // For GitHub pages deployment, it is often '//' 21 | baseUrl: '/', 22 | 23 | // GitHub pages deployment config. 24 | // If you aren't using GitHub pages, you don't need these. 25 | organizationName: 'AASTU', // Usually your GitHub org/user name. 26 | projectName: 'Software Engineering Resource', // Usually your repo name. 27 | 28 | onBrokenLinks: 'throw', 29 | onBrokenMarkdownLinks: 'warn', 30 | 31 | // Even if you don't use internationalization, you can use this field to set 32 | // useful metadata like html lang. For example, if your site is Chinese, you 33 | // may want to replace "en" with "zh-Hans". 34 | i18n: { 35 | defaultLocale: 'en', 36 | locales: ['en'], 37 | }, 38 | 39 | presets: [ 40 | [ 41 | 'classic', 42 | /** @type {import('@docusaurus/preset-classic').Options} */ 43 | ({ 44 | docs: { 45 | sidebarPath: './sidebars.js', 46 | // Please change this to your repo. 47 | // Remove this to remove the "edit this page" links. 48 | editUrl: 49 | 'https://github.com/gemechis-elias/AASTU-Software-Engineering-Resource/blob/main/CONTRIBUTING.md', 50 | }, 51 | blog: { 52 | showReadingTime: true, 53 | feedOptions: { 54 | type: ['rss', 'atom'], 55 | xslt: true, 56 | }, 57 | // Please change this to your repo. 58 | 59 | // Useful options to enforce blogging best practices 60 | onInlineTags: 'warn', 61 | onInlineAuthors: 'warn', 62 | onUntruncatedBlogPosts: 'warn', 63 | }, 64 | theme: { 65 | customCss: './src/css/custom.css', 66 | }, 67 | }), 68 | ], 69 | ], 70 | 71 | themeConfig: 72 | /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ 73 | ({ 74 | // Replace with your project's social card 75 | image: 'img/docusaurus-social-card.jpg', 76 | navbar: { 77 | title: 'AASTU Software Engineering Resource', 78 | logo: { 79 | alt: 'AASTU Logo', 80 | src: 'img/logo.png', 81 | }, 82 | items: [ 83 | { 84 | type: 'docSidebar', 85 | sidebarId: 'ResourcesSidebar', 86 | position: 'left', 87 | label: 'Resources', 88 | }, 89 | {to: '/blog', label: 'Blog', position: 'left'}, 90 | { 91 | href: 'https://github.com/gemechis-elias/AASTU-Software-Engineering-Resource', 92 | label: 'GitHub', 93 | position: 'right', 94 | }, 95 | ], 96 | }, 97 | footer: { 98 | style: 'dark', 99 | links: [ 100 | { 101 | title: 'Docs', 102 | items: [ 103 | { 104 | label: 'Resources', 105 | to: '/docs/intro', 106 | }, 107 | ], 108 | }, 109 | { 110 | title: 'Community', 111 | items: [ 112 | { 113 | label: 'Telegram', 114 | href: 'https://t.me/innovate_aastu', 115 | }, 116 | { 117 | label: 'Linkedin', 118 | href: 'https://www.linkedin.com/company/innovate-aastu', 119 | }, 120 | 121 | ], 122 | }, 123 | { 124 | title: 'More', 125 | items: [ 126 | { 127 | label: 'Blog', 128 | to: '/blog', 129 | }, 130 | { 131 | label: 'GitHub', 132 | href: 'https://github.com/gemechis-elias/AASTU-Software-Engineering-Resource', 133 | }, 134 | ], 135 | }, 136 | ], 137 | copyright: `Copyright © ${new Date().getFullYear()} Gemechis Elias, Inc. Built with Docusaurus.`, 138 | }, 139 | prism: { 140 | theme: prismThemes.github, 141 | darkTheme: prismThemes.dracula, 142 | }, 143 | }), 144 | }; 145 | 146 | export default config; 147 | -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "website", 3 | "version": "0.0.0", 4 | "private": true, 5 | "scripts": { 6 | "docusaurus": "docusaurus", 7 | "sync-resources": "node ../sync-resources.js", 8 | "build": "npm run sync-resources && docusaurus build", 9 | "start": "npm run sync-resources && docusaurus start", 10 | "swizzle": "docusaurus swizzle", 11 | "deploy": "docusaurus deploy", 12 | "clear": "docusaurus clear", 13 | "serve": "docusaurus serve", 14 | "write-translations": "docusaurus write-translations", 15 | "write-heading-ids": "docusaurus write-heading-ids" 16 | 17 | 18 | }, 19 | "dependencies": { 20 | "@docusaurus/core": "3.6.3", 21 | "@docusaurus/preset-classic": "3.6.3", 22 | "@mdx-js/react": "^3.0.0", 23 | "clsx": "^2.0.0", 24 | "prism-react-renderer": "^2.3.0", 25 | "react": "^18.0.0", 26 | "react-dom": "^18.0.0" 27 | }, 28 | "devDependencies": { 29 | "@docusaurus/module-type-aliases": "3.6.3", 30 | "@docusaurus/types": "3.6.3" 31 | }, 32 | "browserslist": { 33 | "production": [ 34 | ">0.5%", 35 | "not dead", 36 | "not op_mini all" 37 | ], 38 | "development": [ 39 | "last 3 chrome version", 40 | "last 3 firefox version", 41 | "last 5 safari version" 42 | ] 43 | }, 44 | "engines": { 45 | "node": ">=18.0" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /website/sidebars.js: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | 3 | // This runs in Node.js - Don't use client-side code here (browser APIs, JSX...) 4 | 5 | /** 6 | * Creating a sidebar enables you to: 7 | - create an ordered group of docs 8 | - render a sidebar for each doc of that group 9 | - provide next/previous navigation 10 | 11 | The sidebars can be generated from the filesystem, or explicitly defined here. 12 | 13 | Create as many sidebars as you want. 14 | 15 | @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} 16 | */ 17 | const sidebars = { 18 | // By default, Docusaurus generates a sidebar from the docs folder structure 19 | ResourcesSidebar: [{type: 'autogenerated', dirName: '.'}], 20 | 21 | // But you can create a sidebar manually 22 | /* 23 | ResourcesSidebar: [ 24 | 'intro', 25 | 'hello', 26 | { 27 | type: 'category', 28 | label: 'Resources', 29 | items: ['tutorial-basics/create-a-document'], 30 | }, 31 | ], 32 | */ 33 | }; 34 | 35 | export default sidebars; 36 | -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- 1 | import Heading from '@theme/Heading'; 2 | import clsx from 'clsx'; 3 | import styles from './styles.module.css'; 4 | 5 | const FeatureList = [ 6 | { 7 | title: 'Collaboration', 8 | Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, 9 | description: ( 10 | <> 11 | Let's work together to build a comprehensive software engineering resource for AASTU students. Visit out GitHub repository to contribute or suggest changes. 12 | 13 | ), 14 | }, 15 | { 16 | title: 'Sharing is Caring', 17 | Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, 18 | description: ( 19 | <> 20 | Share resources, tutorials, and other helpful materials with your fellow students. Let's make the learning process easier for everyone. Thanks for your contribution! 21 | 22 | ), 23 | }, 24 | { 25 | title: 'Community Building', 26 | Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, 27 | description: ( 28 | <> 29 | Join our Telegram group and LinkedIn page to stay up-to-date with the latest news and updates. Let's build a strong community of software engineers at AASTU! 30 | 31 | ), 32 | }, 33 | ]; 34 | 35 | function Feature({Svg, title, description}) { 36 | return ( 37 |
38 |
39 | 40 |
41 |
42 | {title} 43 |

{description}

44 |
45 |
46 | ); 47 | } 48 | 49 | export default function HomepageFeatures() { 50 | return ( 51 |
52 |
53 |
54 | {FeatureList.map((props, idx) => ( 55 | 56 | ))} 57 |
58 |
59 |
60 | ); 61 | } 62 | -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- 1 | .features { 2 | display: flex; 3 | align-items: center; 4 | padding: 2rem 0; 5 | width: 100%; 6 | } 7 | 8 | .featureSvg { 9 | height: 200px; 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Any CSS included here will be global. The classic template 3 | * bundles Infima by default. Infima is a CSS framework designed to 4 | * work well for content-centric websites. 5 | */ 6 | 7 | /* You can override the default Infima variables here. */ 8 | :root { 9 | --ifm-color-primary: #a38901; 10 | --ifm-color-primary-dark: #beab48; 11 | --ifm-color-primary-darker: #277148; 12 | --ifm-color-primary-darkest: #205d3b; 13 | --ifm-color-primary-light: #33925d; 14 | --ifm-color-primary-lighter: #359962; 15 | --ifm-color-primary-lightest: #3cad6e; 16 | --ifm-code-font-size: 95%; 17 | --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); 18 | } 19 | 20 | /* For readability concerns, you should choose a lighter palette in dark mode. */ 21 | [data-theme='dark'] { 22 | --ifm-color-primary: #25c2a0; 23 | --ifm-color-primary-dark: #21af90; 24 | --ifm-color-primary-darker: #1fa588; 25 | --ifm-color-primary-darkest: #1a8870; 26 | --ifm-color-primary-light: #29d5b0; 27 | --ifm-color-primary-lighter: #32d8b4; 28 | --ifm-color-primary-lightest: #4fddbf; 29 | --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3); 30 | } 31 | -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- 1 | import Link from '@docusaurus/Link'; 2 | import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; 3 | import HomepageFeatures from '@site/src/components/HomepageFeatures'; 4 | import Layout from '@theme/Layout'; 5 | import clsx from 'clsx'; 6 | 7 | import Heading from '@theme/Heading'; 8 | import styles from './index.module.css'; 9 | 10 | function HomepageHeader() { 11 | const {siteConfig} = useDocusaurusContext(); 12 | return ( 13 |
14 |
15 | 16 | {siteConfig.title} 17 | 18 |

{siteConfig.tagline}

19 |
20 | 23 | Contribution Guideline - 1min ⏱️ 24 | 25 |
26 |
27 |
28 | ); 29 | } 30 | 31 | export default function Home() { 32 | const {siteConfig} = useDocusaurusContext(); 33 | return ( 34 | 37 | 38 |
39 | 40 |
41 |
42 | ); 43 | } 44 | -------------------------------------------------------------------------------- /website/src/pages/index.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * CSS files with the .module.css suffix will be treated as CSS modules 3 | * and scoped locally. 4 | */ 5 | 6 | .heroBanner { 7 | padding: 4rem 0; 8 | text-align: center; 9 | position: relative; 10 | overflow: hidden; 11 | } 12 | 13 | @media screen and (max-width: 996px) { 14 | .heroBanner { 15 | padding: 2rem; 16 | } 17 | } 18 | 19 | .buttons { 20 | display: flex; 21 | align-items: center; 22 | justify-content: center; 23 | } 24 | -------------------------------------------------------------------------------- /website/src/pages/markdown-page.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Markdown page example 3 | --- 4 | 5 | # Markdown page example 6 | 7 | You don't need React to write simple standalone pages. 8 | -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chisa-dev/AASTU-Software-Engineering-Resource/6b09b1cb9286c1b35389d8324a09ff3cc4937893/website/static/.nojekyll -------------------------------------------------------------------------------- /website/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chisa-dev/AASTU-Software-Engineering-Resource/6b09b1cb9286c1b35389d8324a09ff3cc4937893/website/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /website/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chisa-dev/AASTU-Software-Engineering-Resource/6b09b1cb9286c1b35389d8324a09ff3cc4937893/website/static/img/docusaurus.png -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chisa-dev/AASTU-Software-Engineering-Resource/6b09b1cb9286c1b35389d8324a09ff3cc4937893/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/geme_profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chisa-dev/AASTU-Software-Engineering-Resource/6b09b1cb9286c1b35389d8324a09ff3cc4937893/website/static/img/geme_profile.jpg -------------------------------------------------------------------------------- /website/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chisa-dev/AASTU-Software-Engineering-Resource/6b09b1cb9286c1b35389d8324a09ff3cc4937893/website/static/img/logo.png -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- 1 | 2 | Easy to Use 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- 1 | 2 | Powered by React 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- 1 | 2 | Focus on What Matters 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | --------------------------------------------------------------------------------