This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
main() { | |
local -ri mar_end=1583042400 | |
local -ri today="$(date +"%s")" | |
local -r dow="$(date -u +"%a")" | |
local -r time="$(date -u +"%T")" | |
local -ri secs=86400 | |
local -ri days_since="$(( ((${today} - ${mar_end}) / ${secs}) + 1 ))" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# make sure you put this in the root of the generate site build, not just in the root of your netlify repository! | |
/.well-known/webfinger* https://APPNAME.deno.dev/:splat 200 |