Zuihitsu: 2021-07

Collecting these little ideas has become a major focus. Here's this month's installment. The interior of our skulls contains a portal to infinity.—Grant MorrisonPersonal density is proportional to temporal bandwidth.—Thomas PynchonThose who do not want to imitate anything, produce nothing.—Salvador DaliRelationships come with no guarantees.The tears we cry moisturize the skin of life.Take the broken … Continue reading Zuihitsu: 2021-07

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