Skip to content

Instantly share code, notes, and snippets.

View sonukapoor's full-sized avatar
🎯
Hello :)

Sonu Kapoor sonukapoor

🎯
Hello :)
View GitHub Profile
@sonukapoor
sonukapoor / gist:1e742b200e87b0cec59906126baa45b2
Created August 8, 2018 01:46 — forked from pincheira/gist:2724082
Custom override console.log to display date on every return string
function showDate(){
var date = new Date(),
str = date.toUTCString();
return str;
}
var orig = console.log;
console.log = function() {
@sonukapoor
sonukapoor / ngrxintro.md
Created September 9, 2018 00:47 — forked from btroncone/ngrxintro.md
A Comprehensive Introduction to @ngrx/store - Companion to Egghead.io Series

Comprehensive Introduction to @ngrx/store

By: @BTroncone

Also check out my lesson @ngrx/store in 10 minutes on egghead.io!

Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!

Table of Contents

Git rebase easy
// make sure that you are on your branch
git fetch origin
git reset $(git merge-base master $(git branch --show-current))
Git download PR into new branch
git fetch origin pull/2/head
git checkout -b NEW_BRANCH_NAME FETCH_HEAD
@sonukapoor
sonukapoor / gist:ceb5d81754e74402f692c2dcac65b7b2
Created October 27, 2018 04:41
Setup powerline font for vscode macos
download and install font from https://github.com/abertsch/Menlo-for-Powerline
set your vs code font to:
"terminal.external.osxExec": "iterm.app",
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontFamily": "Menlo for Powerline",
https://run.plnkr.co/preview/ckf5hukqg000e3b6aom42idir/
@sonukapoor
sonukapoor / GitCommitBestPractices.md
Created June 8, 2022 12:33 — forked from luismts/GitCommitBestPractices.md
Git Tips and Git Commit Best Practices

Git Commit Best Practices

Basic Rules

Commit Related Changes

A commit should be a wrapper for related changes. For example, fixing two different bugs should produce two separate commits. Small commits make it easier for other developers to understand the changes and roll them back if something went wrong. With tools like the staging area and the ability to stage only parts of a file, Git makes it easy to create very granular commits.

Commit Often

Committing often keeps your commits small and, again, helps you commit only related changes. Moreover, it allows you to share your code more frequently with others. That way it‘s easier for everyone to integrate changes regularly and avoid having merge conflicts. Having large commits and sharing them infrequently, in contrast, makes it hard to solve conflicts.