Skip to content

Instantly share code, notes, and snippets.

View ridwanray's full-sized avatar
💭
I'm Always Learning and Implementing New Things

ridwanray

💭
I'm Always Learning and Implementing New Things
View GitHub Profile
@ridwanray
ridwanray / .js
Created August 12, 2021 16:03
Dynamic Js FIltering For Json Files
const data =
[
{ "id":1,
"name": "Red Bench",
"category": "people",
"price": 3.89,
"currency": "USD",
"image": {
"src": "https://images.pexels.com/photos/1000445/pexels-photo-1000445.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500",
"alt": "Red Bench Image"
@ridwanray
ridwanray / System Design.md
Created June 10, 2021 17:42 — 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?
@mortenege
mortenege / django_channels_aws_eb_alb.md
Created March 4, 2018 06:48
Django Channels on AWS Elastic Beanstalk using an ALB

Django Channels on AWS Elastic Beanstalk using an ALB

This post will describe how to set up a Django Channels solution using AWS Elastic Beanstalk [EB]. This guide is written in response to there being very little information on the combination of Channels and AWS. Mainly many solutions end with problems regarding websockets, which is a fundamental part of Channels. See here and here. This guide will consist of multiple step-by-step parts including

  • How to set up a local Django Channels solution
  • How to set up an Application Load Balancer [ALB] to serve websockets
  • How to configure EB to deploy Cha