Skip to content

Instantly share code, notes, and snippets.

View emmanuelbarturen's full-sized avatar
🌱
Give me an challenge

Emmanuel Barturen emmanuelbarturen

🌱
Give me an challenge
View GitHub Profile
@emmanuelbarturen
emmanuelbarturen / System Design.md
Created November 12, 2022 03:00 — 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?
@emmanuelbarturen
emmanuelbarturen / hosts
Created April 22, 2021 16:46 — forked from lanlee212/hosts
Hosts
#Social Networking Websites Blocker
#Updated 01/01/2012 (dd/mm/yyyy)
#Opensource project by WingAdmiral from Sourceforge
127.0.0.1 localhost
::1 localhost
#Web Addresses that will be blocked
@emmanuelbarturen
emmanuelbarturen / cashier.php
Created November 5, 2020 01:32 — forked from Braunson/cashier.php
Extending the Laravel package Cashier for creating an customer without a credit card
namespace Acme\V1\Billing;
// BillableInterface.php
use Laravel\Cashier\BillableInterface as CashierInterface;
interface BillableInterface extends CashierInterface {
}