Development

Development

Java

1
2
3
4
5
# build mvn without test
mvn clean install -DskipTests

# run jar specifying the class
java -cp myjar.jar com.mypackage.myClass

Python

1
2
3
# Setup conda
conda create --name system_design python=3.9
# List conda

Git

1
2
3
4
5
# add a new git branch and checkout
git checkout -b your-new-branch-name

# push to the new branch
git push origin <add-your-branch-name>