hugo-website/content/projects/ohthatsa.md
2021-04-20 20:25:51 +02:00

866 B

title = "OhThatsA App" date = 2021-01-11T20:45:36+01:00 draft = false image = "/img/ohthatsa/main.png"

title = "OhThatsA App" date = 2021-01-11T20:45:36+01:00 draft = false image = "/img/ohthatsa/main.png"

An app to help you learn how to calculate day of the week from any date.

Mostly made to try out Dart/Flutter, source can be found on my Gitea:
https://gitea.broodjeaap.net/broodjeaap/OhThatsA

App

Practice overview

practice_overview

An instruction page

year_instruction

'Month' practice in progress

month_practice

Method

The day of the week can be caculated by:
(day value + month value + year value + century value + leap year value) % 7

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.