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
| export HOMEBREW_CASK_OPTS="--appdir=~/Applications" | |
| ### Next few lines from brew shellenv | |
| export HOMEBREW_PREFIX="/opt/homebrew"; | |
| export HOMEBREW_CELLAR="/opt/homebrew/Cellar"; | |
| export HOMEBREW_REPOSITORY="/opt/homebrew"; | |
| fpath[1,0]="/opt/homebrew/share/zsh/site-functions"; | |
| PATH="/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"; export PATH; | |
| [ -z "${MANPATH-}" ] || export MANPATH=":${MANPATH#:}"; |
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 zsh | |
| declare -A FILES_PATTERN | |
| declare -A FORBIDDEN | |
| declare -A SYNTAX_CHECKER | |
| declare -A SYNTAX_CHECKER_OPTIONS | |
| # CONFIGURATION | |
| FILES_PATTERN[RUBY]='\.(rb|html.erb|haml|coffee)(\..+)?$' |
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
| import os | |
| import argparse | |
| import yaml | |
| import gensim.downloader | |
| import fastText | |
| import numpy as np | |
| class Answerer(object): |