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
| extension URLRequest { | |
| /// Internal helper function to escape double quotes | |
| func curlEscapeQuotes(in string: String) -> String { | |
| return string.replacingOccurrences(of: "\"", with: "\\\"") | |
| } | |
| /// Curl Command string | |
| var curlCommand: String { | |
| guard let url = url else { | |
| return "# No URL found" |
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
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // choose either `'stable'` for receiving highly polished, | |
| // or `'canary'` for less polished but more frequent updates | |
| updateChannel: 'stable', |
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
| set -x LANGUAGE en_US.UTF-8 | |
| set -x LANG en_US.UTF-8 | |
| set -x LC_ALL en_US.UTF-8 | |
| set -x LESSCHARSET utf-8 | |
| # Dark terminal | |
| set -Ux LSCOLORS gxfxbEaEBxxEhEhBaDaCaD | |
| # Java Stuff | |
| set -x JAVA_HOME (/usr/libexec/java_home -v 1.8) |
OlderNewer