Export Proxyman certificate:
security find-certificate -a -c Proxyman -p >cert.pem
Inspect livecheck network traffic:
HOMEBREW_NO_ENV_FILTERING=1 SSL_CERT_FILE=cert.pem https_proxy=http://localhost:9090 brew livecheck --debug
Export Proxyman certificate:
security find-certificate -a -c Proxyman -p >cert.pem
Inspect livecheck network traffic:
HOMEBREW_NO_ENV_FILTERING=1 SSL_CERT_FILE=cert.pem https_proxy=http://localhost:9090 brew livecheck --debug
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * @license | |
| Copyright (c) 2016-2018 by CyberSource flex-sdk-web v0.2.1 | (c) CyberSource 2017 */ | |
| 'use strict'; | |
| !function(root, factory) { | |
| if ("object" == typeof exports && "object" == typeof module) { | |
| module.exports = factory(); | |
| } else { | |
| if ("function" == typeof define && define.amd) { | |
| define([], factory); |
| /** | |
| * @license | |
| Copyright (c) 2016-2018 by CyberSource */ | |
| 'use strict'; | |
| !function(root, factory) { | |
| if ("object" == typeof exports && "object" == typeof module) { | |
| module.exports = factory(); | |
| } else { | |
| if ("function" == typeof define && define.amd) { | |
| define([], factory); |
| config = reduce(argv, (acc, val, key) => { | |
| if (key === '_') return acc; | |
| return Object.assign(acc, { [key]: val }); | |
| }, config); | |
| function reduce(obj, callback, initalValue) { | |
| return Object.keys(obj).reduce((acc, key) => { | |
| return callback(acc, obj[key], key); | |
| }, initalValue); | |
| } |
| 'use strict'; | |
| const minidom = require('minidom'); | |
| const r = require('got'); | |
| const urlJoin = require('url-join'); | |
| const API_URL = 'https://haiku.ist/wp-json/wp/v2/'; | |
| module.exports = { | |
| count, |
| <!doctype html> | |
| <title>RollUp Visualizer</title> | |
| <meta charset="utf-8"> | |
| <style>html { | |
| background-color: #f7eedf; | |
| color: #333; | |
| } | |
| body { | |
| font-family: sans-serif; |
| (function() { | |
| var script = document.createElement('script'); | |
| script.src = '//unpkg.com/[email protected]/dist/index-umd.js'; | |
| document.body.appendChild(script); | |
| function logError(error) { | |
| error.element.style.outline = '5px solid red'; | |
| error.element.addEventListener('click', function (e) { | |
| alert([error.name, error.message].join('\n')); | |
| e.stopPropagation(); |
| alias duckiesay="curl -sSL https://duckiesays.com/api/v1/says | jq -r .says | cowsay -f duck" | |
| alias duckiesay="curl -sSL https://duckiesays.com/api/v1/says | json .says | cowsay -f duck" |
| get_project_file() { | |
| local files | |
| files=( *.sublime-project ) | |
| echo "${files[0]}" | |
| } | |
| run_sublime() { | |
| local project_file | |
| local sublime_cmd |