Skip to content

Instantly share code, notes, and snippets.

View gajjardarshithasmukhbhai's full-sized avatar
🏹
work hard silentely. Your success will became your noise

gajjar darshit hasmukhbhai gajjardarshithasmukhbhai

🏹
work hard silentely. Your success will became your noise
View GitHub Profile
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / react-javascript-refresher.md
Last active March 24, 2023 19:47
This is Refresher course of React and Next JS

React Practice Course

screenshot (1)

  • React is decrative means you have no need to doing vanilla javascript kind of stuff
ex. const para = document.createElement('p');
para.textContent = 'This is Also Visible';
document.getElementById('root').append(paar);
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / Advaced-Git-Concepts.md
Last active March 24, 2023 19:48
Advanced Git concepts are super important when you worked in Extensively worked on the Dev-Ops Side Because withOut You will struggling

Advanced Git and Github Series & CI/CD

Git and GitHub Intro
Git Imporant command
  • git checkout -b : It create the new branch and checkout on that branch
  • git switch -c : It create the new branch and checkout on that branch. It work same like checkout. but above commad confused begginer so git introduce this one
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / micro_front_end_react.md
Last active March 24, 2023 19:48
Micro Front End in React

Welcome in Micro Front End Architecture

Monolithic Front End Architecture

uHeqbT.png

Micro Front End Architecture
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / TypeScript_Refresher.md
Last active March 24, 2023 19:51
TypeScript is very Important when you are worked on the enterprise level of application. You will learn in this module are integrate the TypeScript with the React Js and Node Js

Introduction and Installement of Type Script

  • What is The Type Script and How it's different

68747470733a2f2f692e696d2e67652f323032322f30372f30342f75556b7673632e706e67

68747470733a2f2f692e696d2e67652f323032322f30372f30342f75556b6852792e706e67

For Installing the TypeScript You have need below things

@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / quick_javascript_refresher.md
Last active March 24, 2023 19:49
Java Script Various Concepts like ES6, Vanilla JavaScript, OOP Concepts of JavaScript and many more

JavaScript Deep Dive Concepts

Behind The Scenes of JavaScript & How it works, the weired Parts & ES5 vs ES6+

No ES5 ES6
1 Supporting in basically all browser including old IE Supported in modern browser can be transpiled to ES5
2 Only had var, not let or const Many New Features that help to write the cleaner and faster code
3 Syntax are same as like ES6 but quite some missing Features still under active development and big step forward
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / Docker-Kubernetes-EC2-EKS-ECS.md
Last active December 19, 2023 20:37
In this Notes I go through the very detailed things like Docker, ECS, EKS, EFS, Load Balance, EC2, Kubernetes and Docker

Docker command to Reflect User Changes

Most Docker Commands that Needs in Day TO Day Life

  1. docker create -> creating the container in Docker
  2. docker rename -> Renaming the container in Docker
  3. docker run -> creating and start the container in docker
  4. docker rm -> Delete the container through container id
  5. docker rmi <IMAGE_ID> -> Deleting the docker Image through Image Id
  6. docker ps -> Show all the running process in running Dockers
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / System Design.md
Created August 4, 2020 22:33 — forked from vasanthk/System Design.md
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / Advanced-Javascript.md
Last active March 30, 2023 12:42
Hello fork in this gist i mention JavaScript and his tutorial and some snippets so you understand the advanced javascript concept and his snippets of code

Javascript Begginer to Advanced Tutorial

1.Topic Of JavaScript Engine

  • what is Javascript engine
    • Javascript engine basically same as like the other machine.they convert javascript code into the machine code
    • different browser has diffrent javascript engine
      • Google Chrome ----------> V8 Engine
      • FireFox ----------> spiderMonkey
  • safari ----------> javascript core
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / contactGist.md
Created December 12, 2019 17:34
How to connect with GitHub Team if your Gist is deleted