First, I fetched all of the Argo data up through 2021 via ftp:
wget -r ftp://ftp.ifremer.fr/ifremer/argo
# wait a long time
tree ftp.ifremer.fr
└── ifremer
└── argoFirst, I fetched all of the Argo data up through 2021 via ftp:
wget -r ftp://ftp.ifremer.fr/ifremer/argo
# wait a long time
tree ftp.ifremer.fr
└── ifremer
└── argo| #!/bin/bash | |
| # | pbcopy; pbpaste are mac-only commands; delete to simply print to the shell. | |
| # Use: getbib $DOI where $DOI is something like 10.xxx/xxxxxx | |
| getbib(){ | |
| curl -LH "Accept:text/bibliography; style=bibtex" http://dx.doi.org/$1 2>/dev/null | cut -c 2- | pbcopy ; pbpaste | |
| } |
| #include <iostream> | |
| #include <utility> | |
| #include <typeinfo> | |
| #include <type_traits> | |
| #include <string> | |
| template <size_t arg1, size_t ... others> | |
| struct static_max; | |
| template <size_t arg> |