bash: Last Day, The People Who Lived As Many Days as You

Definitions bash: This is the command line, where you can run relatively simple scripted programs, available on all three major computing platforms.SPARQL: On the Internet, there are repositories of information. Some of these repositories are in a format called RDF, or Resource Description Framework. Users of these repositories typically need a subset of the information … Continue reading bash: Last Day, The People Who Lived As Many Days as You

Mutt: Viewing Attachments / HTML via .mailcap and a Custom Fortune as a Signature in Mutt

It's funny how small, trivial things can lead you to make radical changes in the tools you use. As regular readers of this blog know, I collect sayings that I publish every month. I then compile these sayings into a custom fortune file that displays one saying every time I login to my computer or … Continue reading Mutt: Viewing Attachments / HTML via .mailcap and a Custom Fortune as a Signature in Mutt

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