From c1724c6ceb17878770a00141927846e4e40a5f22 Mon Sep 17 00:00:00 2001 From: steam_bell_92 Date: Fri, 8 Aug 2025 11:42:46 +0530 Subject: [PATCH 1/4] Removed the things --- docs/GitHub/GitHub-basics/create-github-repo.md | 9 +-------- docs/GitHub/GitHub-basics/first-opensource-code.md | 1 - docs/GitHub/GitHub-basics/github-repo-command-line.md | 8 +------- docs/GitHub/GitHub-basics/how-to-clone-repo.md | 2 -- docs/GitHub/GitHub-basics/how-to-fork.md | 1 - docs/GitHub/Maintainer-guide/enable-discussion.md | 10 +--------- docs/GitHub/Maintainer-guide/github-labels.md | 11 +---------- docs/GitHub/Maintainer-guide/github-project.md | 10 +--------- docs/GitHub/Maintainer-guide/milestone.md | 11 +---------- docs/GitHub/intro-github.md | 6 +----- docs/GitHub/setup-environment/git-commands.md | 6 ------ docs/GitHub/setup-environment/setup-environment.md | 7 ------- docs/GitHub/setup-environment/setup-git-on-mac.md | 3 --- docs/GitHub/setup-environment/setup-git-on-windows.md | 7 ------- 14 files changed, 7 insertions(+), 85 deletions(-) diff --git a/docs/GitHub/GitHub-basics/create-github-repo.md b/docs/GitHub/GitHub-basics/create-github-repo.md index 9242b224..3186d9b2 100644 --- a/docs/GitHub/GitHub-basics/create-github-repo.md +++ b/docs/GitHub/GitHub-basics/create-github-repo.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. -< /> ### Prerequisites @@ -46,9 +45,6 @@ Upon creation you will get a screen like this below, the explanation of each ele - **``**: Represents a comment that is not displayed in the browser. - -< /> - ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file @@ -74,14 +70,11 @@ This readme contains my resume, please refer to the attached file in the repo. When the above HTML code is rendered in a browser, it will display the following content: - <>

Git-Demo

This is a demo installation via GUI

Developed by Sanjay Viswanathan

This readme contains my resume, please refer to the attached file in the repo.

