asdasd
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
| ~/t/error $ npm isntall -g babel-cli | |
| npm WARN optional dep failed, continuing fsevents@1.0.2 | |
| /home/travis/local/bin/babel -> /home/travis/local/lib/node_modules/babel-cli/bin/babel.js | |
| /home/travis/local/bin/babel-node -> /home/travis/local/lib/node_modules/babel-cli/bin/babel-node.js | |
| /home/travis/local/bin/babel-external-helpers -> /home/travis/local/lib/node_modules/babel-cli/bin/babel-external-helpers.js | |
| babel-cli@6.0.15 /home/travis/local/lib/node_modules/babel-cli | |
| ├── slash@1.0.0 | |
| ├── path-is-absolute@1.0.0 | |
| ├── path-exists@1.0.0 | |
| ├── fs-readdir-recursive@0.1.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
| var response; | |
| before(function (done) { | |
| server.inject(options, function (res) { | |
| response = res; | |
| done(); | |
| }); | |
| }); | |
| it('should fail with a descriptive error', function() { |
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
| /# Valid absolute URI having a non-empty, valid DNS host. | |
| ^ | |
| (?P<scheme>[A-Za-z][A-Za-z0-9+\-.]*):\/\/ | |
| (?P<authority> | |
| (?:(?P<userinfo>(?:[A-Za-z0-9\-._~!$&\'()*+,;=:]|%[0-9A-Fa-f]{2})*)@)? | |
| (?P<host> | |
| (?P<IP_literal> | |
| \[ | |
| (?: | |
| (?P<IPV6address> |
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
| "AAA" | |
| "BBB" | |
| "DDD" |
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
| libxcb-devel | |
| xcb-util-*-devel | |
| pango-devel | |
| yajl-devel | |
| lib-devel |
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
| console.log(process.version) |
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
| Hello World |
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
| #!/bin/sh | |
| SHORTCUT="[Desktop Entry] | |
| Name=Sublime Text 3 | |
| Comment=Edit text files | |
| Exec=/usr/local/sublime-text-3/sublime_text | |
| Icon=/usr/local/sublime-text-3/Icon/128x128/sublime_text.png | |
| Terminal=false | |
| Type=Application | |
| Encoding=UTF-8 | |
| Categories=Utility;TextEditor;" |
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
| 5c5 | |
| < if type -q $cmd | |
| --- | |
| > if type $cmd > /dev/null |