Finished up the OhThatsA page

This commit is contained in:
BroodjeAap 2021-01-12 19:29:51 +01:00
parent c8925391b4
commit 0eb5a550e0
7 changed files with 33 additions and 19 deletions

View file

@ -5,11 +5,8 @@ title = "BroodjeAap"
theme = "hugo-creative-portfolio-theme"
[params]
style = "default"
description = "Describe your website"
sidebarAbout = [
"I am a software developer that creates stuff that no one should use, for fun",
]
style = "blue"
description = "BroodjeAap Projects"
# Nav links in the side bar
[[params.navlinks]]
name = "Home"
@ -17,14 +14,9 @@ theme = "hugo-creative-portfolio-theme"
home = true
[params.social]
facebook = "full page or profile url in facebook"
googleplus = "full profile url in googleplus"
email = "email@example.com"
twitter = "full profile url in twitter"
linkedin = "full profile url in linkedin"
stackoverflow = "full profile url in stackoverflow"
instagram = "full profile url in instagram"
github = "full profile url in github"
gitlab = "full profile url in gitlab"
youtube = "full profile url in youtube"
whatsapp = "wa.me service link"
instagram = "https://www.instagram.com/davidzessen/"
github = "https://github.com/broodjeaap"
youtube = "https://www.youtube.com/user/Broodjeaap89"

View file

@ -1,6 +0,0 @@
---
title: "Hello World"
date: 2021-01-11T20:45:36+01:00
draft: true
---

28
content/posts/ohthatsa.md Normal file
View file

@ -0,0 +1,28 @@
---
title: "OhThatsA App"
date: 2021-01-11T20:45:36+01:00
draft: true
image: "/img/ohthatsa/main.png"
---
<!--more-->
An app to help you learn how to calculate day of the week from any date.
Mostly made to try out Dart/Flutter.
## App
### Practice overview
![practice_overview](/img/ohthatsa/practice_overview.png)
### An instruction page
![year_instruction](/img/ohthatsa/year_instruction.png)
### 'Month' practice in progress
![month_practice](/img/ohthatsa/month_practice.png)
## 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.

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB