https://api.github.com/gists/04e8c9dbaa4969401daeb528a602e048
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add the followings in the vscode settings.json | |
// Credit: James King | |
"explorer.fileNesting.patterns":{ | |
"*.ts": "${capture}.test.ts", | |
"*.go": "${capture}_test.go", | |
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts, ${capture}.test.js", | |
"*.jsx": "${capture}.test.jsx", | |
"*.tsx": "${capture}.test.tsx", | |
"tsconfig.json": "tsconfig.*.json", |
Alias | Command |
---|---|
gaa | git add --all |
gcmsg | git commit -m |
ggp | git push origin $(current_branch) |
gcm | git checkout $(git_main_branch) |
grhh | git reset --hard |
gcb | git checkout -b |
gsta | git stash push |
gstd | git stash drop |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
- Follow standard conventions.
- Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
- Boy scout rule. Leave the campground cleaner than you found it.
- Always find root cause. Always look for the root cause of a problem.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// filtering alphanumeric with isLetterOrDigit | |
// convert a char to lower with toLower | |
val string: String = "A man, a plan, a canal: Panama" | |
string.toCharArray.filter(_.isLetterOrDigit).map(_.toLower) | |
// convert a string to lower case | |
string.toLowerCase() | |
// ========================================================================= // | |
// partial function demo with chaining // |
NewerOlder