From 92c8aeebb866b1ed7e44c456c57ac979ed382330 Mon Sep 17 00:00:00 2001 From: Prashant Jagtap <93985255+prashantjagtap2909@users.noreply.github.com> Date: Wed, 11 Oct 2023 20:38:10 +0530 Subject: [PATCH 01/10] Update README.md --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 82c29bc..2ee4262 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ + A website to Connect with all Active Github users. ## Languages/Tools @@ -55,13 +56,13 @@ cd Connecting 1. Fork the project: -- Click the gray `Fork` button in the top right of this page. This creates _your_ copy of the project and saves it as a new repository in your github account +- Click the gray `Fork` button at the top right of this page. This creates _your_ copy of the project and saves it as a new repository in your GitHub account 2. Create a New Branch: - On your new repository's page, click the gray `main` button in the upper left to reveal a dropdown menu. - Enter the name of your new branch in the text box. (Branch names usually make a reference to what is being changed. Example: `profileAdd`). -- Click on `Create branch ` and this will automatically take you to your new branch. You can make edits on the main branch, but this may cause issues down the line. Best practice is to create a new branch for each separate issue you work on. That way your `main` branch remains in sync with TechCreators `main` branch. +- Click on `Create branch ` and this will automatically take you to your new branch. You can make edits on the main branch, but this may cause issues down the line. The best practice is to create a new branch for each separate issue you work on. That way your `main` branch remains in sync with TechCreators `main` branch. 3. Navigate to file: @@ -70,12 +71,12 @@ cd Connecting 4. Edit: - On the top right of the JSON file, click on the pencil icon to edit the file by adding your name and username. -- You can add JSON object wherever you want in the file, it will automatically arrange according to alphabetical order. +- You can add JSON objects wherever you want in the file, it will automatically arrange according to alphabetical order. - After editing the JSON file, add a commit message and click on the green button saying "Commit Changes". Make sure you have selected the branch you have created. 5. Raise a Pull Request: -- And finally create a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)! +- And finally, create a [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)! - Great job! You did it! @@ -87,11 +88,11 @@ npm run start ``` ## Important - If you doesn't know anything and haven't understood anything from this just go to profile.json and just add your name and username only. + If you don't know anything and haven't understood anything from this just go to profile.json and just add your name and username only. ## Contributors -Thank you all.... +Thank you all... [![Contributors](https://contrib.rocks/image?repo=prashantjagtap2909/Connecting)](https://github.com/prashantjagtap2909/Connecting/graphs/contributors) From 55abf8b54e241ec380e98b55f37c0fb8138d78b7 Mon Sep 17 00:00:00 2001 From: Prashant Jagtap <93985255+prashantjagtap2909@users.noreply.github.com> Date: Mon, 23 Oct 2023 20:33:42 +0530 Subject: [PATCH 02/10] Update profiles.json --- profiles/profiles.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/profiles/profiles.json b/profiles/profiles.json index 236f336..68e6d5e 100644 --- a/profiles/profiles.json +++ b/profiles/profiles.json @@ -68,14 +68,11 @@ "image": "https://avatars.githubusercontent.com/u/146003237?v=4", "name" : "Kaniz Fatma", "username": "Kaniz-Fatma" - - }, - - { + }, + { "image": "https://avatars.githubusercontent.com/u/78019442?v=4", "name" : "Naman Agrahari", "username": "Naman73598" - }, { "image": "https://avatars.githubusercontent.com/u/71535757?v=4", From 2226f096802ad93a69e6fd3b53e960b9cc037b4c Mon Sep 17 00:00:00 2001 From: Prashant Jagtap <93985255+prashantjagtap2909@users.noreply.github.com> Date: Mon, 13 Nov 2023 20:50:09 +0530 Subject: [PATCH 03/10] added changes --- index.html | 2 +- package.json | 2 +- profiles/profiles.json | 18 +++++++++--------- scripts/app.js | 2 +- styles/index.css | 3 +-- 5 files changed, 13 insertions(+), 14 deletions(-) diff --git a/index.html b/index.html index f9ba8d7..06c5a87 100644 --- a/index.html +++ b/index.html @@ -8,7 +8,7 @@ Connecting - Connect Github users. { document.body.classList.toggle('night-mode') }) -// load all profiles + loadProfiles(); diff --git a/styles/index.css b/styles/index.css index 233a3b5..4585374 100644 --- a/styles/index.css +++ b/styles/index.css @@ -32,8 +32,7 @@ nav { top: 50%; right: 0px; transform: translateY(-50%); - /* Center the container vertically */ - + } .input-div img { From d07f7a4502418c9e058d3bc588f6d727950fcdef Mon Sep 17 00:00:00 2001 From: Prashant Jagtap <93985255+prashantjagtap2909@users.noreply.github.com> Date: Mon, 13 Nov 2023 20:53:14 +0530 Subject: [PATCH 04/10] fixed issues --- profiles/profiles.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/profiles/profiles.json b/profiles/profiles.json index d0c3b09..d69e8ca 100644 --- a/profiles/profiles.json +++ b/profiles/profiles.json @@ -79,16 +79,16 @@ "name" : "Uthman Abdurrahman", "username": "Codeknight-Dojo" }, - { +{ "image": "https://avatars.githubusercontent.com/u/112506922?v=4", "name": "Ayush Anshu", "username": "ayush24k" - }, - { +}, +{ "image": "https://github.com/Ssaava/Ssaava/blob/main/IMAGES/mine.jpg?raw=true", "name": "Emma Ssaava", "username": "Ssaava" - } +} ] From 5544600d6e35e7132c587e23bf33e7fe2d319162 Mon Sep 17 00:00:00 2001 From: Prashant Jagtap <93985255+prashantjagtap2909@users.noreply.github.com> Date: Sat, 2 Dec 2023 20:56:40 +0530 Subject: [PATCH 05/10] Update profiles.json --- profiles/profiles.json | 44 ++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/profiles/profiles.json b/profiles/profiles.json index d69e8ca..c2f5cb5 100644 --- a/profiles/profiles.json +++ b/profiles/profiles.json @@ -44,7 +44,7 @@ "name": "Sham Machale", "username": "Shammachale0102" }, - { + { "image": "https://avatars.githubusercontent.com/u/65857766?v=4", "name" : "Nikhil Divekar", "username": "DivekarNikhil" @@ -54,41 +54,39 @@ "name": "Vaibhav Gaikwad", "username": "vaibhavgaikwad8476" }, -{ + { "image": "https://avatars.githubusercontent.com/u/42183055?v=4", "name": "Rahul Kumar", "username": "rahullkumr" }, -{ + { "image": "https://avatars.githubusercontent.com/u/126690000?v=4", "name" : "Vaibhav Pandarkar", "username": "vaibhavpandarkar4040" + }, + { + "image": "https://avatars.githubusercontent.com/u/146003237?v=4", + "name" : "Kaniz Fatma", + "username": "Kaniz-Fatma" }, { - "image": "https://avatars.githubusercontent.com/u/146003237?v=4", - "name" : "Kaniz Fatma", - "username": "Kaniz-Fatma" -}, -{ - "image": "https://avatars.githubusercontent.com/u/78019442?v=4", - "name" : "Naman Agrahari", - "username": "Naman73598" + "image": "https://avatars.githubusercontent.com/u/78019442?v=4", + "name" : "Naman Agrahari", + "username": "Naman73598" }, { - "image": "https://avatars.githubusercontent.com/u/71535757?v=4", - "name" : "Uthman Abdurrahman", - "username": "Codeknight-Dojo" + "image": "https://avatars.githubusercontent.com/u/71535757?v=4", + "name" : "Uthman Abdurrahman", + "username": "Codeknight-Dojo" }, { - "image": "https://avatars.githubusercontent.com/u/112506922?v=4", - "name": "Ayush Anshu", - "username": "ayush24k" + "image": "https://avatars.githubusercontent.com/u/112506922?v=4", + "name": "Ayush Anshu", + "username": "ayush24k" }, { - "image": "https://github.com/Ssaava/Ssaava/blob/main/IMAGES/mine.jpg?raw=true", - "name": "Emma Ssaava", - "username": "Ssaava" -} - - + "image": "https://github.com/Ssaava/Ssaava/blob/main/IMAGES/mine.jpg?raw=true", + "name": "Emma Ssaava", + "username": "Ssaava" +} ] From c8478f651b7978c04865ad756be8f458c21343f1 Mon Sep 17 00:00:00 2001 From: Prashant Jagtap <93985255+prashantjagtap2909@users.noreply.github.com> Date: Sun, 6 Oct 2024 18:21:35 +0530 Subject: [PATCH 06/10] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 06c5a87..d6978ae 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - Connecting - Connect Github users. + Connecting - Connects with Github users. Date: Sun, 6 Oct 2024 18:39:37 +0530 Subject: [PATCH 07/10] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 2ee4262..a600677 100644 --- a/README.md +++ b/README.md @@ -97,5 +97,3 @@ Thank you all... [![Contributors](https://contrib.rocks/image?repo=prashantjagtap2909/Connecting)](https://github.com/prashantjagtap2909/Connecting/graphs/contributors) - -Don't forget to star a repo From e7546f42b80640e8ecc4c42df382f32368efe251 Mon Sep 17 00:00:00 2001 From: Prashant Jagtap <93985255+prashantjagtap2909@users.noreply.github.com> Date: Wed, 30 Oct 2024 18:31:36 +0530 Subject: [PATCH 08/10] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index a600677..37b6fe0 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,6 @@ A website to Connect with all Active Github users. - Check out the website: [Connecting - https://connecting-user.netlify.app/](https://connecting-user.netlify.app/) ## Prerequisites @@ -88,7 +87,7 @@ npm run start ``` ## Important - If you don't know anything and haven't understood anything from this just go to profile.json and just add your name and username only. + If you don't know anything and haven't understood anything from above just go to profile.json and just add your name and username only. ## Contributors From b640d34b5f704c285c9bf6c86b9b7a852632b693 Mon Sep 17 00:00:00 2001 From: Prashant Jagtap <93985255+prashantjagtap2909@users.noreply.github.com> Date: Wed, 30 Oct 2024 18:33:11 +0530 Subject: [PATCH 09/10] Update index.css --- styles/index.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/styles/index.css b/styles/index.css index 4585374..a2a4b0d 100644 --- a/styles/index.css +++ b/styles/index.css @@ -250,8 +250,6 @@ nav { width: 8px; } - - ::-webkit-scrollbar-thumb { background: #A0A0A0; -} \ No newline at end of file +} From 62a4ebcb93e1efdd8ffc096ea08c74636451935f Mon Sep 17 00:00:00 2001 From: Prashant Jagtap <93985255+prashantjagtap2909@users.noreply.github.com> Date: Wed, 30 Oct 2024 18:35:09 +0530 Subject: [PATCH 10/10] Update profiles.json --- profiles/profiles.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/profiles.json b/profiles/profiles.json index c2f5cb5..0f79cf5 100644 --- a/profiles/profiles.json +++ b/profiles/profiles.json @@ -85,7 +85,7 @@ "username": "ayush24k" }, { - "image": "https://github.com/Ssaava/Ssaava/blob/main/IMAGES/mine.jpg?raw=true", + "image": "https://avatars.githubusercontent.com/u/107991182?v=4", "name": "Emma Ssaava", "username": "Ssaava" }