diff --git a/src/blog/posts/2024/5/learning-go-day-6.md b/src/blog/posts/2024/5/learning-go-day-6.md index ea82429..f0a94d4 100644 --- a/src/blog/posts/2024/5/learning-go-day-6.md +++ b/src/blog/posts/2024/5/learning-go-day-6.md @@ -15,7 +15,16 @@ I'm going to make a simple uptime dashboard for my blog, in the same vein as [br * Give some up/downtime statistics * Display the current status, especially if things are broken -And that's more-or-less it. If I get done early, I might stretch it out to do more analytics, so counting visitors, referers etc. That's a stretch though, because I'd want to do it in a way that's privacy respecting and fully anonymous. +Which means I'm going to need to: + +* Create a web server +* Render web pages with some dynamic content +* Store & read data from/to a database +* Send requets to a server & handle the responses +* Do all of the above on a periodic schedule +* Not suck + +That last one is optional. The repository for this project will be on my personal Git server, and I'll update this post with the repo URL once it's been created.