"But don’t pity the dead. They have time on their mouldering hands, and all they do is think of ways to vex us. They watch we living go about our dirty business—lying and cheating; penis-pumping; pirating pop music—and smile, amused, cool, indifferent, they’re like high-functioning heroin addicts, or cats. You want to get their attention, … Continue reading The Dead’s Goat
Month: July 2021
bash: Cryptocurrency Prices From the Linux Terminal
#!/bin/bash printf -v coin '%s' -1 # crypto.sh bitcoin price() { # A function that pulls cryptocurrency price data from coingecko curl -X 'GET' 'https://api.coingecko.com/api/v3/simple/price?ids='"$1"'&vs_currencies=usd' \ -H 'accept: application/json' 2> /dev/null | # sends download data to /dev/null sed 's/.*usd"://' | # Removes everything before the price sed 's/..$//' | # Removes back two }} … Continue reading bash: Cryptocurrency Prices From the Linux Terminal
