A list of useful commands for the rclone command line tool.
Full documentation: https://rclone.org
Installation using the official script: See https://rclone.org/install/.
A list of useful commands for the rclone command line tool.
Full documentation: https://rclone.org
Installation using the official script: See https://rclone.org/install/.
| javascript:location.hostname = location.hostname.replace('boe.es','superboe.es'); |
| base \ exponent | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
|---|---|---|---|---|---|---|---|---|---|
| 1,01 | 1,02 | 1,03 | 1,04 | 1,05 | 1,06 | 1,07 | 1,08 | 1,09 | 1,10 |
| 1,02 | 1,04 | 1,06 | 1,08 | 1,10 | 1,13 | 1,15 | 1,17 | 1,20 | 1,22 |
| 1,03 | 1,06 | 1,09 | 1,13 | 1,16 | 1,19 | 1,23 | 1,27 | 1,30 | 1,34 |
| 1,04 | 1,08 | 1,12 | 1,17 | 1,22 | 1,27 | 1,32 | 1,37 | 1,42 | 1,48 |
| 1,05 | 1,10 | 1,16 | 1,22 | 1,28 | 1,34 | 1,41 | 1,48 | 1,55 | 1,63 |
| 1,06 | 1,12 | 1,19 | 1,26 | 1,34 | 1,42 | 1,50 | 1,59 | 1,69 | 1,79 |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| def main(): | |
| print('Hello world!') | |
| if __name__ == '__main__': | |
| main() |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| #!/bin/zsh | |
| if (( !($# == 3) )) | |
| then | |
| echo "Usage:" | |
| echo $0 "<ffmpeg preset> <output file base name> <seconds per day>" | |
| exit 1 | |
| fi | |
| """ |
https://conda.io/docs/index.html
conda create --name my_environment python=3
activate my_environment
| ### | |
| # numpy | |
| ### | |
| # convert variable to other data type | |
| x.astype(np.float32) |