- -
### Explanation @@ -137,4 +130,4 @@ Now you will be able to see the uploaded resume. ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like ``, ``, ``, ``, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file diff --git a/docs/GitHub/GitHub-basics/first-opensource-code.md b/docs/GitHub/GitHub-basics/first-opensource-code.md index 10f4a940..c18845c8 100644 --- a/docs/GitHub/GitHub-basics/first-opensource-code.md +++ b/docs/GitHub/GitHub-basics/first-opensource-code.md @@ -10,7 +10,6 @@ keywords: [html, web development, elements, tags, html elements, html tags, html HTML Attributes and Values are used to provide additional information about HTML elements -< /> ## HTML Attributes diff --git a/docs/GitHub/GitHub-basics/github-repo-command-line.md b/docs/GitHub/GitHub-basics/github-repo-command-line.md index 1212277a..00a8ba03 100644 --- a/docs/GitHub/GitHub-basics/github-repo-command-line.md +++ b/docs/GitHub/GitHub-basics/github-repo-command-line.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the structure of an HTML doc HTML (Hypertext Markup Language) is the standard markup language for creating web pages. It provides the structure and layout of the content on the web. In this tutorial, you will learn about the syntax and structure of HTML. -< /> ## Prerequisites @@ -58,9 +57,6 @@ git push -u origin main -< /> - - ### Browser Rendering <BrowserWindow url="https://github.com/sanjay-kv/demo-repo" bodyStyle={{padding: 0}}> @@ -112,10 +108,8 @@ git config --global user.name "Github username" ### Watch the video Tutorial - - <iframe width="880" height="480" src="https://www.youtube.com/embed/DO38CZcw5pg?list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63" title="Github create repo using command line" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file diff --git a/docs/GitHub/GitHub-basics/how-to-clone-repo.md b/docs/GitHub/GitHub-basics/how-to-clone-repo.md index 7d2543c6..b8f30c55 100644 --- a/docs/GitHub/GitHub-basics/how-to-clone-repo.md +++ b/docs/GitHub/GitHub-basics/how-to-clone-repo.md @@ -10,8 +10,6 @@ keywords: [html, web development, attributes, values, html attributes, html valu HTML Attributes and Values are used to provide additional information about HTML elements -< /> - ## HTML Attributes HTML attributes are used to provide additional information about HTML elements. diff --git a/docs/GitHub/GitHub-basics/how-to-fork.md b/docs/GitHub/GitHub-basics/how-to-fork.md index ea635449..cadc38ec 100644 --- a/docs/GitHub/GitHub-basics/how-to-fork.md +++ b/docs/GitHub/GitHub-basics/how-to-fork.md @@ -10,7 +10,6 @@ description: In this tutorial, you will learn about the structure of an HTML doc HTML Attributes and Values are used to provide additional information about HTML elements -< /> ## HTML Attributes diff --git a/docs/GitHub/Maintainer-guide/enable-discussion.md b/docs/GitHub/Maintainer-guide/enable-discussion.md index a05e94d4..e2795b98 100644 --- a/docs/GitHub/Maintainer-guide/enable-discussion.md +++ b/docs/GitHub/Maintainer-guide/enable-discussion.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. -< /> ### Prerequisites @@ -45,10 +44,6 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<body>`**: Contains the visible content of the document. - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. - - -< /> - ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file @@ -74,14 +69,11 @@ This readme contains my resume, please refer to the attached file in the repo. When the above HTML code is rendered in a browser, it will display the following content: <BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md"> - <> <h1>Git-Demo</h1> <p>This is a demo installation via GUI</p> <h1>Developed by Sanjay Viswanathan</h1> <p>This readme contains my resume, please refer to the attached file in the repo.</p> - - </> </BrowserWindow> ### Explanation @@ -132,4 +124,4 @@ Now you will be able to see the uploaded resume. ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file diff --git a/docs/GitHub/Maintainer-guide/github-labels.md b/docs/GitHub/Maintainer-guide/github-labels.md index 160c0961..94daad74 100644 --- a/docs/GitHub/Maintainer-guide/github-labels.md +++ b/docs/GitHub/Maintainer-guide/github-labels.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. -< /> ### Prerequisites @@ -45,10 +44,6 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<body>`**: Contains the visible content of the document. - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. - - -< /> - ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file @@ -74,14 +69,11 @@ This readme contains my resume, please refer to the attached file in the repo. When the above HTML code is rendered in a browser, it will display the following content: <BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md"> - <> <h1>Git-Demo</h1> <p>This is a demo installation via GUI</p> <h1>Developed by Sanjay Viswanathan</h1> <p>This readme contains my resume, please refer to the attached file in the repo.</p> - - </> </BrowserWindow> ### Explanation @@ -122,7 +114,6 @@ Im going to add my resume and add my name as heading to the ``readme.md`` file </BrowserWindow> - Now you will be able to see the uploaded resume. ### Watch the video Tutorial @@ -131,4 +122,4 @@ Now you will be able to see the uploaded resume. ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file diff --git a/docs/GitHub/Maintainer-guide/github-project.md b/docs/GitHub/Maintainer-guide/github-project.md index 861b9fcb..8aa1b312 100644 --- a/docs/GitHub/Maintainer-guide/github-project.md +++ b/docs/GitHub/Maintainer-guide/github-project.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. -< /> ### Prerequisites @@ -45,10 +44,6 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<body>`**: Contains the visible content of the document. - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. - - -< /> - ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file @@ -74,14 +69,11 @@ This readme contains my resume, please refer to the attached file in the repo. When the above HTML code is rendered in a browser, it will display the following content: <BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md"> - <> <h1>Git-Demo</h1> <p>This is a demo installation via GUI</p> <h1>Developed by Sanjay Viswanathan</h1> <p>This readme contains my resume, please refer to the attached file in the repo.</p> - - </> </BrowserWindow> ### Explanation @@ -139,4 +131,4 @@ Now you will be able to see the uploaded resume. ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file diff --git a/docs/GitHub/Maintainer-guide/milestone.md b/docs/GitHub/Maintainer-guide/milestone.md index 03609278..f5eb3c79 100644 --- a/docs/GitHub/Maintainer-guide/milestone.md +++ b/docs/GitHub/Maintainer-guide/milestone.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. -< /> ### Prerequisites @@ -45,10 +44,6 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<body>`**: Contains the visible content of the document. - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. - - -< /> - ## Changing Readme and Adding more files. Change Im going to add my resume and add my name as heading to the ``readme.md`` file. @@ -74,14 +69,11 @@ This readme contains my resume, please refer to the attached file in the repo. When the above HTML code is rendered in a browser, it will display the following content: <BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md"> - <> <h1>Git-Demo</h1> <p>This is a demo installation via GUI</p> <h1>Developed by Sanjay Viswanathan</h1> <p>This readme contains my resume, please refer to the attached file in the repo.</p> - - </> </BrowserWindow> ### Explanation @@ -126,7 +118,6 @@ Im going to add my resume and add my name as heading to the ``readme.md`` file. </BrowserWindow> - Now you will be able to see the uploaded resume. ### Watch the video Tutorial @@ -135,4 +126,4 @@ Now you will be able to see the uploaded resume. ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file diff --git a/docs/GitHub/intro-github.md b/docs/GitHub/intro-github.md index 2a9b2522..394cc849 100644 --- a/docs/GitHub/intro-github.md +++ b/docs/GitHub/intro-github.md @@ -15,7 +15,6 @@ description: In this tutorial, you will learn about GitHub, its importance, what --- GitHub is a web-based platform used for version control and collaboration. It allows developers to work together on projects from anywhere in the world. GitHub is built on top of Git, a distributed version control system created by Linus Torvalds in 2005. -< /> :::note Key Features of SQL: @@ -91,13 +90,10 @@ The fork is a personal copy of the repo which is already present or uploaded in ::: -< /> ### Watch the video Tutorial <iframe width="880" height="480" src="https://www.youtube.com/embed/GrTV59Y84S8?list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63" title="How to start with GitHub in 2024 | Beginner's Guide" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> -< /> - ## Conclusion -If you think this Github Tutorial starter kit for Beginner was useful to you, then don’t forget to share it with others. Till then, we will meet For uploading your project to your Github account, you need to install Git first. which we will discuss in detail in the next post. +If you think this Github Tutorial starter kit for Beginner was useful to you, then don’t forget to share it with others. Till then, we will meet For uploading your project to your Github account, you need to install Git first. which we will discuss in detail in the next post. \ No newline at end of file diff --git a/docs/GitHub/setup-environment/git-commands.md b/docs/GitHub/setup-environment/git-commands.md index f941cdef..9fd3e174 100644 --- a/docs/GitHub/setup-environment/git-commands.md +++ b/docs/GitHub/setup-environment/git-commands.md @@ -11,8 +11,6 @@ description: In this tutorial, you will learn about the basic of git and 50 impo Git commands are handy when comes to fix any problems which you cant fix by the UI, for example consider a scenarion you need to fix the conflict in a page. Git Commands will help you to find the root cause and can explore the entire log history. At Git core it help you to keep a history of every change you made in the project files and help the user with track the changes, revert, helps to identify who made the changes. -< /> - ## Understanding Git: The Building Blocks In Setting up git on Windows tutorial you learned to perform how to check the current version of the git. Now below you will see how to add some changes to the files you have created. I assume you have a small project where you created a file called filename.ipynb, now you want to add that into the git. @@ -34,8 +32,6 @@ In Setting up git on Windows tutorial you learned to perform how to check the cu In this example, the `<h1>` tag creates a heading, and the `<p>` tag creates a paragraph. The browser interprets these tags and displays the content accordingly. HTML tags can be nested within each other to create more complex structures, such as lists, tables, forms, and more. -< /> - ## How Web Browsers Render HTML When a user requests a web page by entering a URL in the browser's address bar or clicking a link, the browser sends a request to the web server hosting the page. The server responds by sending the HTML content of the page back to the browser. The browser then parses the HTML code and renders the page on the user's screen. @@ -106,8 +102,6 @@ When a user requests a web page by entering a URL in the browser's address bar o ::: By understanding how web browsers render HTML content, web developers can optimize their code and design to create fast and responsive web pages. Techniques such as minimizing the use of inline styles, reducing the number of DOM elements, and optimizing images can help improve the performance of web pages and provide a better user experience. -< /> - ## Useful 50 Git Commands Cheatsheet In addition to rendering HTML content, web browsers handle various resources associated with a web page, including: diff --git a/docs/GitHub/setup-environment/setup-environment.md b/docs/GitHub/setup-environment/setup-environment.md index 727166eb..86b3de69 100644 --- a/docs/GitHub/setup-environment/setup-environment.md +++ b/docs/GitHub/setup-environment/setup-environment.md @@ -16,7 +16,6 @@ description: In this tutorial, you will learn how to set up your development env Github is a way of version control your software development using Git, Github was founded in 2008 and recently Microsoft has bought the company now Microsoft is the parent organization of Github. Now setting up is very straight forward process , first you need to create a GitHub account online, then Install Git in your system and connect your Git with GitHub. So all the changes will be updated to the GitHub. -< /> ### Step 1: Let’s create a Github Accountvbcvnb 1. Let’s create a Github Account, Go to the [GitHub Website](https://github.com/) and signup with your email ID. @@ -48,8 +47,6 @@ Github is a way of version control your software development using Git, Github w - 1. Upon sign in It will ask you to autorize Giscus (comment feature by GitHub) Click on Authorize ? - 2. Click on on the top right side ``profile icon`` -> ``your profile`` to see your profile. -< /> - ### Step 3: Understanding the Interface. Next step, Github will ask you to verify the account. As a final step it will ask you to verify the account, all you need to go to the email dashboard and verify the mail ID to proceed further. After verification, you will be redirected to the Github page as shown below, can also see whether your account is verified or not as highlighted below. I would recommend skipping this step to proceed further. @@ -58,7 +55,6 @@ Next step, Github will ask you to verify the account. As a final step it will as <BrowserWindow url="https://github.com/sanjay-kv" bodyStyle={{padding: 0}}> [![Github](./assets/5-github-interface.png)](https://github.com/sanjay-kv) </BrowserWindow> - ### Step 5: Final Step @@ -73,9 +69,6 @@ Congratulations! 5. ``9`` Any acitivity you do on GitHub will be recorded here as green check box, come here on ``Halloween`` :p. 6. ``10`` Apart from the checkbox all the activity of a month will be available here, you have option to make it private. - -< /> - ## Conclusion In conclusion, I hope you enjoyed reading this article on “How to create Github Account?”. In the next post, will be discussing using Git to create a Repository and clone a project Github. Signing off Sanjay Viswanathan. \ No newline at end of file diff --git a/docs/GitHub/setup-environment/setup-git-on-mac.md b/docs/GitHub/setup-environment/setup-git-on-mac.md index 58f6c8cf..75450fe3 100644 --- a/docs/GitHub/setup-environment/setup-git-on-mac.md +++ b/docs/GitHub/setup-environment/setup-git-on-mac.md @@ -16,7 +16,6 @@ description: In this tutorial, you will learn how to set up your development env Github is a way of version control your software development using Git, Github was founded in 2008 and recently Microsoft has bought the company now Microsoft is the parent organization of Github. Now setting up is very straight forward process , first you need to create a GitHub account online, then Install Git in your system and connect your Git with GitHub. So all the changes will be updated to the GitHub. -< /> ### Installing Git on Mac There are four ways we can install Github on mac @@ -50,9 +49,7 @@ brew install git-gui <BrowserWindow url="https://git-scm.com/downloads/win" bodyStyle={{padding: 0}}> [![GitHub](./assets/7-git-installer.png)](https://git-scm.com/downloads/win) </BrowserWindow> - -< /> ## Conclusion diff --git a/docs/GitHub/setup-environment/setup-git-on-windows.md b/docs/GitHub/setup-environment/setup-git-on-windows.md index 1b141401..e5fc7a4f 100644 --- a/docs/GitHub/setup-environment/setup-git-on-windows.md +++ b/docs/GitHub/setup-environment/setup-git-on-windows.md @@ -16,7 +16,6 @@ description: In this tutorial, you will learn how to set up your development env Github provides two of installation, one the GitHub Desktop and command line by installing Git Software in your system. Personally from a developer perspective i would suggest you to use the command line as this will come in handy and more flexibility in terms of solving bugs and do more with version control, especially when the conflicts happens with the Git. This tutorial is focused on the command line version. -< /> ### Step 1: Let’s Download the git 1. Go to the [Git Website](https://git-scm.com/) and click on download for windows button. @@ -48,8 +47,6 @@ Github provides two of installation, one the GitHub Desktop and command line by - 1. The next screen click next on Public Licence. - 2. Choose the location as default and click on Next -< /> - ### Step 3: Understanding the Interface. Next step, Git Will ask you to install couple of components you can checko on additional icons to add on Desktop and leave the rest as default and click on the Next. @@ -115,10 +112,6 @@ Execute the below command to see your current version of git in Git CMD or windo </Tabs> - - -< /> - ## Conclusion In conclusion, I hope you enjoyed reading this article on “Setting up your Git Enviornment?”. In the next post, will be discussing using Git to create a Repository and clone a project Github. Signing off Sanjay Viswanathan. \ No newline at end of file From 901362c8a05d958b30f53f11e1bee0abd8faeaf8 Mon Sep 17 00:00:00 2001 From: steam_bell_92 <anujck45@gmail.com> Date: Fri, 8 Aug 2025 23:13:20 +0530 Subject: [PATCH 2/4] Revert "Removed the </ > things" This reverts commit c1724c6ceb17878770a00141927846e4e40a5f22. --- docs/GitHub/GitHub-basics/create-github-repo.md | 9 ++++++++- docs/GitHub/GitHub-basics/first-opensource-code.md | 1 + docs/GitHub/GitHub-basics/github-repo-command-line.md | 8 +++++++- docs/GitHub/GitHub-basics/how-to-clone-repo.md | 2 ++ docs/GitHub/GitHub-basics/how-to-fork.md | 1 + docs/GitHub/Maintainer-guide/enable-discussion.md | 10 +++++++++- docs/GitHub/Maintainer-guide/github-labels.md | 11 ++++++++++- docs/GitHub/Maintainer-guide/github-project.md | 10 +++++++++- docs/GitHub/Maintainer-guide/milestone.md | 11 ++++++++++- docs/GitHub/intro-github.md | 6 +++++- docs/GitHub/setup-environment/git-commands.md | 6 ++++++ docs/GitHub/setup-environment/setup-environment.md | 7 +++++++ docs/GitHub/setup-environment/setup-git-on-mac.md | 3 +++ docs/GitHub/setup-environment/setup-git-on-windows.md | 7 +++++++ 14 files changed, 85 insertions(+), 7 deletions(-) diff --git a/docs/GitHub/GitHub-basics/create-github-repo.md b/docs/GitHub/GitHub-basics/create-github-repo.md index 3186d9b2..9242b224 100644 --- a/docs/GitHub/GitHub-basics/create-github-repo.md +++ b/docs/GitHub/GitHub-basics/create-github-repo.md @@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. +< /> ### Prerequisites @@ -45,6 +46,9 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. + +< /> + ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file @@ -70,11 +74,14 @@ This readme contains my resume, please refer to the attached file in the repo. When the above HTML code is rendered in a browser, it will display the following content: <BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md"> + <> <h1>Git-Demo</h1> <p>This is a demo installation via GUI</p> <h1>Developed by Sanjay Viswanathan</h1> <p>This readme contains my resume, please refer to the attached file in the repo.</p> + + </> </BrowserWindow> ### Explanation @@ -130,4 +137,4 @@ Now you will be able to see the uploaded resume. ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. diff --git a/docs/GitHub/GitHub-basics/first-opensource-code.md b/docs/GitHub/GitHub-basics/first-opensource-code.md index c18845c8..10f4a940 100644 --- a/docs/GitHub/GitHub-basics/first-opensource-code.md +++ b/docs/GitHub/GitHub-basics/first-opensource-code.md @@ -10,6 +10,7 @@ keywords: [html, web development, elements, tags, html elements, html tags, html HTML Attributes and Values are used to provide additional information about HTML elements +< /> ## HTML Attributes diff --git a/docs/GitHub/GitHub-basics/github-repo-command-line.md b/docs/GitHub/GitHub-basics/github-repo-command-line.md index 00a8ba03..1212277a 100644 --- a/docs/GitHub/GitHub-basics/github-repo-command-line.md +++ b/docs/GitHub/GitHub-basics/github-repo-command-line.md @@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the structure of an HTML doc HTML (Hypertext Markup Language) is the standard markup language for creating web pages. It provides the structure and layout of the content on the web. In this tutorial, you will learn about the syntax and structure of HTML. +< /> ## Prerequisites @@ -57,6 +58,9 @@ git push -u origin main +< /> + + ### Browser Rendering <BrowserWindow url="https://github.com/sanjay-kv/demo-repo" bodyStyle={{padding: 0}}> @@ -108,8 +112,10 @@ git config --global user.name "Github username" ### Watch the video Tutorial + + <iframe width="880" height="480" src="https://www.youtube.com/embed/DO38CZcw5pg?list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63" title="Github create repo using command line" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. diff --git a/docs/GitHub/GitHub-basics/how-to-clone-repo.md b/docs/GitHub/GitHub-basics/how-to-clone-repo.md index b8f30c55..7d2543c6 100644 --- a/docs/GitHub/GitHub-basics/how-to-clone-repo.md +++ b/docs/GitHub/GitHub-basics/how-to-clone-repo.md @@ -10,6 +10,8 @@ keywords: [html, web development, attributes, values, html attributes, html valu HTML Attributes and Values are used to provide additional information about HTML elements +< /> + ## HTML Attributes HTML attributes are used to provide additional information about HTML elements. diff --git a/docs/GitHub/GitHub-basics/how-to-fork.md b/docs/GitHub/GitHub-basics/how-to-fork.md index cadc38ec..ea635449 100644 --- a/docs/GitHub/GitHub-basics/how-to-fork.md +++ b/docs/GitHub/GitHub-basics/how-to-fork.md @@ -10,6 +10,7 @@ description: In this tutorial, you will learn about the structure of an HTML doc HTML Attributes and Values are used to provide additional information about HTML elements +< /> ## HTML Attributes diff --git a/docs/GitHub/Maintainer-guide/enable-discussion.md b/docs/GitHub/Maintainer-guide/enable-discussion.md index e2795b98..a05e94d4 100644 --- a/docs/GitHub/Maintainer-guide/enable-discussion.md +++ b/docs/GitHub/Maintainer-guide/enable-discussion.md @@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. +< /> ### Prerequisites @@ -44,6 +45,10 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<body>`**: Contains the visible content of the document. - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. + + +< /> + ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file @@ -69,11 +74,14 @@ This readme contains my resume, please refer to the attached file in the repo. When the above HTML code is rendered in a browser, it will display the following content: <BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md"> + <> <h1>Git-Demo</h1> <p>This is a demo installation via GUI</p> <h1>Developed by Sanjay Viswanathan</h1> <p>This readme contains my resume, please refer to the attached file in the repo.</p> + + </> </BrowserWindow> ### Explanation @@ -124,4 +132,4 @@ Now you will be able to see the uploaded resume. ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. diff --git a/docs/GitHub/Maintainer-guide/github-labels.md b/docs/GitHub/Maintainer-guide/github-labels.md index 94daad74..160c0961 100644 --- a/docs/GitHub/Maintainer-guide/github-labels.md +++ b/docs/GitHub/Maintainer-guide/github-labels.md @@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. +< /> ### Prerequisites @@ -44,6 +45,10 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<body>`**: Contains the visible content of the document. - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. + + +< /> + ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file @@ -69,11 +74,14 @@ This readme contains my resume, please refer to the attached file in the repo. When the above HTML code is rendered in a browser, it will display the following content: <BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md"> + <> <h1>Git-Demo</h1> <p>This is a demo installation via GUI</p> <h1>Developed by Sanjay Viswanathan</h1> <p>This readme contains my resume, please refer to the attached file in the repo.</p> + + </> </BrowserWindow> ### Explanation @@ -114,6 +122,7 @@ Im going to add my resume and add my name as heading to the ``readme.md`` file </BrowserWindow> + Now you will be able to see the uploaded resume. ### Watch the video Tutorial @@ -122,4 +131,4 @@ Now you will be able to see the uploaded resume. ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. diff --git a/docs/GitHub/Maintainer-guide/github-project.md b/docs/GitHub/Maintainer-guide/github-project.md index 8aa1b312..861b9fcb 100644 --- a/docs/GitHub/Maintainer-guide/github-project.md +++ b/docs/GitHub/Maintainer-guide/github-project.md @@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. +< /> ### Prerequisites @@ -44,6 +45,10 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<body>`**: Contains the visible content of the document. - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. + + +< /> + ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file @@ -69,11 +74,14 @@ This readme contains my resume, please refer to the attached file in the repo. When the above HTML code is rendered in a browser, it will display the following content: <BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md"> + <> <h1>Git-Demo</h1> <p>This is a demo installation via GUI</p> <h1>Developed by Sanjay Viswanathan</h1> <p>This readme contains my resume, please refer to the attached file in the repo.</p> + + </> </BrowserWindow> ### Explanation @@ -131,4 +139,4 @@ Now you will be able to see the uploaded resume. ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. diff --git a/docs/GitHub/Maintainer-guide/milestone.md b/docs/GitHub/Maintainer-guide/milestone.md index f5eb3c79..03609278 100644 --- a/docs/GitHub/Maintainer-guide/milestone.md +++ b/docs/GitHub/Maintainer-guide/milestone.md @@ -9,6 +9,7 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. +< /> ### Prerequisites @@ -44,6 +45,10 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<body>`**: Contains the visible content of the document. - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. + + +< /> + ## Changing Readme and Adding more files. Change Im going to add my resume and add my name as heading to the ``readme.md`` file. @@ -69,11 +74,14 @@ This readme contains my resume, please refer to the attached file in the repo. When the above HTML code is rendered in a browser, it will display the following content: <BrowserWindow url="https://github.com/sanjay-kv/Git-Demo/edit/main/README.md"> + <> <h1>Git-Demo</h1> <p>This is a demo installation via GUI</p> <h1>Developed by Sanjay Viswanathan</h1> <p>This readme contains my resume, please refer to the attached file in the repo.</p> + + </> </BrowserWindow> ### Explanation @@ -118,6 +126,7 @@ Im going to add my resume and add my name as heading to the ``readme.md`` file. </BrowserWindow> + Now you will be able to see the uploaded resume. ### Watch the video Tutorial @@ -126,4 +135,4 @@ Now you will be able to see the uploaded resume. ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. diff --git a/docs/GitHub/intro-github.md b/docs/GitHub/intro-github.md index 394cc849..2a9b2522 100644 --- a/docs/GitHub/intro-github.md +++ b/docs/GitHub/intro-github.md @@ -15,6 +15,7 @@ description: In this tutorial, you will learn about GitHub, its importance, what --- GitHub is a web-based platform used for version control and collaboration. It allows developers to work together on projects from anywhere in the world. GitHub is built on top of Git, a distributed version control system created by Linus Torvalds in 2005. +< /> :::note Key Features of SQL: @@ -90,10 +91,13 @@ The fork is a personal copy of the repo which is already present or uploaded in ::: +< /> ### Watch the video Tutorial <iframe width="880" height="480" src="https://www.youtube.com/embed/GrTV59Y84S8?list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63" title="How to start with GitHub in 2024 | Beginner's Guide" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> +< /> + ## Conclusion -If you think this Github Tutorial starter kit for Beginner was useful to you, then don’t forget to share it with others. Till then, we will meet For uploading your project to your Github account, you need to install Git first. which we will discuss in detail in the next post. \ No newline at end of file +If you think this Github Tutorial starter kit for Beginner was useful to you, then don’t forget to share it with others. Till then, we will meet For uploading your project to your Github account, you need to install Git first. which we will discuss in detail in the next post. diff --git a/docs/GitHub/setup-environment/git-commands.md b/docs/GitHub/setup-environment/git-commands.md index 9fd3e174..f941cdef 100644 --- a/docs/GitHub/setup-environment/git-commands.md +++ b/docs/GitHub/setup-environment/git-commands.md @@ -11,6 +11,8 @@ description: In this tutorial, you will learn about the basic of git and 50 impo Git commands are handy when comes to fix any problems which you cant fix by the UI, for example consider a scenarion you need to fix the conflict in a page. Git Commands will help you to find the root cause and can explore the entire log history. At Git core it help you to keep a history of every change you made in the project files and help the user with track the changes, revert, helps to identify who made the changes. +< /> + ## Understanding Git: The Building Blocks In Setting up git on Windows tutorial you learned to perform how to check the current version of the git. Now below you will see how to add some changes to the files you have created. I assume you have a small project where you created a file called filename.ipynb, now you want to add that into the git. @@ -32,6 +34,8 @@ In Setting up git on Windows tutorial you learned to perform how to check the cu In this example, the `<h1>` tag creates a heading, and the `<p>` tag creates a paragraph. The browser interprets these tags and displays the content accordingly. HTML tags can be nested within each other to create more complex structures, such as lists, tables, forms, and more. +< /> + ## How Web Browsers Render HTML When a user requests a web page by entering a URL in the browser's address bar or clicking a link, the browser sends a request to the web server hosting the page. The server responds by sending the HTML content of the page back to the browser. The browser then parses the HTML code and renders the page on the user's screen. @@ -102,6 +106,8 @@ When a user requests a web page by entering a URL in the browser's address bar o ::: By understanding how web browsers render HTML content, web developers can optimize their code and design to create fast and responsive web pages. Techniques such as minimizing the use of inline styles, reducing the number of DOM elements, and optimizing images can help improve the performance of web pages and provide a better user experience. +< /> + ## Useful 50 Git Commands Cheatsheet In addition to rendering HTML content, web browsers handle various resources associated with a web page, including: diff --git a/docs/GitHub/setup-environment/setup-environment.md b/docs/GitHub/setup-environment/setup-environment.md index 86b3de69..727166eb 100644 --- a/docs/GitHub/setup-environment/setup-environment.md +++ b/docs/GitHub/setup-environment/setup-environment.md @@ -16,6 +16,7 @@ description: In this tutorial, you will learn how to set up your development env Github is a way of version control your software development using Git, Github was founded in 2008 and recently Microsoft has bought the company now Microsoft is the parent organization of Github. Now setting up is very straight forward process , first you need to create a GitHub account online, then Install Git in your system and connect your Git with GitHub. So all the changes will be updated to the GitHub. +< /> ### Step 1: Let’s create a Github Accountvbcvnb 1. Let’s create a Github Account, Go to the [GitHub Website](https://github.com/) and signup with your email ID. @@ -47,6 +48,8 @@ Github is a way of version control your software development using Git, Github w - 1. Upon sign in It will ask you to autorize Giscus (comment feature by GitHub) Click on Authorize ? - 2. Click on on the top right side ``profile icon`` -> ``your profile`` to see your profile. +< /> + ### Step 3: Understanding the Interface. Next step, Github will ask you to verify the account. As a final step it will ask you to verify the account, all you need to go to the email dashboard and verify the mail ID to proceed further. After verification, you will be redirected to the Github page as shown below, can also see whether your account is verified or not as highlighted below. I would recommend skipping this step to proceed further. @@ -55,6 +58,7 @@ Next step, Github will ask you to verify the account. As a final step it will as <BrowserWindow url="https://github.com/sanjay-kv" bodyStyle={{padding: 0}}> [![Github](./assets/5-github-interface.png)](https://github.com/sanjay-kv) </BrowserWindow> + ### Step 5: Final Step @@ -69,6 +73,9 @@ Congratulations! 5. ``9`` Any acitivity you do on GitHub will be recorded here as green check box, come here on ``Halloween`` :p. 6. ``10`` Apart from the checkbox all the activity of a month will be available here, you have option to make it private. + +< /> + ## Conclusion In conclusion, I hope you enjoyed reading this article on “How to create Github Account?”. In the next post, will be discussing using Git to create a Repository and clone a project Github. Signing off Sanjay Viswanathan. \ No newline at end of file diff --git a/docs/GitHub/setup-environment/setup-git-on-mac.md b/docs/GitHub/setup-environment/setup-git-on-mac.md index 75450fe3..58f6c8cf 100644 --- a/docs/GitHub/setup-environment/setup-git-on-mac.md +++ b/docs/GitHub/setup-environment/setup-git-on-mac.md @@ -16,6 +16,7 @@ description: In this tutorial, you will learn how to set up your development env Github is a way of version control your software development using Git, Github was founded in 2008 and recently Microsoft has bought the company now Microsoft is the parent organization of Github. Now setting up is very straight forward process , first you need to create a GitHub account online, then Install Git in your system and connect your Git with GitHub. So all the changes will be updated to the GitHub. +< /> ### Installing Git on Mac There are four ways we can install Github on mac @@ -49,7 +50,9 @@ brew install git-gui <BrowserWindow url="https://git-scm.com/downloads/win" bodyStyle={{padding: 0}}> [![GitHub](./assets/7-git-installer.png)](https://git-scm.com/downloads/win) </BrowserWindow> + +< /> ## Conclusion diff --git a/docs/GitHub/setup-environment/setup-git-on-windows.md b/docs/GitHub/setup-environment/setup-git-on-windows.md index e5fc7a4f..1b141401 100644 --- a/docs/GitHub/setup-environment/setup-git-on-windows.md +++ b/docs/GitHub/setup-environment/setup-git-on-windows.md @@ -16,6 +16,7 @@ description: In this tutorial, you will learn how to set up your development env Github provides two of installation, one the GitHub Desktop and command line by installing Git Software in your system. Personally from a developer perspective i would suggest you to use the command line as this will come in handy and more flexibility in terms of solving bugs and do more with version control, especially when the conflicts happens with the Git. This tutorial is focused on the command line version. +< /> ### Step 1: Let’s Download the git 1. Go to the [Git Website](https://git-scm.com/) and click on download for windows button. @@ -47,6 +48,8 @@ Github provides two of installation, one the GitHub Desktop and command line by - 1. The next screen click next on Public Licence. - 2. Choose the location as default and click on Next +< /> + ### Step 3: Understanding the Interface. Next step, Git Will ask you to install couple of components you can checko on additional icons to add on Desktop and leave the rest as default and click on the Next. @@ -112,6 +115,10 @@ Execute the below command to see your current version of git in Git CMD or windo </Tabs> + + +< /> + ## Conclusion In conclusion, I hope you enjoyed reading this article on “Setting up your Git Enviornment?”. In the next post, will be discussing using Git to create a Repository and clone a project Github. Signing off Sanjay Viswanathan. \ No newline at end of file From 706f69a2245a111d0aab02a33081a294a10cca37 Mon Sep 17 00:00:00 2001 From: steam_bell_92 <anujck45@gmail.com> Date: Fri, 8 Aug 2025 23:20:25 +0530 Subject: [PATCH 3/4] Removed not neccasry </ > things --- docs/GitHub/GitHub-basics/create-github-repo.md | 5 ----- docs/GitHub/GitHub-basics/first-opensource-code.md | 2 -- docs/GitHub/GitHub-basics/github-repo-command-line.md | 8 +------- docs/GitHub/GitHub-basics/how-to-clone-repo.md | 2 -- docs/GitHub/GitHub-basics/how-to-fork.md | 2 -- docs/GitHub/Maintainer-guide/enable-discussion.md | 4 ---- docs/GitHub/Maintainer-guide/github-labels.md | 4 ---- docs/GitHub/Maintainer-guide/github-project.md | 4 ---- docs/GitHub/Maintainer-guide/milestone.md | 4 ---- docs/GitHub/intro-github.md | 1 - docs/GitHub/setup-environment/git-commands.md | 5 ----- docs/GitHub/setup-environment/setup-environment.md | 4 ---- docs/GitHub/setup-environment/setup-git-on-mac.md | 3 --- docs/GitHub/setup-environment/setup-git-on-windows.md | 6 ------ 14 files changed, 1 insertion(+), 53 deletions(-) diff --git a/docs/GitHub/GitHub-basics/create-github-repo.md b/docs/GitHub/GitHub-basics/create-github-repo.md index 9242b224..dd619c40 100644 --- a/docs/GitHub/GitHub-basics/create-github-repo.md +++ b/docs/GitHub/GitHub-basics/create-github-repo.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. -< /> ### Prerequisites @@ -45,10 +44,6 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<body>`**: Contains the visible content of the document. - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. - - -< /> - ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file diff --git a/docs/GitHub/GitHub-basics/first-opensource-code.md b/docs/GitHub/GitHub-basics/first-opensource-code.md index 10f4a940..1bfea2cf 100644 --- a/docs/GitHub/GitHub-basics/first-opensource-code.md +++ b/docs/GitHub/GitHub-basics/first-opensource-code.md @@ -10,8 +10,6 @@ keywords: [html, web development, elements, tags, html elements, html tags, html HTML Attributes and Values are used to provide additional information about HTML elements -< /> - ## HTML Attributes HTML attributes are used to provide additional information about HTML elements. diff --git a/docs/GitHub/GitHub-basics/github-repo-command-line.md b/docs/GitHub/GitHub-basics/github-repo-command-line.md index 1212277a..946b1cd2 100644 --- a/docs/GitHub/GitHub-basics/github-repo-command-line.md +++ b/docs/GitHub/GitHub-basics/github-repo-command-line.md @@ -9,8 +9,6 @@ description: In this tutorial, you will learn about the structure of an HTML doc HTML (Hypertext Markup Language) is the standard markup language for creating web pages. It provides the structure and layout of the content on the web. In this tutorial, you will learn about the syntax and structure of HTML. -< /> - ## Prerequisites You should have a Github account 2. Should have a basic understanding of how Git works/ and Git running in your OS. @@ -57,10 +55,6 @@ git push -u origin main - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. - -< /> - - ### Browser Rendering <BrowserWindow url="https://github.com/sanjay-kv/demo-repo" bodyStyle={{padding: 0}}> @@ -118,4 +112,4 @@ git config --global user.name "Github username" ## Conclusion -In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. +In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications. \ No newline at end of file diff --git a/docs/GitHub/GitHub-basics/how-to-clone-repo.md b/docs/GitHub/GitHub-basics/how-to-clone-repo.md index 7d2543c6..b8f30c55 100644 --- a/docs/GitHub/GitHub-basics/how-to-clone-repo.md +++ b/docs/GitHub/GitHub-basics/how-to-clone-repo.md @@ -10,8 +10,6 @@ keywords: [html, web development, attributes, values, html attributes, html valu HTML Attributes and Values are used to provide additional information about HTML elements -< /> - ## HTML Attributes HTML attributes are used to provide additional information about HTML elements. diff --git a/docs/GitHub/GitHub-basics/how-to-fork.md b/docs/GitHub/GitHub-basics/how-to-fork.md index ea635449..4984877f 100644 --- a/docs/GitHub/GitHub-basics/how-to-fork.md +++ b/docs/GitHub/GitHub-basics/how-to-fork.md @@ -10,8 +10,6 @@ description: In this tutorial, you will learn about the structure of an HTML doc HTML Attributes and Values are used to provide additional information about HTML elements -< /> - ## HTML Attributes HTML attributes are used to provide additional information about HTML elements. diff --git a/docs/GitHub/Maintainer-guide/enable-discussion.md b/docs/GitHub/Maintainer-guide/enable-discussion.md index a05e94d4..9d176277 100644 --- a/docs/GitHub/Maintainer-guide/enable-discussion.md +++ b/docs/GitHub/Maintainer-guide/enable-discussion.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. -< /> ### Prerequisites @@ -46,9 +45,6 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. - -< /> - ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file diff --git a/docs/GitHub/Maintainer-guide/github-labels.md b/docs/GitHub/Maintainer-guide/github-labels.md index 160c0961..62dc98e2 100644 --- a/docs/GitHub/Maintainer-guide/github-labels.md +++ b/docs/GitHub/Maintainer-guide/github-labels.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. -< /> ### Prerequisites @@ -46,9 +45,6 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. - -< /> - ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file diff --git a/docs/GitHub/Maintainer-guide/github-project.md b/docs/GitHub/Maintainer-guide/github-project.md index 861b9fcb..5841bc52 100644 --- a/docs/GitHub/Maintainer-guide/github-project.md +++ b/docs/GitHub/Maintainer-guide/github-project.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. -< /> ### Prerequisites @@ -46,9 +45,6 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. - -< /> - ## Changing Readme and Adding more files. Im going to add my resume and add my name as heading to the ``readme.md`` file diff --git a/docs/GitHub/Maintainer-guide/milestone.md b/docs/GitHub/Maintainer-guide/milestone.md index 03609278..86d59756 100644 --- a/docs/GitHub/Maintainer-guide/milestone.md +++ b/docs/GitHub/Maintainer-guide/milestone.md @@ -9,7 +9,6 @@ description: In this tutorial, you will learn about the how to create a GitHub r In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch. Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation. -< /> ### Prerequisites @@ -46,9 +45,6 @@ Upon creation you will get a screen like this below, the explanation of each ele - **`<!-- Your content goes here -->`**: Represents a comment that is not displayed in the browser. - -< /> - ## Changing Readme and Adding more files. Change Im going to add my resume and add my name as heading to the ``readme.md`` file. diff --git a/docs/GitHub/intro-github.md b/docs/GitHub/intro-github.md index 2a9b2522..d21f9156 100644 --- a/docs/GitHub/intro-github.md +++ b/docs/GitHub/intro-github.md @@ -15,7 +15,6 @@ description: In this tutorial, you will learn about GitHub, its importance, what --- GitHub is a web-based platform used for version control and collaboration. It allows developers to work together on projects from anywhere in the world. GitHub is built on top of Git, a distributed version control system created by Linus Torvalds in 2005. -< /> :::note Key Features of SQL: diff --git a/docs/GitHub/setup-environment/git-commands.md b/docs/GitHub/setup-environment/git-commands.md index f941cdef..2b2724a3 100644 --- a/docs/GitHub/setup-environment/git-commands.md +++ b/docs/GitHub/setup-environment/git-commands.md @@ -11,8 +11,6 @@ description: In this tutorial, you will learn about the basic of git and 50 impo Git commands are handy when comes to fix any problems which you cant fix by the UI, for example consider a scenarion you need to fix the conflict in a page. Git Commands will help you to find the root cause and can explore the entire log history. At Git core it help you to keep a history of every change you made in the project files and help the user with track the changes, revert, helps to identify who made the changes. -< /> - ## Understanding Git: The Building Blocks In Setting up git on Windows tutorial you learned to perform how to check the current version of the git. Now below you will see how to add some changes to the files you have created. I assume you have a small project where you created a file called filename.ipynb, now you want to add that into the git. @@ -34,8 +32,6 @@ In Setting up git on Windows tutorial you learned to perform how to check the cu In this example, the `<h1>` tag creates a heading, and the `<p>` tag creates a paragraph. The browser interprets these tags and displays the content accordingly. HTML tags can be nested within each other to create more complex structures, such as lists, tables, forms, and more. -< /> - ## How Web Browsers Render HTML When a user requests a web page by entering a URL in the browser's address bar or clicking a link, the browser sends a request to the web server hosting the page. The server responds by sending the HTML content of the page back to the browser. The browser then parses the HTML code and renders the page on the user's screen. @@ -106,7 +102,6 @@ When a user requests a web page by entering a URL in the browser's address bar o ::: By understanding how web browsers render HTML content, web developers can optimize their code and design to create fast and responsive web pages. Techniques such as minimizing the use of inline styles, reducing the number of DOM elements, and optimizing images can help improve the performance of web pages and provide a better user experience. -< /> ## Useful 50 Git Commands Cheatsheet diff --git a/docs/GitHub/setup-environment/setup-environment.md b/docs/GitHub/setup-environment/setup-environment.md index 727166eb..ffcaf989 100644 --- a/docs/GitHub/setup-environment/setup-environment.md +++ b/docs/GitHub/setup-environment/setup-environment.md @@ -16,7 +16,6 @@ description: In this tutorial, you will learn how to set up your development env Github is a way of version control your software development using Git, Github was founded in 2008 and recently Microsoft has bought the company now Microsoft is the parent organization of Github. Now setting up is very straight forward process , first you need to create a GitHub account online, then Install Git in your system and connect your Git with GitHub. So all the changes will be updated to the GitHub. -< /> ### Step 1: Let’s create a Github Accountvbcvnb 1. Let’s create a Github Account, Go to the [GitHub Website](https://github.com/) and signup with your email ID. @@ -48,7 +47,6 @@ Github is a way of version control your software development using Git, Github w - 1. Upon sign in It will ask you to autorize Giscus (comment feature by GitHub) Click on Authorize ? - 2. Click on on the top right side ``profile icon`` -> ``your profile`` to see your profile. -< /> ### Step 3: Understanding the Interface. @@ -74,8 +72,6 @@ Congratulations! 6. ``10`` Apart from the checkbox all the activity of a month will be available here, you have option to make it private. -< /> - ## Conclusion In conclusion, I hope you enjoyed reading this article on “How to create Github Account?”. In the next post, will be discussing using Git to create a Repository and clone a project Github. Signing off Sanjay Viswanathan. \ No newline at end of file diff --git a/docs/GitHub/setup-environment/setup-git-on-mac.md b/docs/GitHub/setup-environment/setup-git-on-mac.md index 58f6c8cf..75450fe3 100644 --- a/docs/GitHub/setup-environment/setup-git-on-mac.md +++ b/docs/GitHub/setup-environment/setup-git-on-mac.md @@ -16,7 +16,6 @@ description: In this tutorial, you will learn how to set up your development env Github is a way of version control your software development using Git, Github was founded in 2008 and recently Microsoft has bought the company now Microsoft is the parent organization of Github. Now setting up is very straight forward process , first you need to create a GitHub account online, then Install Git in your system and connect your Git with GitHub. So all the changes will be updated to the GitHub. -< /> ### Installing Git on Mac There are four ways we can install Github on mac @@ -50,9 +49,7 @@ brew install git-gui <BrowserWindow url="https://git-scm.com/downloads/win" bodyStyle={{padding: 0}}> [![GitHub](./assets/7-git-installer.png)](https://git-scm.com/downloads/win) </BrowserWindow> - -< /> ## Conclusion diff --git a/docs/GitHub/setup-environment/setup-git-on-windows.md b/docs/GitHub/setup-environment/setup-git-on-windows.md index 1b141401..0247f3dc 100644 --- a/docs/GitHub/setup-environment/setup-git-on-windows.md +++ b/docs/GitHub/setup-environment/setup-git-on-windows.md @@ -16,7 +16,6 @@ description: In this tutorial, you will learn how to set up your development env Github provides two of installation, one the GitHub Desktop and command line by installing Git Software in your system. Personally from a developer perspective i would suggest you to use the command line as this will come in handy and more flexibility in terms of solving bugs and do more with version control, especially when the conflicts happens with the Git. This tutorial is focused on the command line version. -< /> ### Step 1: Let’s Download the git 1. Go to the [Git Website](https://git-scm.com/) and click on download for windows button. @@ -48,7 +47,6 @@ Github provides two of installation, one the GitHub Desktop and command line by - 1. The next screen click next on Public Licence. - 2. Choose the location as default and click on Next -< /> ### Step 3: Understanding the Interface. @@ -115,10 +113,6 @@ Execute the below command to see your current version of git in Git CMD or windo </Tabs> - - -< /> - ## Conclusion In conclusion, I hope you enjoyed reading this article on “Setting up your Git Enviornment?”. In the next post, will be discussing using Git to create a Repository and clone a project Github. Signing off Sanjay Viswanathan. \ No newline at end of file From 4ba9eb912ea7fc4ab245c0b8e84de6152e8602a2 Mon Sep 17 00:00:00 2001 From: steam_bell_92 <anujck45@gmail.com> Date: Sat, 9 Aug 2025 12:08:34 +0530 Subject: [PATCH 4/4] Removed more unnecessary things which were left out intro-github.md --- docs/GitHub/intro-github.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/GitHub/intro-github.md b/docs/GitHub/intro-github.md index d21f9156..5df644fe 100644 --- a/docs/GitHub/intro-github.md +++ b/docs/GitHub/intro-github.md @@ -70,7 +70,7 @@ So in the above example all the developer where able to work on different feautr GitHub Simplfy all the command line interface of Git and make it more GUI friendly. GitHub has builds above of git. Here want we do is staging the files and doing the commit, You can clone the entire repository and create a branch and commit to that branch ask the main developer to merge the branch. when you clone in reality you are creating a copy of the real code/repository in your local environment. - [![Git Structure](./assets/2-git-strucutre.png)] + ![Git Structure](./assets/2-git-strucutre.png) :::info @@ -90,12 +90,10 @@ The fork is a personal copy of the repo which is already present or uploaded in ::: -< /> ### Watch the video Tutorial <iframe width="880" height="480" src="https://www.youtube.com/embed/GrTV59Y84S8?list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63" title="How to start with GitHub in 2024 | Beginner's Guide" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> -< /> ## Conclusion