{"id":30697456,"url":"https://github.com/ifulxploit/github-final-project","last_synced_at":"2025-09-02T09:09:34.500Z","repository":{"id":309555235,"uuid":"1036720081","full_name":"ifulxploit/github-final-project","owner":"ifulxploit","description":"coursora simple project depsops","archived":false,"fork":false,"pushed_at":"2025-08-12T13:52:21.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-12T15:34:37.841Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ifulxploit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null}},"created_at":"2025-08-12T13:40:34.000Z","updated_at":"2025-08-12T13:52:24.000Z","dependencies_parsed_at":"2025-08-12T15:34:39.412Z","dependency_job_id":"a8b4b94c-83dc-48a5-b914-092a6e0091ce","html_url":"https://github.com/ifulxploit/github-final-project","commit_stats":null,"previous_names":["ifulxploit/github-final-project"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ifulxploit/github-final-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifulxploit%2Fgithub-final-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifulxploit%2Fgithub-final-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifulxploit%2Fgithub-final-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifulxploit%2Fgithub-final-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ifulxploit","download_url":"https://codeload.github.com/ifulxploit/github-final-project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifulxploit%2Fgithub-final-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273258220,"owners_count":25073633,"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","status":"online","status_checked_at":"2025-09-02T02:00:09.530Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2025-09-02T09:09:31.298Z","updated_at":"2025-09-02T09:09:34.480Z","avatar_url":"https://github.com/ifulxploit.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple Interest Calculator\n\n![[Simple Interest Calculator Banner]([https://img.shields.io/badge/Author-Saiful%20Miqdar-blue?style=flat-square](https://i1.sndcdn.com/artworks-bbhKX94ncwayTyEb-WNNpfQ-t500x500.jpg)](https://i1.sndcdn.com/artworks-bbhKX94ncwayTyEb-WNNpfQ-t500x500.jpg)\n\n## Overview\n\nWelcome to the **Simple Interest Calculator** — a lightweight and interactive Bash script designed to help you quickly calculate simple interest based on user input. This tool features a user-friendly menu, input validation, and a neat ASCII art banner to make your command-line experience more enjoyable.\n\n---\n\n## Features\n\n* Interactive **menu-driven interface** for easy navigation\n* Validates user inputs to ensure **positive and valid numbers**\n* Calculates simple interest accurately with **decimal support**\n* Clean and informative output display showing all inputs and results\n* Built entirely in Bash — no additional dependencies except `bc` for floating-point arithmetic\n* Lightweight and ideal for learning basic shell scripting and finance calculations\n\n---\n\n## How It Works\n\nThe script asks for three inputs from the user:\n\n1. **Principal amount (P)** — The initial amount of money invested or loaned\n2. **Annual rate of interest (R%)** — The yearly interest rate as a percentage\n3. **Time period (T)** — The duration in years for which the money is invested or borrowed\n\nThen it calculates the simple interest using the formula:\n\n```\nSimple Interest = (P × R × T) / 100\n```\n\nThe result is displayed with a summary of the inputs for easy verification.\n\n---\n\n## Usage Instructions\n\n1. Open your terminal or command line.\n2. Navigate to the directory containing the `simple-interest.sh` script.\n3. Make sure the script is executable by running:\n\n   ```\n   chmod +x simple-interest.sh\n   ```\n4. Run the script:\n\n   ```\n   ./simple-interest.sh\n   ```\n5. Follow the on-screen prompts to enter principal, interest rate, and time.\n6. Choose to calculate or exit using the menu options.\n\n---\n\n## Example Session\n\n```\n===================================\n   SIMPLE INTEREST CALCULATOR      \n           by Saiful Miqdar        \n===================================\n\nSelect an option:\n1) Calculate Simple Interest\n2) Exit\nEnter your choice [1-2]: 1\n\nEnter the principal amount (positive number):\n1000\nEnter the annual rate of interest (in %):\n5\nEnter the time period in years (positive number):\n3\n\n-----------------------------------\nPrincipal Amount: 1000\nRate of Interest: 5%\nTime Period: 3 years\nSimple Interest: 150.00\n-----------------------------------\n```\n\n---\n\n## Prerequisites\n\n* A Unix-like operating system (Linux, macOS)\n* Bash shell\n* `bc` command-line calculator for decimal arithmetic (usually pre-installed)\n\n---\n\n## Author\n\n**Saiful Miqdar**\nPassionate about combining coding and engineering solutions. Feel free to connect!\n\n---\n\n## License\n\nThis script is provided as-is for educational purposes.\n\n---\n\nIf you'd like, I can also help you prepare the `LICENSE` file or any other documentation needed!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fifulxploit%2Fgithub-final-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fifulxploit%2Fgithub-final-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fifulxploit%2Fgithub-final-project/lists"}