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
| Sub NormalizeSelectedCells() | |
| Dim rng As Range | |
| Dim cell As Range | |
| Dim multiple As Double | |
| Dim response As String | |
| Dim normalizedValue As Double | |
| Dim originalSign As Integer | |
| ' Проверяем, есть ли выделенные ячейки | |
| If Selection.Count = 0 Then |
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
| # Показать дисковое пространство Docker | |
| docker system df | |
| # 2. Удалить неиспользуемые контейнеры | |
| docker container prune | |
| # Удалить все неиспользуемые image | |
| docker image prune -a | |
| # Удалить все неиспользуемые volume |
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
| BasedOnStyle: Google | |
| Language: Cpp | |
| AccessModifierOffset: -2 | |
| AlignAfterOpenBracket: Align | |
| AlignConsecutiveAssignments: false | |
| AlignConsecutiveDeclarations: false | |
| AlignEscapedNewlines: Left | |
| AlignOperands: true | |
| AlignTrailingComments: true | |
| AllowAllParametersOfDeclarationOnNextLine: false |