SKSinu Koshyinforward.hashnode.dev路Sep 3, 2021 路 1 min readGit log specific to a branchgit log --graph --abbrev-commit --decorate --oneline --first-parent development00
SKSinu Koshyinforward.hashnode.dev路Jun 17, 2021 路 1 min readHow do I delete a local branch in Git?$ git branch -d00
SKSinu Koshyinforward.hashnode.dev路Jun 17, 2021 路 1 min readRemove all local Git Changes.git clean --force -d -x git reset --hard00
SKSinu Koshyinforward.hashnode.dev路Jun 15, 2021 路 1 min readFind Closest MatchAlgorithm to find the closest match (Closest predefined screen dimension) // xs sm md lg xl var screenDims = [375, 540, 720, 960, 1140]; function getClosestScreenWidth(input) { return screenDims.reduce((a, b) => { return Math.abs(b - input) < Math....00
SKSinu Koshyinforward.hashnode.dev路Jun 13, 2021 路 1 min readDelete node_modules folder recursively from a specified path on MACfind . -name "node_modules" -exec rm -rf '{}' +00