harpers
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v20View latest version
An interesting Harper's message of the day when I open a shell.
crontab to grab updates on the first of the month
10 0 1 * * curl -s https://visnup-harpers.web.val.run > $HOME/.motd
~/.config/fish/functions/fish_greeting.fish to pick a random line on new fish shell; other shell support left to the reader
function fish_greeting set line (random 1 (cat ~/.motd | wc -l)) awk "NR==$line" ~/.motd | fold -s -w (tput cols) end