Skip to content

Instantly share code, notes, and snippets.

View rajnishmsrit's full-sized avatar
🏃‍♂️

Rajnish Kumar rajnishmsrit

🏃‍♂️
View GitHub Profile
@rajnishmsrit
rajnishmsrit / FunProjectJS.md
Last active January 6, 2023 11:53
Fun Projects

Web Alarm Clock and StopWatch

Mobile Alarm Clock and StopWatch App Todo

  1. Web Browser 0:43
  2. Html 0:55
  3. High Level 0:58
  4. ECMA 1:07
  5. WASM 1:11
  6. Runtime 1:16
  7. Scripting Language 1:23
  8. Browser Dev Tools 1:26
  9. Interpreted 1:34
  10. V8 Engine 1:42
@rajnishmsrit
rajnishmsrit / reactLiteProjects.md
Last active January 2, 2023 21:23
ReactProjects

Authentication and Connection with Firebase

Authentication with Google/FaceBook Widget

Infinite Scroll

Fetch Data and show it as Chart

Create a multi-step form and state management.

Payment GateWay Integration

@rajnishmsrit
rajnishmsrit / test.md
Created December 29, 2022 19:11
This only will be for demo

This one willl be awesome.

@rajnishmsrit
rajnishmsrit / System Design.md
Created February 10, 2020 13:55 — 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?
@rajnishmsrit
rajnishmsrit / myscript.sh
Created August 15, 2019 21:07 — forked from bradtraversy/myscript.sh
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"
@rajnishmsrit
rajnishmsrit / review-checklist.md
Last active April 11, 2019 18:32 — forked from bigsergey/review-checklist.md
Front-end Code Review Checklist

Review checklist

General

  1. Does the code work?
  2. Description of the project status is included.
  3. Code is easily understand.
  4. Code is written following the coding standarts/guidelines (React in our case).
  5. Code is in sync with existing code patterns/technologies.
  6. DRY. Is the same code duplicated more than twice?
@rajnishmsrit
rajnishmsrit / modules.js
Created March 29, 2019 10:07 — forked from branneman/1-globals.js
A history of different JavaScript module formats
/**
* Globals
*/
var Carrousel = function(elem) { this.init() };
Carrousel.prototype = { init: function() {} };
new Carrousel();
/**
* Namespacing
* - No globals (only the namespace variable itself is global)
@rajnishmsrit
rajnishmsrit / gist-reveal.it-slides.html
Created February 13, 2019 11:52 — forked from ryanj/gist-reveal.it-slides.html
Gist-powered Revealjs slideshow presentations http://gist-reveal.it
<section data-background-transition='zoom' data-transition='concave' data-background='http://ryanjarvinen.com/presentations/shared/img/broadcast_reveal_dark.png' data-state='blackout'>
<h2>Gist-Powered</h2>
<h1>Reveal.js</h1>
<h2>Slideshow Presentations</h2>
<br/>
<h1 class='fragment grow'><a style='color:deepskyblue;' href='http://gist-reveal.it'>gist-reveal.it</a></h1>
</section>
<section data-background-transition='zoom' data-transition='linear' id='try-it'>
<h2>Try it out!</h2>
<p>Create your own deck by forking a copy of <a href='https://gist.github.com/ryanj/af84d40e58c5c2a908dd'>this github gist</a>: <br /><a href='https://gist.github.com/ryanj/af84d40e58c5c2a908dd'>https://gist.github.com/ryanj/af84d40e58c5c2a908dd</a></p>