diff --git a/README.md b/README.md index 43b428f..a651641 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,18 @@ # 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. \ No newline at end of file +An app to help you learn how to calculate day of the week from any date. + +## App +main +year_instruction +month_practice + +Mostly made to try out Dart/Flutter. + +## 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. \ No newline at end of file diff --git a/media/img/main.png b/media/img/main.png new file mode 100644 index 0000000..152be3b Binary files /dev/null and b/media/img/main.png differ diff --git a/media/img/month_practice.png b/media/img/month_practice.png new file mode 100644 index 0000000..72aeaa0 Binary files /dev/null and b/media/img/month_practice.png differ diff --git a/media/img/year_instruction.png b/media/img/year_instruction.png new file mode 100644 index 0000000..9e07224 Binary files /dev/null and b/media/img/year_instruction.png differ