diff --git a/api/recently-updated/README.md b/api/recently-updated/README.md new file mode 100644 index 0000000..f2b6c32 --- /dev/null +++ b/api/recently-updated/README.md @@ -0,0 +1,11 @@ +# Recently-Updated Page Shell Scripts + +As soon as [~ford](http://tilde.club/~ford) granted me entrance to tilde.Club, I knew that I wanted to keep tabs on what cool things folks were doing there. And thinking back to the mid-90s, what was the best way to know what was new on a site? A recently-updated page! So I set about making one for tilde.club. + +There's no question at all that this is a rudimentary hack, but it's the *exact* sort of hack that was The Way To Do Things on the mid-90s Internet. (Note that that's the mid-90s-capital-I-Internet, not the [21st-century-lowercase-i-internet](http://www.nytimes.com/2002/12/29/weekinreview/29SCHW.html).) And I'm using tried-and-true command-line Unix filesystem commands to grab, parse, and sort the list of pages, so I feel like I'm treading in the footsteps of thousands before me. The result is [the list of all tilde.club pages updated in the last 24 hours](http://tilde.club/~delfuego/tilde.24h.html), which is generated from the ```findmod.sh``` shell script once a minute from a crontab job. + +Of course, while the HTML version of the recently-updated list is firmly mid-90s (well, if you view source you'll see that it's 21st-century HTML5, but still), enabling cooler 21st-century functionality required making the same list available in a more easily-parsed format. Enter JSON, and the [API version of the recently-updated list](http://tilde.club/~delfuego/tilde.24h.json), generated by the ```findmod-json.sh``` shell script once a minute via crontab as well. + +Hope these are useful to someone! + +Jason Levine, aka [~delfuego](http://tilde.club/~delfuego) diff --git a/api/recently-updated/findmod-json.sh b/api/recently-updated/findmod-json.sh new file mode 100755 index 0000000..d047dc8 --- /dev/null +++ b/api/recently-updated/findmod-json.sh @@ -0,0 +1,2 @@ +#!/bin/bash +find /home/*/public_html -regex "/home/\_?[0-9a-zA-Z]*/public_html/index.html" -type f -name "index.html" -mtime 0 -printf '%T@ %p %TD %Tr %TY-%Tm-%TdT%TTZ\n' 2> /dev/null | sort -r | perl -CSD -pe 'BEGIN { print "{ \"pagelist\": [ \n"; }; END { print "] }\n"; }; if ($i > 0) { print ", "; }; s|([0-9\.]+) /home/([\p{L}\p{N}_]*?)/public_html/index.html (.*) (.*)|{ "username": "$2", "homepage": "http://tilde.club/~$2/", "modtime": "$4" }|; $i++' diff --git a/api/recently-updated/findmod.sh b/api/recently-updated/findmod.sh new file mode 100755 index 0000000..fa36756 --- /dev/null +++ b/api/recently-updated/findmod.sh @@ -0,0 +1,5 @@ +#!/bin/bash +cat /home/delfuego/bin/header.tpl +find /home/*/public_html -regex "/home/\_?[0-9a-zA-Z]*/public_html/index.html" -type f -name "index.html" -mtime 0 -printf '%T@ %p %TD %Tr %TY-%Tm-%TdT%TTZ\n' 2> /dev/null | sort -r | perl -CSD -pe 's|([0-9\.]+) /home/([\p{L}\p{N}_]*?)/public_html/index.html (.*) (.*)|
  • $2
  • |' +cat /home/delfuego/bin/footer.tpl + diff --git a/api/recently-updated/footer.tpl b/api/recently-updated/footer.tpl new file mode 100644 index 0000000..8fdf4c6 --- /dev/null +++ b/api/recently-updated/footer.tpl @@ -0,0 +1,4 @@ + + + + diff --git a/api/recently-updated/header.tpl b/api/recently-updated/header.tpl new file mode 100644 index 0000000..7dfc9b8 --- /dev/null +++ b/api/recently-updated/header.tpl @@ -0,0 +1,10 @@ + + + +tilde.24h + + +

    tilde.club home pages updated in last 24 hours

    +
    There's also a JSON version of this data; it's all updated once a minute, so hold yer damn horses, people. Also, times are in the server's time zone (GMT, it appears).
    +