start new:
tmux
start new with session name:
tmux new -s myname
https://www.gnu.org/licenses/gpl-3.0.en.html | |
GNU GENERAL PUBLIC LICENSE v3 |
git checkout master | |
git checkout -b temp | |
git rebase -i stable | |
# Time to select/remove/squash commits | |
git checkout stable | |
git pull . temp | |
git branch -d temp |
// Cálculo de combinação simples utilizando o triângulo de Pascal, onde: | |
// | |
// Relação de Stifel | |
// | |
// | n-1 | + | n-1 | = | n | | |
// | k-1 | | k | | k | | |
// | |
// Ex.: Quantidade de jogos da Mega Sena | |
// var quantity = SimpleCombination(60, 6); | |
// |