# master
k3s-node-fra1-01 pub_net: eth0:164.92.228.17 priv_net: eth1:10.114.0.97
# workers
k3s-node-fra1-02 pub_net: eth0:142.93.162.154 priv_net: eth1:10.114.0.94
k3s-node-fra1-03 pub_net: eth0:165.22.19.3 priv_net: eth1:10.114.0.95
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
| want = float(input("Яку суму ви хочете отримати? ")) | |
| have = float(input("Яку суму ви маєте? ")) | |
| suma = have | |
| year = 0 | |
| while suma <= want: | |
| suma = suma + 0.25 * suma | |
| year = year + 1 | |
| print(f'на {year} рік ви отримаєте {suma} гривень') | |
| print(f'вам потрібно покласти кошти на депозит на {year} років') |
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
| #!/usr/bin/env bash | |
| ########## | |
| # | |
| # If you have to convert a single table: set variable DB_TABLE=tablename | |
| # If commenting DB_TABLE, this is a script to convert all tables in the database | |
| # | |
| ########## | |
| DB_DATABASE=dbname |