From d000aa2d7fcfe236e19337a79d9882c4ff1b8618 Mon Sep 17 00:00:00 2001 From: iamrahul8 Date: Tue, 13 Sep 2022 00:56:05 +0530 Subject: [PATCH 01/10] Day 5 - added markdown file Signed-off-by: iamrahul8 Challenge -6 : Updated markdown file Signed-off-by: iamrahul8 --- contributors/iamrahul8/iamrahul8.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 contributors/iamrahul8/iamrahul8.md diff --git a/contributors/iamrahul8/iamrahul8.md b/contributors/iamrahul8/iamrahul8.md new file mode 100644 index 000000000..131f8ca3e --- /dev/null +++ b/contributors/iamrahul8/iamrahul8.md @@ -0,0 +1,5 @@ +--- +name: Rahul Kumar +github_user: iamrahul8 +url_of_github_issue: https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/105 +--- \ No newline at end of file From 22a33d6d0809dcf528e50b38e998b076ec91d917 Mon Sep 17 00:00:00 2001 From: iamrahul8 Date: Tue, 13 Sep 2022 01:48:38 +0530 Subject: [PATCH 02/10] Challenge 10 - updated iamrahul8.md with signed commit Signed-off-by: iamrahul8 --- contributors/iamrahul8/iamrahul8.md | 1 + 1 file changed, 1 insertion(+) diff --git a/contributors/iamrahul8/iamrahul8.md b/contributors/iamrahul8/iamrahul8.md index 131f8ca3e..719d211f8 100644 --- a/contributors/iamrahul8/iamrahul8.md +++ b/contributors/iamrahul8/iamrahul8.md @@ -2,4 +2,5 @@ name: Rahul Kumar github_user: iamrahul8 url_of_github_issue: https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/105 +your_favroite_programming_language: c++ --- \ No newline at end of file From 420b16df855dd06c20ab79762a96214ebdb3b224 Mon Sep 17 00:00:00 2001 From: iamrahul8 Date: Thu, 15 Sep 2022 14:31:23 +0530 Subject: [PATCH 03/10] Challenge 15 - adde name to the list of challengers md file Signed-off-by: iamrahul8 --- challengers-list.md | 1 + 1 file changed, 1 insertion(+) diff --git a/challengers-list.md b/challengers-list.md index 47394f4f2..f0fd2e905 100644 --- a/challengers-list.md +++ b/challengers-list.md @@ -1,3 +1,4 @@ # List of challengers 1. [Mrinal](https://github.com/mrinal1224) 2. [Shivay](https://github.com/shivaylamba) +3. [Rahul](https://github.com/iamrahul8) From 6351d8bad14e3165de12c9c7c2f04c1dc666474a Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Sun, 18 Sep 2022 17:15:04 +0530 Subject: [PATCH 04/10] Challenge -18 : Created gist md file and added 2 gist links Signed-off-by: Rahul Kumar --- contributors/iamrahul8/gist-solutions.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 contributors/iamrahul8/gist-solutions.md diff --git a/contributors/iamrahul8/gist-solutions.md b/contributors/iamrahul8/gist-solutions.md new file mode 100644 index 000000000..996740c2f --- /dev/null +++ b/contributors/iamrahul8/gist-solutions.md @@ -0,0 +1,7 @@ +# Challenge 18 + +Software development related topic - Database : Amazon Web Services +Gist link - https://gist.github.com/iamrahul8/cb81fc0b92db532dc0bf563ba7cfdb12 + +Code Snippet - C++ Program to Check Whether a Number is Prime or Not +Gist link - https://gist.github.com/iamrahul8/abdce30ba228552fbd5fee1bc69279e2 \ No newline at end of file From 4cf25a7aec3107b69c3b1b45ff4f73bb56345496 Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Mon, 19 Sep 2022 16:55:28 +0530 Subject: [PATCH 05/10] Challenge 19 : added hello world cpp file Signed-off-by: Rahul Kumar --- contributors/iamrahul8/helloworld.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 contributors/iamrahul8/helloworld.cpp diff --git a/contributors/iamrahul8/helloworld.cpp b/contributors/iamrahul8/helloworld.cpp new file mode 100644 index 000000000..7867d625a --- /dev/null +++ b/contributors/iamrahul8/helloworld.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello World!"; + return 0; +} From 1ec88d8cf57cb8454264b4918171c26881cb3446 Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Mon, 19 Sep 2022 19:58:09 +0530 Subject: [PATCH 06/10] code modified and formated Signed-off-by: Rahul Kumar --- contributors/iamrahul8/demo.py | 1 + contributors/iamrahul8/helloworld.cpp | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) create mode 100644 contributors/iamrahul8/demo.py delete mode 100644 contributors/iamrahul8/helloworld.cpp diff --git a/contributors/iamrahul8/demo.py b/contributors/iamrahul8/demo.py new file mode 100644 index 000000000..1dc45ac13 --- /dev/null +++ b/contributors/iamrahul8/demo.py @@ -0,0 +1 @@ +print("Hello World!") \ No newline at end of file diff --git a/contributors/iamrahul8/helloworld.cpp b/contributors/iamrahul8/helloworld.cpp deleted file mode 100644 index 7867d625a..000000000 --- a/contributors/iamrahul8/helloworld.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include - -int main() { - std::cout << "Hello World!"; - return 0; -} From df3beaf83498ea6234afdafe6666ffe3f64213ea Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Mon, 19 Sep 2022 20:06:03 +0530 Subject: [PATCH 07/10] reformated Signed-off-by: Rahul Kumar --- contributors/iamrahul8/{demo.py => python.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename contributors/iamrahul8/{demo.py => python.py} (100%) diff --git a/contributors/iamrahul8/demo.py b/contributors/iamrahul8/python.py similarity index 100% rename from contributors/iamrahul8/demo.py rename to contributors/iamrahul8/python.py From 5c8b117ceaed16e75ca6ca7eadad4b9aa4ba5194 Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Mon, 19 Sep 2022 20:10:38 +0530 Subject: [PATCH 08/10] reformatted Signed-off-by: Rahul Kumar --- contributors/iamrahul8/python-formatted.py | 1 + contributors/iamrahul8/python.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 contributors/iamrahul8/python-formatted.py delete mode 100644 contributors/iamrahul8/python.py diff --git a/contributors/iamrahul8/python-formatted.py b/contributors/iamrahul8/python-formatted.py new file mode 100644 index 000000000..f301245e2 --- /dev/null +++ b/contributors/iamrahul8/python-formatted.py @@ -0,0 +1 @@ +print("Hello World!") diff --git a/contributors/iamrahul8/python.py b/contributors/iamrahul8/python.py deleted file mode 100644 index 1dc45ac13..000000000 --- a/contributors/iamrahul8/python.py +++ /dev/null @@ -1 +0,0 @@ -print("Hello World!") \ No newline at end of file From bc7ac337e0e069250415e42876379d0c9d3b188a Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Mon, 19 Sep 2022 20:25:28 +0530 Subject: [PATCH 09/10] url formatted Signed-off-by: Rahul Kumar --- contributors/iamrahul8/gist-solutions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contributors/iamrahul8/gist-solutions.md b/contributors/iamrahul8/gist-solutions.md index 996740c2f..cc67910b0 100644 --- a/contributors/iamrahul8/gist-solutions.md +++ b/contributors/iamrahul8/gist-solutions.md @@ -1,7 +1,7 @@ # Challenge 18 Software development related topic - Database : Amazon Web Services -Gist link - https://gist.github.com/iamrahul8/cb81fc0b92db532dc0bf563ba7cfdb12 +Gist link - Code Snippet - C++ Program to Check Whether a Number is Prime or Not -Gist link - https://gist.github.com/iamrahul8/abdce30ba228552fbd5fee1bc69279e2 \ No newline at end of file +Gist link - \ No newline at end of file From d85b0b57c0018685fa848764d1c00c52aac84860 Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Thu, 22 Sep 2022 20:11:17 +0530 Subject: [PATCH 10/10] Challenge 22 Hosted Website on Github Pages Signed-off-by: Rahul Kumar --- contributors/iamrahul8/iamrahul8.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contributors/iamrahul8/iamrahul8.md b/contributors/iamrahul8/iamrahul8.md index 719d211f8..088016f91 100644 --- a/contributors/iamrahul8/iamrahul8.md +++ b/contributors/iamrahul8/iamrahul8.md @@ -3,4 +3,6 @@ name: Rahul Kumar github_user: iamrahul8 url_of_github_issue: https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/105 your_favroite_programming_language: c++ ---- \ No newline at end of file +your_hosted_github_pages_link: https://iamrahul8.github.io/about-page/ +your_hosted_github_pages_repository_link: https://github.com/iamrahul8/about-page +---