• 0 Posts
  • 5 Comments
Joined 2 months ago
cake
Cake day: April 28th, 2026

help-circle
  • The first book is structured differently than the rest of the series as it grew out of a movie script, but neither it nor the rest are particularly difficult to read. There are a ton of characters and a lot of plot threads moving around at the same time, but the transitions between them are handled pretty well and don’t make it terrible to keep things straight imo




  • Okay, I see what you’re going for and from another comment that you want to avoid the built-in weather app that dashboard has. I agree that the iframe should work for what you want.

    In this case I would make a webpage you can host locally, ignoring the dashboard aspect for a moment, and have it format the data how you want it to show up. If you want to use this as an excuse to tinker with Python and learn a new project I would probably follow the tutorial for Flask on setting up a simple webapp. I imagine by the end of it you could use the example project and tweak it somewhat painlessly to render what you want. Since you already have the ability to get the weather JSON you’ll just need to link the two up.

    Anyway, once you have the page working properly you’ll have something to put in the iframe.


  • I spent some time writing a script first in Python and then in ExcelScript at work to pull data from from OpenWeather API to compare ambient temperature and humidity to some of our indoor spaces. Both Python and JS (which ExcelScript is, basically) will make it very easy to pull the JSON from the API and pass whatever data you want down the line.

    I don’t have any experience with dashboards or your setup in particular so I can’t give any good advice about how to go forward though. If you have a pre-existing dashboard, what makes it and what feeds it data? Is it a webpage or an app or such?