Skip to content

Instantly share code, notes, and snippets.

View nitingautam's full-sized avatar
💭
I may be slow to respond.

Dev G nitingautam

💭
I may be slow to respond.
View GitHub Profile
@nitingautam
nitingautam / System Design.md
Created November 27, 2020 04:02 — 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?
@nitingautam
nitingautam / 100daysLog.md
Created November 13, 2018 18:59 — forked from abhinishetye/100daysLog.md
100DaysofMLCode

100 Days Of ML Code

Hi! I am Abhini, a Machine Learning Enthusiast and this is my log for the 100DaysOfMLCode Challenge

Day 1: July 08, 2018

Today's Progress: Understood the basics of Neural Network and how to build ANN. Also practiced Python on Hackerrank.

Thoughts: Cleared up my concepts on ANN in which I had earlier found confusing like Activation and Cost functions, Batch and Stochastic Gradient Descent and Backpropagation.

@nitingautam
nitingautam / download.js
Created March 1, 2018 17:29 — forked from viet-wego/download.js
Pluralsight video download
//1
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
//2
jQuery.noConflict();