Skip to content

Instantly share code, notes, and snippets.

View vinkrish's full-sized avatar
🎯
Focusing

Vinay Krishna vinkrish

🎯
Focusing
View GitHub Profile
Android Studio:
Ctrl + Alt + L
Ctrl + Alt + I
Eclipse:
Ctrl + I
Ctrl + Shift + F
Sublime:
HTML / CSS / JS : Ctrl + Shift + H
Visual Studio Code:
Ctrl+' = Toggle Terminal
Cmd + P = Go to File
Cmd + o = Opens file in finder
Cmd + Shift + k = Delete Line
Shift + Alt + F = Format with Indentation
Shift + Cmd + L = multi-word selection
Cmd + Alt + Up/Down = Selects in a column directly up or down from the cursor's position
Ctrl + k + 0 = Fold all section
Ctrl + k + j = Unfold all section
AFAIK: As Far As I Know
AFK: Away From Keyboard
AMA: Ask Me Anything
CMV: Change My View
CW: Content Warning
DAE: Does Anybody Else
DRY: Don’t Repeat Yourself
ELI5: Explain Like I’m 5
FOMO: Fear Of Missing Out
FP: Favorite Person or Fair Play
@vinkrish
vinkrish / bash_command.md
Last active July 2, 2023 16:10
Linux Commands

clear
sudo apt=get update && sudo apt-get upgrade

whoami
hostname
ls
ls -l
@vinkrish
vinkrish / git-commands.md
Last active November 23, 2024 17:40
Git Handy Commands

Setting up a repo

$ git init
will initialize git repository in current directory
(or)
$ git clone ssh://[email protected]/path/to/my-project.git
$ cd my-project

$ git remote -v
to know about remote repos

@vinkrish
vinkrish / System Design.md
Created May 14, 2018 05:35 — 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?