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
| /** | |
| * Calculates the AMZ Warehouse fees | |
| * | |
| * @param {number} TotalAmount The total amount you plan to send to the warehouse | |
| * @param {number} SellsPerDay The amout you sell per day. | |
| * @param {number} PackageSize The size of the package in m³ | |
| * @param {number} AMZFee The AMZ warehouse fee (normal fee: 26€). | |
| * @return the total cost for storing the supplied amount until it | |
| * @customfunction | |
| */ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| sudo apt install golang | |
| mkdir ~/gopath | |
| echo export GOPATH=\$HOME/gopath >> ~/.bashrc | |
| echo export PATH=\$GOPATH:\$GOPATH/bin:\$PATH >> ~/.bashrc | |
| source ~/.bashrc | |
| go get -u -v github.com/odeke-em/drive/cmd/drive | |
| mkdir ~/gdrive | |
| drive init ~/gdrive |
OlderNewer