Skip to content

Instantly share code, notes, and snippets.

@igricart
igricart / .clang-format.md
Last active April 19, 2021 11:07
Clang Format for C++

Clang Format

File to format code in C++

---
BasedOnStyle:  Google
AccessModifierOffset: -2
ConstructorInitializerIndentWidth: 2
AlignEscapedNewlinesLeft: false
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: false
@igricart
igricart / git.md
Last active September 15, 2021 09:17
Print git branch in terminal

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