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
| Short description of commit | |
| Longer explanation of the motivation for the change | |
| Fixes-Bug: Enter bug-id or delete line | |
| Implements-Requirement: Enter requirement-id or delete line |
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 python | |
| # add-issue-id-hook version 1.1.0 | |
| # | |
| # Created by Joaquin Briceno | |
| # https://github.com/pbetkier/add-issue-id-hook | |
| # customize the final commit message using placeholders: | |
| # - {issue_id} replaced with discovered issue id | |
| # - {user_message} replaced with message provided by the user |
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
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
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
| const util = require('util') | |
| module.exports = { | |
| Reset: "\x1b[0m", | |
| Bright: "\x1b[1m", | |
| Dim: "\x1b[2m", | |
| Underscore: "\x1b[4m", | |
| Blink: "\x1b[5m", | |
| Reverse: "\x1b[7m", | |
| Hidden: "\x1b[8m", |
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
| var _ = require("underscore"); | |
| var nestedArray = [[1,2,[3]],4]; | |
| var flattenArray = _.flatten(nestedArray); | |
| console.log(flattenArray); | |
| // => [1, 2, 3, 4] |
NewerOlder