Stuff for my corner of the omgloliverse
Find a file
2024-03-06 19:21:22 -06:00
.github/workflows silence curl output 2024-02-10 17:14:30 -06:00
assets update readme 2024-02-08 22:46:03 -06:00
.gitignore update gitignore 2024-03-06 19:21:22 -06:00
LICENSE update license 2024-02-09 08:49:48 -06:00
README.md add link to blog post 2024-02-12 15:13:50 -06:00
tempest.html fix typo in partly cloudy icon name 2024-02-23 15:55:21 -06:00

John's lolz

This repo holds miscellaneous stuff I cobbled together for use with my omg.lol profile and associated services.

(Near) Realtime Weather on profile.lol

I recently saw Kris's omg.lol profile page with integrated live local weather conditions, and I thought that was exceptionally neat. I immediately wanted to do the same with data from my Weatherflow Tempest weather station, but wasn't sure how I could do that without putting my API token in the browser. So I promptly abandoned the idea and moved on to other things.

I later realized that I could use another system to grab data from the authenticated API, and post that somewhere world-readable for the profile page to retrieve it.

So I cobbled together a sort of API proxy: a simple GitHub Actions workflow that runs every ~5 minutes. It uses secrets stored securely in my GitHub repo to fetch the weather data from the Weatherflow Tempest API, filters for just the current conditions data (not the giant mess of future-forecast details), and posts that to my paste.lol pastebin.

I could then use JavaScript to retrieve the weather details from the pastebin. I cobbled together a quick local HTML page for testing as I worked through how to get the data displayed and formatted correctly.

Plain, unstyled weather test page

Once I got the scripting sorted out, I was able to easily transfer the script block and relevant spans to my omg.lol profile page - where I think it looks quite dope, if I do say so myself.

Groovy styled weather displayed on my profile page

Big thanks to Kris for the inspiration and examples I needed to get this working.

Full details on how this works are available over on runtimeterror.dev.