Finished up the OhThatsA page
This commit is contained in:
parent
c8925391b4
commit
0eb5a550e0
7 changed files with 33 additions and 19 deletions
18
config.toml
18
config.toml
|
@ -5,11 +5,8 @@ title = "BroodjeAap"
|
||||||
theme = "hugo-creative-portfolio-theme"
|
theme = "hugo-creative-portfolio-theme"
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
style = "default"
|
style = "blue"
|
||||||
description = "Describe your website"
|
description = "BroodjeAap Projects"
|
||||||
sidebarAbout = [
|
|
||||||
"I am a software developer that creates stuff that no one should use, for fun",
|
|
||||||
]
|
|
||||||
# Nav links in the side bar
|
# Nav links in the side bar
|
||||||
[[params.navlinks]]
|
[[params.navlinks]]
|
||||||
name = "Home"
|
name = "Home"
|
||||||
|
@ -17,14 +14,9 @@ theme = "hugo-creative-portfolio-theme"
|
||||||
home = true
|
home = true
|
||||||
|
|
||||||
[params.social]
|
[params.social]
|
||||||
facebook = "full page or profile url in facebook"
|
|
||||||
googleplus = "full profile url in googleplus"
|
|
||||||
email = "email@example.com"
|
email = "email@example.com"
|
||||||
twitter = "full profile url in twitter"
|
twitter = "full profile url in twitter"
|
||||||
linkedin = "full profile url in linkedin"
|
linkedin = "full profile url in linkedin"
|
||||||
stackoverflow = "full profile url in stackoverflow"
|
instagram = "https://www.instagram.com/davidzessen/"
|
||||||
instagram = "full profile url in instagram"
|
github = "https://github.com/broodjeaap"
|
||||||
github = "full profile url in github"
|
youtube = "https://www.youtube.com/user/Broodjeaap89"
|
||||||
gitlab = "full profile url in gitlab"
|
|
||||||
youtube = "full profile url in youtube"
|
|
||||||
whatsapp = "wa.me service link"
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
title: "Hello World"
|
|
||||||
date: 2021-01-11T20:45:36+01:00
|
|
||||||
draft: true
|
|
||||||
---
|
|
||||||
|
|
28
content/posts/ohthatsa.md
Normal file
28
content/posts/ohthatsa.md
Normal 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
|
||||||
|

|
||||||
|
### An instruction page
|
||||||
|

|
||||||
|
### 'Month' practice in progress
|
||||||
|

|
||||||
|
|
||||||
|
## 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.
|
BIN
static/img/ohthatsa/main.png
Normal file
BIN
static/img/ohthatsa/main.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
BIN
static/img/ohthatsa/month_practice.png
Normal file
BIN
static/img/ohthatsa/month_practice.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
BIN
static/img/ohthatsa/practice_overview.png
Normal file
BIN
static/img/ohthatsa/practice_overview.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 66 KiB |
BIN
static/img/ohthatsa/year_instruction.png
Normal file
BIN
static/img/ohthatsa/year_instruction.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 86 KiB |
Loading…
Add table
Reference in a new issue