Skip to content

Instantly share code, notes, and snippets.

View vjgpt's full-sized avatar
🎯
Focusing

Vijay Gupta vjgpt

🎯
Focusing
View GitHub Profile
@vjgpt
vjgpt / System Design.md
Created May 20, 2020 12:04 — 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?
@vjgpt
vjgpt / request.py
Created March 31, 2020 06:59
This file is used to send http request to endpoint created using Tensorflow Serving.
import os
from os import path
import json
import requests
import numpy as np
import matplotlib.pyplot as plt
import subprocess
import gzip
import sys