Skip to content

Instantly share code, notes, and snippets.

View ranaaditya's full-sized avatar
๐ŸŽฏ
Focusing

Aditya Rana ranaaditya

๐ŸŽฏ
Focusing
View GitHub Profile
@ranaaditya
ranaaditya / AdbCommands
Created September 25, 2023 18:38 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@ranaaditya
ranaaditya / latency.txt
Created July 20, 2022 05:11 — forked from jboner/latency.txt
Latency Numbers Every Programmer Should Know
Latency Comparison Numbers (~2012)
----------------------------------
L1 cache reference 0.5 ns
Branch mispredict 5 ns
L2 cache reference 7 ns 14x L1 cache
Mutex lock/unlock 25 ns
Main memory reference 100 ns 20x L2 cache, 200x L1 cache
Compress 1K bytes with Zippy 3,000 ns 3 us
Send 1K bytes over 1 Gbps network 10,000 ns 10 us
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD
@ranaaditya
ranaaditya / latency.markdown
Created July 20, 2022 05:10 — forked from hellerbarde/latency.markdown
Latency numbers every programmer should know

Latency numbers every programmer should know

L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns             
Compress 1K bytes with Zippy ............. 3,000 ns  =   3 ยตs
Send 2K bytes over 1 Gbps network ....... 20,000 ns  =  20 ยตs
SSD random read ........................ 150,000 ns  = 150 ยตs

Read 1 MB sequentially from memory ..... 250,000 ns = 250 ยตs

Keybase proof

I hereby claim:

  • I am ranaaditya on github.
  • I am ranaaditya (https://keybase.io/ranaaditya) on keybase.
  • I have a public key ASC1KSsMQW-vCdxQ6vaGeV-uYXdV3gMyKxw0ZLwH_4k80Ao

To claim this, I am signing this object:

/**
* @author ranaaditya
*/
#include<bits/stdc++.h>
using namespace std;
struct Node {
int data;
@ranaaditya
ranaaditya / gist:fd15c84d96db3325e1c4970907c94075
Created October 20, 2020 03:01 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: ๐Ÿ˜„ :smile: ๐Ÿ˜† :laughing:
๐Ÿ˜Š :blush: ๐Ÿ˜ƒ :smiley: โ˜บ๏ธ :relaxed:
๐Ÿ˜ :smirk: ๐Ÿ˜ :heart_eyes: ๐Ÿ˜˜ :kissing_heart:
๐Ÿ˜š :kissing_closed_eyes: ๐Ÿ˜ณ :flushed: ๐Ÿ˜Œ :relieved:
๐Ÿ˜† :satisfied: ๐Ÿ˜ :grin: ๐Ÿ˜‰ :wink:
๐Ÿ˜œ :stuck_out_tongue_winking_eye: ๐Ÿ˜ :stuck_out_tongue_closed_eyes: ๐Ÿ˜€ :grinning:
๐Ÿ˜— :kissing: ๐Ÿ˜™ :kissing_smiling_eyes: ๐Ÿ˜› :stuck_out_tongue:
@ranaaditya
ranaaditya / System Design.md
Created November 12, 2019 17:48 — 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?