Join Nostr
2024-10-13 21:04:56 UTC

Jochie 👨🏻‍💻🏳️‍🌈 on Nostr: There's a local “classic rock” station KFOX, usually on during a commute. I ...

There's a local “classic rock” station KFOX, usually on during a commute. I wondered how repetitive it actually was and (ab)used their "Now Playing" website widget to track songs/ads/promos.

- Backend data is a JSON blob (1st pic)
- Add a small shell script (2nd pic), run for 2 weeks
- Top songs in the 3rd pic
- Unique ones over 2 wk:

$ jq -c 'select(.type=="Song")|[.desc,.title]' .history|sort|uniq -c|wc -l
372

- Length of the tracks (see 4th image): 27h!

#radio #jq #shell #bash #scripting