This is a follow-up on my post, The Maximum Human Life Span and Conjecture on Step Counts to Get There (15,000 Steps a Day). According to this research: "By analyzing data on tens of thousands of people across four continents compiled between 15 existing studies, a team of researchers has now landed on a more … Continue reading [Minimum] Steps to Get There
Category: articles
bash: Getting a Cryptocurrency Price From Console Using Ergopad
#!/bin/bash printf -v coin '%s' -1 # ergopad.sh sigrsv price() { # A function that pulls cryptocurrency price data from ergopad # and formats it into a multi-currency banner for the console curl -X 'GET' 'https://ergopad.io/api/asset/price/'"$1"'' \ -H 'accept: application/json' 2> /dev/null | # sends download data to /dev/null sed 's/.*://' | # Removes everything … Continue reading bash: Getting a Cryptocurrency Price From Console Using Ergopad
