aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authormartin@ashbysoft.com <martin@ashbysoft.com>2022-02-23 13:56:12 +0000
committermartin@ashbysoft.com <martin@ashbysoft.com>2022-02-23 13:56:12 +0000
commit9f89dab4f89d59e27cacde43ec23b97a3ff8b3d4 (patch)
tree6cd8048b2f729248c6bc35763d2a9b0327fccf72 /content
parentec241cdefc9b4a8db3f59a4c13d0b720ada6c6aa (diff)
downloadmfashby.net-9f89dab4f89d59e27cacde43ec23b97a3ff8b3d4.tar.gz
mfashby.net-9f89dab4f89d59e27cacde43ec23b97a3ff8b3d4.tar.bz2
mfashby.net-9f89dab4f89d59e27cacde43ec23b97a3ff8b3d4.tar.xz
mfashby.net-9f89dab4f89d59e27cacde43ec23b97a3ff8b3d4.zip
Wordle
Diffstat (limited to 'content')
-rw-r--r--content/posts/2022-02-23-wordle.md16
1 files changed, 16 insertions, 0 deletions
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.
+