9 Matching Annotations
- Mar 2024
-
antonz.org antonz.org
-
By default, curl uses HTTP/1.1 for the http scheme and HTTP/2 for https. You can change this with flags
-
-
www.rust-lang.org www.rust-lang.org
-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Tags
Annotators
URL
-
- Oct 2023
-
gist.github.com gist.github.com
-
console curl -G https://wdqs-beta.wmflabs.org/bigdata/namespace/wdq/sparql --data-urlencode query=' select distinct ?type where { ?thing a ?type } limit
Tags
Annotators
URL
-
- Dec 2022
-
reqbin.com reqbin.com
-
HTTP header examples with Curl
Tags
Annotators
URL
-
- Sep 2021
-
dgraph.io dgraph.io
Tags
Annotators
URL
-
- Jul 2021
-
speedtestdemon.com speedtestdemon.com
-
Get the `curl-format.txt` from github and then run this curl command in order to get the output $ curl -L -w "@curl-format.txt" -o tmp -s $YOUR_URL
Testing server latency with curl:
1) Get this file from GitHub
2) Run the curl:
curl -L -w "@curl-format.txt" -o tmp -s $YOUR_URL
-
- Jun 2021
-
smallstep.com smallstep.com
-
The alternative for curl is a credential file: A .netrc file can be used to store credentials for servers you need to connect to.And for mysql, you can create option files: a .my.cnf or an obfuscated .mylogin.cnf will be read on startup and can contain your passwords.
- .netrc <--- alternative for curl to store secrets
- .my.cnf or .mylogin.cnf <--- option files for mysql to store secrets
Tags
Annotators
URL
-
- Dec 2020
-
github.com github.com
-
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Tags
Annotators
URL
-
- Sep 2019
-
-
curl -s -o /dev/null -w '%{time_starttransfer}\n' "$@"
-