diff --git a/README.md b/README.md
index 6858e30..678ab8e 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,18 @@
-# ohthatsa
+# OhThatsA [](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
+
+
+
-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