From 5dcca8e88be1c07f46b9ba6ddaee692a227e2cc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20=C3=96zdemir?= <66470869+1DeliDolu@users.noreply.github.com> Date: Thu, 4 Dec 2025 13:50:49 +0100 Subject: [PATCH 1/6] Add author name to the code of conduct --- CODE_OF_CONDUCT.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 18c91471..690485d7 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -126,3 +126,5 @@ enforcement ladder](https://github.com/mozilla/diversity). For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. + +by Mustafa From 9539e06c5151a9949881e1de551a21462984c319 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20=C3=96zdemir?= <66470869+1DeliDolu@users.noreply.github.com> Date: Thu, 4 Dec 2025 13:51:23 +0100 Subject: [PATCH 2/6] Update CONTRIBUTING.md with contribution guidelines This document outlines the guidelines for contributing to the development of Shipping Rates and Calculations, including code style, documentation, testing, issue tracking, and code review. --- CONTRIBUTING.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a086fa47..a0387035 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1 +1,20 @@ -All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome. +Contribution guidelines +Welcome Contributors! +Thank you for considering contributing to the centralized repository. This document outlines the guidelines for contributing to the development of Shipping Rates and Calculations. + +Code style +Please follow the coding style and conventions used in the existing codebase. This helps maintain consistency across the project. + +Documentation +Ensure that your contributions are well-documented. Include comments in your code where necessary and provide a clear and concise description of your changes in the pull request. + +Testing +Before submitting a pull request, make sure your changes have been tested thoroughly. Include relevant test cases and ensure that existing tests pass. + +Issue tracker +Check the issue tracker for any open issues or feature requests. If you're working on something, please comment on the issue to let others know. + +Code review +All contributions will go through a code review process. Be open to feedback and be willing to make changes if necessary. Code reviews help maintain code quality and consistency. + +Thank you for your contribution! From 698027e7fdf2980c8cc578094dbdacded272e1a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20=C3=96zdemir?= Date: Thu, 4 Dec 2025 14:03:30 +0100 Subject: [PATCH 3/6] Fix typo in README.md - added colon after Output --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b1034661..b61147a2 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Input: p, principal amount t, time period in years r, annual rate of interest -Output +Output: simple interest = p*t*r ``` From b2457e17d70e23ccac65e3fd050fc787d578955d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20=C3=96zdemir?= <66470869+1DeliDolu@users.noreply.github.com> Date: Thu, 4 Dec 2025 14:09:06 +0100 Subject: [PATCH 4/6] Revise README to focus on calculator output Removed introductory section and copyright notice. --- README.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/README.md b/README.md index b61147a2..b43b6dac 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,8 @@ -# Introduction to Git and GitHub - -## Simple Interest Calculator - A calculator that calculates simple interest given principal, annual rate of interest and time period in years. -``` Input: p, principal amount t, time period in years r, annual rate of interest -Output: +Output simple interest = p*t*r -``` - -_© 2022 XYZ, Inc._ From aa0f6a138cfc42f9ef79c1b6ea6715a9dc1ed282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20=C3=96zdemir?= <66470869+1DeliDolu@users.noreply.github.com> Date: Thu, 4 Dec 2025 14:09:52 +0100 Subject: [PATCH 5/6] Update README with input and output specifications Added input and output format details for the calculator. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b43b6dac..28dddce0 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,11 @@ A calculator that calculates simple interest given principal, annual rate of interest and time period in years. +``` + Input: p, principal amount t, time period in years r, annual rate of interest Output simple interest = p*t*r +``` From e86e7345b2cb4e91cb17c8a9d291bd5c66c452a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20=C3=96zdemir?= Date: Thu, 4 Dec 2025 14:14:37 +0100 Subject: [PATCH 6/6] Complete README.md with project title and copyright footer --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 28dddce0..b61147a2 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,16 @@ +# Introduction to Git and GitHub + +## Simple Interest Calculator + A calculator that calculates simple interest given principal, annual rate of interest and time period in years. ``` - Input: p, principal amount t, time period in years r, annual rate of interest -Output +Output: simple interest = p*t*r ``` + +_© 2022 XYZ, Inc._