File to format code in C++
---
BasedOnStyle: Google
AccessModifierOffset: -2
ConstructorInitializerIndentWidth: 2
AlignEscapedNewlinesLeft: false
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: false
Paste the following code in your .bashrc
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\] $(parse_git_branch)\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
import numpy as np | |
def investment_value(principal, rate, time, n, dividends, reinvest_dividends, brokerage_fee, investment_fee): | |
if reinvest_dividends: | |
# Calculate dividend reinvestment | |
for t in range(time): | |
# Calculate interest with compound | |
principal = principal * (1 + rate / n) ** n | |
# Calculate and reinvest dividends |