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 / firebasehost.md
Last active November 6, 2019 12:51
How to firebase is used for hosting for react App and normal web app.

How to React or Any Web app host in Firestore

step:1

Install Firebase CLI To host your site with Firebase Hosting, you need the Firebase CLI (a command line tool). Run the following npm command to install the CLI or update to the latest CLI version.

npm install -g firebase-tools
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / Drawer_Navigatiom.md
Last active December 2, 2021 09:01
In this Gist I make some snippets of code of Navigation so you understand how to different label,Icon-name and Icon-header include in React Navigation

Drawer Navigation style so you make more Attract UI

const MyDrawerNavigator = createDrawerNavigator({

  Home:  MyHomeScreen,    
Notifications: MyNotificationsScreen,

},{
drawerOpenRoute : "DrawerOpen",
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / rightsidebar.md
Last active November 15, 2019 10:52
In this source code i mention on how to right-sidebar to left-sidebar through react navigation and Time duration set in React navigation

Right to Left Side bar with Time Duration

afterSignIn: {
    screen: MyApp,
    navigationOptions: ({ navigation }) => ({
      headerRight: <View style={{ flexDirection: "row" }}>
        <Iconss name="search1" size={22} style={{ marginRight: 21, color: "white" }} />
        <Icon name="ios-cloud-done" size={22} style={{ marginRight: 15, color: "white" }} />
        <Icons name="dots-three-vertical" size={22} style={{ marginRight: 9, color: "white" }} />
@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / Animation-React-Native.md
Last active November 15, 2019 11:48
How to Basic Animation in React-Native icons and other components

Animation in React Native

step:1

  • first import the animation libraray
npm install react-native-animatable

step:2

@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / healthyBaba(Project).md
Last active March 30, 2023 12:43
I start new Healthy Baba App on Android

Healthy Baba

Folder Location Local Machine and Repo

Local Machine:C:\Users\nikunjgajjar1\Desktop\healthyBaba

Design

HealthApp – 2 HealthApp – 3 HealthApp – 4 HealthApp – 5

@gajjardarshithasmukhbhai
gajjardarshithasmukhbhai / contactGist.md
Created December 12, 2019 17:34
How to connect with GitHub Team if your Gist is deleted
@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 / 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 / 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