brew install --cask temurin
brew install graphviz
After that:
- open VS code, and then
- install plantuml markdown plugin and other plantuml plugin as needed
- search for
plantuml
- find
PlantUML: Command Args
- open it
alias ls="ls -la" | |
alias cd..="cd .." | |
alias cd...="cd ../.." | |
alias cd....="cd ../../.." | |
alias ..="cd .." | |
alias ...="cd ../.." | |
alias ....="cd ../../.." | |
export EDITOR=/usr/bin/vi |
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 |
#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, |
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" |
brew install --cask temurin
brew install graphviz
After that:
plantuml
PlantUML: Command Args