Skip to content

Instantly share code, notes, and snippets.

View rhvsingh's full-sized avatar

Raja Harsh Vardhan Singh rhvsingh

View GitHub Profile
@rhvsingh
rhvsingh / Commit Formatting.md
Created January 26, 2025 22:17 — forked from clemtibs/Commit Formatting.md
Angular Commit Format Reference Sheet

Commit Message Format

This specification is inspired by and supersedes the [AngularJS commit message format][commit-message-format].

We have very precise rules over how our Git commit messages must be formatted. This format leads to easier to read commit history.

Each commit message consists of a header, a body, and a footer.

@rhvsingh
rhvsingh / temporary.html
Last active September 18, 2022 21:08
This is a temporary code snippet for testing purpose
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Page</title>
<style>
body {
margin: 0;
@rhvsingh
rhvsingh / reactjs.md
Last active September 18, 2022 21:18
First Gist about ReactJS

Reactjs is a javascript library for building user interfaces. Reactjs is easy to learn. In reactjs, you can break codes in the form of components and can pass values through props. Components can be used by different components in which they are imported. Reactjs gives us the power to not reload the whole webpage or website but just to reload that particular section or component. That makes the website load and work much faster than the normal website with only vanilla js.