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
PATH=$PATH:/opt/homebrew/Cellar/pyenv/2.3.30/bin | |
export PATH | |
JAVA_HOME=/opt/homebrew/Cellar/openjdk@17/17.0.8.1 | |
export JAVA_HOME | |
# Get python from pyenv | |
export PYENV_ROOT="$HOME/.pyenv" | |
export PATH="$PYENV_ROOT/bin:$PATH" |
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
#include <optional> | |
#include <string> | |
#include <type_traits> | |
/** | |
@tparam T must be an Enum type. | |
@tparam C converter must have `toString` and `fromString` static methods | |
*/ | |
template<typename T, | |
typename C, |
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
defaults write com.apple.dt.xcodebuild IDEBuildOperationMaxNumberOfConcurrentCompileTasks 6 | |
defaults write com.apple.dt.xcodebuild PBXNumberOfParallelBuildSubtasks 6 | |
defaults write com.apple.dt.Xcode PBXNumberOfParallelBuildSubtasks 6 | |
defaults write com.apple.dt.Xcode IDEBuildOperationMaxNumberOfConcurrentCompileTasks 6 |
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
alias ls="ls -la" | |
alias cd..="cd .." | |
alias cd...="cd ../.." | |
alias cd....="cd ../../.." | |
alias ..="cd .." | |
alias ...="cd ../.." | |
alias ....="cd ../../.." | |
export EDITOR=/usr/bin/vi |