Search Results
7/20/2025, 12:00:45 AM
>>105960808
>Side question on small code and scripting: from the basis of bash, what would be serve me as a starting point to get my feet wet with similar things to what you're talking about?
I have an insane passion for uWSGI servers built around flask
For safety use this in prod as the server:
https://github.com/unbit/uwsgi
For your service you can use these:
https://flask.palletsprojects.com/en/stable/
https://werkzeug.palletsprojects.com/en/stable/
You can write templates for "static" webpages your server can generate dynamically on the spot. Only the template is really static:
https://python-adv-web-apps.readthedocs.io/en/latest/flask3.html
So you could code a website with an image gallery or anything really like a cool dashboard for a weather station with some ESP MCU that sends data to your server and you display it like
{% for sensor_value in weather_station() %}
<div class="temperatures">{{ sensor_value }}</div>
{% endfor %}
Very pseudo-code example. But it's cool if you can just access a weather API instead and then represent changing data dynamically you need.
https://www.youtube.com/watch?v=JCD7YdOSsWI
found some white dude after 2 SAARs
>Side question on small code and scripting: from the basis of bash, what would be serve me as a starting point to get my feet wet with similar things to what you're talking about?
I have an insane passion for uWSGI servers built around flask
For safety use this in prod as the server:
https://github.com/unbit/uwsgi
For your service you can use these:
https://flask.palletsprojects.com/en/stable/
https://werkzeug.palletsprojects.com/en/stable/
You can write templates for "static" webpages your server can generate dynamically on the spot. Only the template is really static:
https://python-adv-web-apps.readthedocs.io/en/latest/flask3.html
So you could code a website with an image gallery or anything really like a cool dashboard for a weather station with some ESP MCU that sends data to your server and you display it like
{% for sensor_value in weather_station() %}
<div class="temperatures">{{ sensor_value }}</div>
{% endfor %}
Very pseudo-code example. But it's cool if you can just access a weather API instead and then represent changing data dynamically you need.
https://www.youtube.com/watch?v=JCD7YdOSsWI
found some white dude after 2 SAARs
Page 1