From 70ef5c5060feab6396adf580a4f649c0b8d60d40 Mon Sep 17 00:00:00 2001 From: BroodjeAap Date: Sat, 21 Jun 2025 17:09:28 +0200 Subject: [PATCH] fix readme --- README.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6858e30..678ab8e 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,18 @@ -# ohthatsa +# OhThatsA [![Build Status](https://drone.broodjeaap.net/api/badges/broodjeaap/OhThatsA/status.svg)](https://drone.broodjeaap.net/broodjeaap/OhThatsA) An app to help you learn how to calculate day of the week from any date. -## Getting Started +## App +main +year_instruction +month_practice -This project is a starting point for a Flutter application. +Mostly made to try out Dart/Flutter. -A few resources to get you started if this is your first Flutter project: +## Method -- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) -- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) +The day of the week can be calculated by: +`(day value + month value + year value + century value + leap year value) % 7` -For help getting started with Flutter development, view the -[online documentation](https://docs.flutter.dev/), which offers tutorials, -samples, guidance on mobile development, and a full API reference. +Every one of these value comes from a set of constants or is calculable from the date. +This app helps you practice memorizing and calculating these values. \ No newline at end of file