Skip to content

Instantly share code, notes, and snippets.

View kumarvaradarajulu's full-sized avatar

kumarvaradarajulu

  • CrowdStrike
  • Bangalore, India
View GitHub Profile
@kumarvaradarajulu
kumarvaradarajulu / list.md
Created July 1, 2023 07:58 — forked from ih2502mk/list.md
Quantopian Lectures Saved
@kumarvaradarajulu
kumarvaradarajulu / next_nginx.md
Created May 31, 2020 15:12 — forked from kocisov/next_nginx.md
How to setup next.js app on nginx with letsencrypt

How to setup next.js app on nginx with letsencrypt

next.js, nginx, reverse-proxy, ssl

1. Install nginx and letsencrypt

$ sudo apt-get update
$ sudo apt-get install nginx letsencrypt

Also enable nginx in ufw

@kumarvaradarajulu
kumarvaradarajulu / System Design.md
Created May 4, 2020 08:51 — 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?
@kumarvaradarajulu
kumarvaradarajulu / gunicorn_with_virtualenv
Created June 5, 2016 08:04 — forked from shrkw/gunicorn_with_virtualenv
CentOS init script for Gunicorn with Virtualenv
#!/bin/sh
#
# gunicorn_sr Startup script for gunicorn for sr
#
# chkconfig: - 86 14
# processname: gunicorn
# pidfile:
# description: Python application server
#
### BEGIN INIT INFO