Skip to content

Instantly share code, notes, and snippets.

View cggaurav's full-sized avatar
🏠
Working from home

Gaurav cggaurav

🏠
Working from home
View GitHub Profile
@dfrankland
dfrankland / bootstrap-v4-alpha-responsive-text-align.css
Last active April 3, 2018 03:51
Responsive text-align classes for Bootstrap v4-alpha http://v4-alpha.getbootstrap.com/
/* Responsive Text Align */
/* Text Align Up */
@media (min-width: 34em) {
.text-center-sm-up {
text-align: center;
}
.text-right-sm-up {
text-align: right;
}
@vasanthk
vasanthk / System Design.md
Last active October 22, 2025 09:01
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?
@twolfson
twolfson / README.md
Last active December 2, 2018 07:05
Internal monitoring evaluation / research
@grimen
grimen / streams-test.js
Last active January 23, 2019 09:41
Experiments with Node.js Stream API.
/* =============================================
Dependencies
------------------------------------------ */
const debug = require('debug')
const chalk = require('chalk')
const { Readable, Writable, Transform, pipeline } = require('stream')