This file contains hidden or 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
| # Find top 30 the most wanted files sorted by commit count | |
| git log --name-only --pretty=format: src | sort | uniq -c | sort -nr | head -n 30 | |
| # Find top 10 the largest '*.js' files sorted by size | |
| find . -name '*.js' -type f -ls | sort -k7 -r | head -n 20 | |
| # count lines of code, without directory 'migrations' | |
| find . -name migrations -prune -o -name '*.ts' | xargs wc -l |
This file contains hidden or 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
| /* | |
| * IIFE | |
| * https://en.wikipedia.org/wiki/Immediately-invoked_function_expression | |
| */ | |
| (function() { | |
| })(); | |
| /* | |
| * Comparison operators | |
| * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators |