From 7e2aa6eb98f32c8fc691d311ef7219d74d623149 Mon Sep 17 00:00:00 2001 From: Raja Harsh Vardhan Singh Date: Fri, 16 Sep 2022 19:45:08 +0530 Subject: [PATCH 1/7] Added old file that got deleted by mistake Signed-off-by: Raja Harsh Vardhan Singh --- contributors/rhvsingh/rhvsingh.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 contributors/rhvsingh/rhvsingh.md diff --git a/contributors/rhvsingh/rhvsingh.md b/contributors/rhvsingh/rhvsingh.md new file mode 100644 index 000000000..25a1307f0 --- /dev/null +++ b/contributors/rhvsingh/rhvsingh.md @@ -0,0 +1,6 @@ +--- +name: Raja Harsh Vardhan Singh +github_user_name: rhvsingh +url_of_github_issue: https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/78 +my_favorite_programming_language: C++ +--- From 70bf49b563efdd14beb5ee58d8c37508a0009667 Mon Sep 17 00:00:00 2001 From: Raja Harsh Vardhan Singh Date: Fri, 16 Sep 2022 19:47:40 +0530 Subject: [PATCH 2/7] Merge conflict fixed Signed-off-by: Raja Harsh Vardhan Singh --- challengers-list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challengers-list.md b/challengers-list.md index 2fb6f60ea..cce3071dc 100644 --- a/challengers-list.md +++ b/challengers-list.md @@ -1,4 +1,4 @@ # List of challengers 1. [Mrinal](https://github.com/mrinal1224) 2. [Shivay](https://github.com/shivaylamba) -3. [Raghav](https://github.com/raghavdhingra) +3. [Raja Harsh Vardhna Singh](https://github.com/rhvsingh) From 7654b346325fba420c89fa1f9b3cba944d4d2f26 Mon Sep 17 00:00:00 2001 From: Raja Harsh Vardhan Singh Date: Mon, 19 Sep 2022 02:51:21 +0530 Subject: [PATCH 3/7] Added gist solution file with 2 gist links Signed-off-by: Raja Harsh Vardhan Singh --- contributors/rhvsingh/gist-solutions.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 contributors/rhvsingh/gist-solutions.md diff --git a/contributors/rhvsingh/gist-solutions.md b/contributors/rhvsingh/gist-solutions.md new file mode 100644 index 000000000..16d14a9b9 --- /dev/null +++ b/contributors/rhvsingh/gist-solutions.md @@ -0,0 +1,4 @@ +# Challenge 18: + +1. [ReactJS: A JS library](https://gist.github.com/rhvsingh/3a49a2ce551376ee397cf768f2c80aea) +2. [Text in center of screen, HTML](https://gist.github.com/rhvsingh/0a1a9b519a63cf4cbab2bcb7cdc7f4fd) \ No newline at end of file From e71cac24ac26963b16730cf93b253d6d9ae7632d Mon Sep 17 00:00:00 2001 From: Raja Harsh Vardhan Singh Date: Tue, 20 Sep 2022 01:58:39 +0530 Subject: [PATCH 4/7] Added file for lint Signed-off-by: Raja Harsh Vardhan Singh --- contributors/rhvsingh/script.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 contributors/rhvsingh/script.js diff --git a/contributors/rhvsingh/script.js b/contributors/rhvsingh/script.js new file mode 100644 index 000000000..7df5b1f90 --- /dev/null +++ b/contributors/rhvsingh/script.js @@ -0,0 +1,6 @@ +function showGlass(){ + alert('Hello World') + console.log("Glasses") +} + +showGlass() \ No newline at end of file From 052f5c0d32c42d5357332259993afa6b64ba306f Mon Sep 17 00:00:00 2001 From: Raja Harsh Vardhan Singh Date: Tue, 20 Sep 2022 02:32:19 +0530 Subject: [PATCH 5/7] Fixed lint code base error Signed-off-by: Raja Harsh Vardhan Singh --- contributors/rhvsingh/gist-solutions.md | 2 +- contributors/rhvsingh/script.js | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/contributors/rhvsingh/gist-solutions.md b/contributors/rhvsingh/gist-solutions.md index 16d14a9b9..3ec49b9db 100644 --- a/contributors/rhvsingh/gist-solutions.md +++ b/contributors/rhvsingh/gist-solutions.md @@ -1,4 +1,4 @@ -# Challenge 18: +# Challenge 18 1. [ReactJS: A JS library](https://gist.github.com/rhvsingh/3a49a2ce551376ee397cf768f2c80aea) 2. [Text in center of screen, HTML](https://gist.github.com/rhvsingh/0a1a9b519a63cf4cbab2bcb7cdc7f4fd) \ No newline at end of file diff --git a/contributors/rhvsingh/script.js b/contributors/rhvsingh/script.js index 7df5b1f90..db79aa116 100644 --- a/contributors/rhvsingh/script.js +++ b/contributors/rhvsingh/script.js @@ -1,6 +1 @@ -function showGlass(){ - alert('Hello World') - console.log("Glasses") -} - -showGlass() \ No newline at end of file +console.log("Hello World!") \ No newline at end of file From b916697f92ee7686df17543abe23068a12a159f8 Mon Sep 17 00:00:00 2001 From: Raja Harsh Vardhan Singh Date: Tue, 20 Sep 2022 02:44:37 +0530 Subject: [PATCH 6/7] Added new file, removed old one to fix lint code base error Signed-off-by: Raja Harsh Vardhan Singh --- contributors/rhvsingh/script.js | 1 - contributors/rhvsingh/script.min.js | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 contributors/rhvsingh/script.js create mode 100644 contributors/rhvsingh/script.min.js diff --git a/contributors/rhvsingh/script.js b/contributors/rhvsingh/script.js deleted file mode 100644 index db79aa116..000000000 --- a/contributors/rhvsingh/script.js +++ /dev/null @@ -1 +0,0 @@ -console.log("Hello World!") \ No newline at end of file diff --git a/contributors/rhvsingh/script.min.js b/contributors/rhvsingh/script.min.js new file mode 100644 index 000000000..de8882976 --- /dev/null +++ b/contributors/rhvsingh/script.min.js @@ -0,0 +1 @@ +console.log("Hello World!"); \ No newline at end of file From c25d0f2746b137600f932fbdb43f1ca83e9d4667 Mon Sep 17 00:00:00 2001 From: Raja Harsh Vardhan Singh Date: Fri, 23 Sep 2022 00:55:57 +0530 Subject: [PATCH 7/7] Added new and updated links Signed-off-by: Raja Harsh Vardhan Singh --- contributors/rhvsingh/rhvsingh.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contributors/rhvsingh/rhvsingh.md b/contributors/rhvsingh/rhvsingh.md index 25a1307f0..d5da49008 100644 --- a/contributors/rhvsingh/rhvsingh.md +++ b/contributors/rhvsingh/rhvsingh.md @@ -3,4 +3,6 @@ name: Raja Harsh Vardhan Singh github_user_name: rhvsingh url_of_github_issue: https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/78 my_favorite_programming_language: C++ +your_hosted_github_pages_link: https://rhvsingh.github.io/new-project/ +your_hosted_github_pages_repository_link: https://github.com/rhvsingh/new-project ---