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
| #!/usr/bin/env bash | |
| # Generates monthly Git reports | |
| # Usage: `sh git-report.sh [ample]` | |
| author=$(git config user.name) | |
| ample=$(expr "$1" == 'ample') | |
| date=$(date +%Y-%m-%d) | |
| foretime=$(date +%Y-%m-01) | |
| fullpath="$PWD" | |
| target=reports/report-${date} |
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
| net: | |
| ipv6: true | |
| storage: | |
| dbPath: "C:/MongoDB/data" | |
| directoryPerDB: true | |
| journal: | |
| enabled: true | |
| wiredTiger: | |
| engineConfig: | |
| cacheSizeGB: 2 |
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
| /*! | |
| * @media (min-width: 1200px) { | |
| * body:after { | |
| * content: 'widescreen'; | |
| * display: none; | |
| * } | |
| * } | |
| */ | |
| export default () => window.getComputedStyle(document.body, ':after').getPropertyValue('content'); |
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
| (function() {'use strict'; | |
| /** | |
| * Handlebars addition helper. | |
| * | |
| * Usage: | |
| * {{addition 10 to="10"}} | |
| * {{addition key to="20"}} | |
| * {{addition key to="-5"}} | |
| */ | |
| Handlebars.registerHelper('addition', function(context, options) { |
NewerOlder