This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on_hands_rub = 400000 | |
curs_dollara = 72 | |
on_hands_doll = on_hands_rub / (curs_dollara * 1.0) | |
tk_ip_koeff = 12.0 / 11.0 | |
print("HANDS rub: {:.1f}".format(on_hands_rub)) | |
print("HANDS doll: ${:.1f}".format(on_hands_doll)) | |
print("TK GROSS rub: {:.1f}".format(on_hands_rub / 0.87)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://stackoverflow.com/questions/23057988/file-size-exceeds-configured-limit-2560000-code-insight-features-not-availabl | |
# https://stackoverflow.com/questions/13578062/how-to-increase-ide-memory-limit-in-intellij-idea-on-mac/13581526#13581526 | |
# Help -> Edit custom properties... | |
# size in Kb | |
idea.max.intellisense.filesize=10000 | |
# size in Kb | |
idea.max.content.load.filesize=10000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
multiple select | |
- Alt+drag => long cursor | |
- Alt+Shift + mouse click => many cursors | |
- Ctrl+G => select next same words | |
- Ctrl+Shift+G unselect | |
- Select all occurrences: Shift + Ctrl + Alt + J (Ctrl + Cmd + G for Mac OS X) | |
- Ctrl+Shift+J => join multiple lines with cursors at begins, to one string | |
https://stackoverflow.com/questions/1262737/intellij-idea-way-of-editing-multiple-lines | |
https://www.vojtechruzicka.com/intellij-idea-tips-tricks-multiple-cursors/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias.s=status | |
alias.ss=status -uno | |
alias.fp=fetch --prune | |
alias.vv=branch -avv | |
alias.br=branch -vv | |
alias.k=log --all --oneline --graph --decorate | |
alias.hhh=log --all --graph --format="%C(yellow) %h %C(white) %ce %s %m %N %C(green) %d" | |
alias.co=checkout | |
alias.dc=diff --cached | |
alias.puff=pull --ff-only |