-
Install Ruby with
openssl
1.0brew switch openssl 1.0.2s export PATH="/usr/local/opt/[email protected]/bin:$PATH" export LDFLAGS="-L/usr/local/opt/[email protected]/lib ${LDFLAGS}" export CPPFLAGS="-I/usr/local/opt/[email protected]/include ${CPPFLAGS}" RUBY_CONFIGURE_OPTS=--with-openssl-dir=/usr/local/Cellar/openssl/1.0.2s/ rbenv install 2.3.0
-
Fix and use
libxml2
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 | |
set -euo pipefail | |
set -x | |
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
cd "${ROOT_DIR}" | |
SOURCE_CONFIG_URL="https://raw.githubusercontent.com/airbytehq/airbyte/master/airbyte-integrations/connectors/source-file/integration_tests/config.json" | |
SOURCE_IMAGE_NAME="airbyte/source-file" |
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
interface Base { | |
base1: string; | |
base2: string; | |
a: string; | |
} | |
interface Interface1 extends Base { | |
b: number; | |
} |
# show
defaults write com.apple.dock desktop-picture-show-debug-text -bool TRUE && killall Dock
# hide
defaults write com.apple.dock desktop-picture-show-debug-text -bool FALSE && killall Dock
OlderNewer