{"id":15009595,"url":"https://github.com/kausar2nd/ScheduLumos","last_synced_at":"2025-10-06T08:32:00.710Z","repository":{"id":255585859,"uuid":"849806955","full_name":"kausaraahmed/ScheduLumos","owner":"kausaraahmed","description":"ScheduLumos is a web application designed to simulate and visualize various CPU scheduling algorithms. The application allows users to input parameters such as arrival time, burst time, and priority to understand how different algorithms schedule processes.","archived":false,"fork":false,"pushed_at":"2024-10-05T09:04:53.000Z","size":548,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-18T09:46:17.011Z","etag":null,"topics":["css3","flask","html5","js","py"],"latest_commit_sha":null,"homepage":"https://cpuscheduler.vercel.app/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kausaraahmed.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-30T09:34:21.000Z","updated_at":"2024-12-05T13:50:42.000Z","dependencies_parsed_at":"2024-09-28T17:10:27.877Z","dependency_job_id":null,"html_url":"https://github.com/kausaraahmed/ScheduLumos","commit_stats":null,"previous_names":["kausaraahmed/schedulumos"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kausaraahmed%2FScheduLumos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kausaraahmed%2FScheduLumos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kausaraahmed%2FScheduLumos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kausaraahmed%2FScheduLumos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kausaraahmed","download_url":"https://codeload.github.com/kausaraahmed/ScheduLumos/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235515428,"owners_count":19002481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css3","flask","html5","js","py"],"created_at":"2024-09-24T19:26:52.007Z","updated_at":"2025-10-06T08:32:00.700Z","avatar_url":"https://github.com/kausaraahmed.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ScheduLumos\n\n![ScheduLumos Screenshot](static/images/screenshot.png)\n\n## Table of Contents\n\n- [Introduction](#introduction)\n\n- [Features](#features)\n\n- [Technologies Used](#technologies-used)\n\n- [Setup](#setup)\n\n- [Usage](#usage)\n\n- [Deployed Site](#deployed-site)\n\n- [License](#license)\n\n- [Contributing](#contributing)\n\n## Introduction\n\n**ScheduLumos** is a web application designed to simulate and visualize various CPU scheduling algorithms. The\napplication allows users to input parameters such as arrival time, burst time, and priority to understand how different\nalgorithms schedule processes. This tool is particularly useful for students and educators in computer science to learn\nand demonstrate the behavior of CPU scheduling algorithms.\n\n## Features\n\n- **Multiple Algorithms**: Supports various CPU scheduling algorithms including:\n\n- First-Come, First-Served (FCFS)\n\n- Shortest Job First (SJF) - Preemptive and Non-Preemptive\n\n- Priority Scheduling\n\n- Round Robin (RR)\n\n- **Interactive Input**: Users can input process details like arrival time, burst time, and priority through an\n  intuitive UI.\n\n- **Exception Handling**: It is also packed with error handling capabilities. for example, provokes non-numeric input,\n  uneven arrival and burst time, and such.\n\n- **Results Visualization**: The site displays the execution order of processes along with average waiting time,\n  turnaround time, and other relevant metrics.\n\n- **Download Results**: Users can download the scheduling results as a `.txt` file for further analysis.\n\n- **Responsive Design**: The interface is responsive and works well on both desktop and mobile devices.\n\n## Technologies Used\n\n- **Frontend**:\n\n- HTML5\n\n- CSS3 (with Google Fonts integration)\n\n- JavaScript (for interactive features)\n\n- **Backend**:\n\n- Python\n\n- Flask (web framework)\n\n- **Deployment**:\n\n- Render (for hosting the application)\n\n- GitHub (for version control and continuous deployment)\n\n## Structure\n\n``` bash\nScheduLumos\n├─ app.py\n├─ LICENSE\n├─ python\n│  ├─ fcfs.py\n│  ├─ priority_scheduling.py\n│  ├─ round_robin.py\n│  ├─ run_algorithms.py\n│  ├─ sjf_non_preemptive.py\n│  ├─ sjf_preemptive.py\n│  ├─ tempCodeRunnerFile.py\n│  └─ utils.py\n├─ readme.md\n├─ requirements.txt\n├─ static\n│  ├─ css\n│  │  ├─ algorithm_page_style.css\n│  │  ├─ compare_style.css\n│  │  └─ styles.css\n│  ├─ images\n│  │  └─ \u003cimage assets\u003e\n│  └─ js\n│     ├─ compare.js\n│     ├─ fcfs.js\n│     ├─ priority_schedule.js\n│     ├─ round_robin.js\n│     ├─ sjf_non_preemptive.js\n│     └─ sjf_preemptive.js\n├─ templates\n│  ├─ compare.html\n│  ├─ fcfs.html\n│  ├─ index.html\n│  ├─ priority_scheduling.html\n│  ├─ round_robin.html\n│  ├─ sjf_non_preemptive.html\n│  └─ sjf_preemptive.html\n└─ vercel.json\n```\n\n## Setup\n\n### Prerequisites\n\n- Python 3.x\n\n- Git (for cloning the repository)\n\n- A modern web browser\n\n### Installation\n\n1. **Clone the repository:**\n\n   ```bash\n\n   git clone https://github.com/kausaraahmed/scheduLumos.git\n\n   cd scheduLumos\n\n   ```\n\n2. **Install dependencies:**\n\n   It's recommended to use a virtual environment:\n\n   ```bash\n\n   python3 -m venv venv\n\n   source venv/bin/activate # On Windows use `venv\\Scripts\\activate`\n\n   pip  install  -r  requirements.txt\n\n   ```\n\n3. **Run the application locally:**\n\n   ```bash\n\n   python app.py\n\n   ```\n\nThe application will be accessible at `http://127.0.0.1:5000/`.\n\n### Deployment\n\nThe application is deployed on [Render](https://render.com/). To deploy your own version, push your changes to GitHub,\nand Render will automatically build and deploy the application.\n\n## Usage\n\n1. **Access the application:**\n   Open the deployed site or run it locally as described above.\n\n2. **Navigate through scheduling options:**\n   From the main menu, select the scheduling algorithm you want to simulate.\n\n3. **Input process details:**\n   Provide the necessary inputs like arrival time, burst time, and priority (if applicable).\n\n4. **Run the algorithm:**\n   Click on the \"Run Algorithm\" button to view the scheduling results.\n\n5. **Download results:**\n   After the results are displayed, click the download icon in the top right corner to save the results as a `.txt`\n   file.\n\n## Deployed Site\n\nThe application is live and accessible at: [https://schedulumos.vercel.app](https://schedulumos.vercel.app)\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Contributing\n\nContributions are welcome! Please fork the repository and create a pull request with your changes. Ensure that your code\nfollows the existing style and conventions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkausar2nd%2FScheduLumos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkausar2nd%2FScheduLumos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkausar2nd%2FScheduLumos/lists"}