Revert restructuring the learning go titles
All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 2m7s

This commit is contained in:
Lewis Dale 2024-05-01 10:01:13 +01:00
parent 6d00200171
commit b29dca1648
5 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
--- ---
title: "Learning Go Day Two: Code organisation" title: "Learning Go: Day Two"
date: 2024-05-02T08:00:00.0Z date: 2024-05-02T08:00:00.0Z
tags: tags:
- learning - learning

View File

@ -1,5 +1,5 @@
--- ---
title: "Learning Go Day Three: Controls" title: "Learning Go: Day Three"
date: 2024-05-03T08:00:00.0Z date: 2024-05-03T08:00:00.0Z
tags: tags:
- learning - learning

View File

@ -1,5 +1,5 @@
--- ---
title: "Learning Go Day Four: Data structures" title: "Learning Go: Day Four"
date: 2024-05-04T08:00:00.0Z date: 2024-05-04T08:00:00.0Z
tags: tags:
- learning - learning

View File

@ -1,5 +1,5 @@
--- ---
title: "Learning Go Day Five: Tests" title: "Learning Go: Day Five"
date: 2024-05-05T08:00:00.0Z date: 2024-05-05T08:00:00.0Z
tags: tags:
- learning - learning

View File

@ -1,5 +1,5 @@
--- ---
title: "Learning Go Day Six: Picking a project" title: "Learning Go: Day Six"
date: 2024-05-06T08:00:00.0Z date: 2024-05-06T08:00:00.0Z
tags: tags:
- learning - learning
@ -15,9 +15,9 @@ I'm going to make a simple uptime dashboard for my blog, in the same vein as [br
* Give some up/downtime statistics * Give some up/downtime statistics
* Display the current status, especially if things are broken * Display the current status, especially if things are broken
Which means I'm going to need to: Which means it's going to need to:
* Create a web server * Run a web server
* Render web pages with some dynamic content * Render web pages with some dynamic content
* Store & read data from/to a database * Store & read data from/to a database
* Send requets to a server & handle the responses * Send requets to a server & handle the responses