From 9f89dab4f89d59e27cacde43ec23b97a3ff8b3d4 Mon Sep 17 00:00:00 2001 From: "martin@ashbysoft.com" Date: Wed, 23 Feb 2022 13:56:12 +0000 Subject: Wordle --- content/posts/2022-02-23-wordle.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 content/posts/2022-02-23-wordle.md diff --git a/content/posts/2022-02-23-wordle.md b/content/posts/2022-02-23-wordle.md new file mode 100644 index 0000000..fb225d9 --- /dev/null +++ b/content/posts/2022-02-23-wordle.md @@ -0,0 +1,16 @@ +--- +title: "Wordle" +date: 2022-02-23T13:41:22Z +draft: false +--- + +I really enjoyed playing [wordle](https://www.powerlanguage.co.uk/wordle/) recently, and I really appreciated how simple and fun the game is. I enjoyed comparing my scores with my friends and family; it's also fun to see people learning new words! + +From a technical point of view, wordle is also a really neat and simple game. Everything is client-side, there's no server component, so it can be played offline. Even the sharing feature, unicode squares to show how accurate your guesses were without reavealing the word, is so simple and yet so effective. + +The only thing I missed was a leaderboard to see who has that competitive edge :) + +So I [wrote my own](https://wordle.mfashby.net) and I also chose to [write it C](https://github.com/MFAshby/mordle)(and HTML, SQL, and a tiny bit of javascript), to see how different it would be to my usual choices (java or golang). + +Overall I'm pleased with the result; it uses very little resource and it wasn't as difficult as I had imagined to use a 'lower level' language like C, although there is a fairly significant amount of code for such a simple game, and it's nowhere near as polished an experience as the original. + -- cgit v1.2.3-ZIG