https://vscode.dev/[githubRepoPath] Example: https://vscode.dev/github/microsoft/vscode
Reference: http://www.youtube.com/watch?v=ehedAfyb-9Y
https://gist.github.com/addyosmani/fd3999ea7fce242756b1 You can do it natively in Chrome Developer Tools > Rendering
Why you need it? A feature is broken, but was working fine before. There has been a long history of commits and you need to find which commit introduced the bug. Start git bisect start KNOWN_BAD_COMMIT KNOWN_GOOD_COMMIT~ Issue still exists? Yes: $ gi...
~: will update you to all future patch versions, without incrementing the minor version. ~1.2.3 will use releases from 1.2.3 to <1.3.0. ^: will update you to all future minor/patch versions, without incrementing the major version. ^2.3.4 will use rel...
So I was solving this problem called String incrementer the other day: https://www.codewars.com/kata/54a91a4883a7de5d7800009c The idea is simple: use Regex capturing group to separate the words & the number apart and modify the number. However, codew...