diff --git a/config.toml b/config.toml index 7d452ab..df2cde5 100644 --- a/config.toml +++ b/config.toml @@ -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" \ No newline at end of file + instagram = "https://www.instagram.com/davidzessen/" + github = "https://github.com/broodjeaap" + youtube = "https://www.youtube.com/user/Broodjeaap89" \ No newline at end of file diff --git a/content/posts/hello-world.md b/content/posts/hello-world.md deleted file mode 100644 index d41918d..0000000 --- a/content/posts/hello-world.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: "Hello World" -date: 2021-01-11T20:45:36+01:00 -draft: true ---- - diff --git a/content/posts/ohthatsa.md b/content/posts/ohthatsa.md new file mode 100644 index 0000000..6c025e1 --- /dev/null +++ b/content/posts/ohthatsa.md @@ -0,0 +1,28 @@ +--- +title: "OhThatsA App" +date: 2021-01-11T20:45:36+01:00 +draft: true +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. + + +## 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. \ No newline at end of file diff --git a/static/img/ohthatsa/main.png b/static/img/ohthatsa/main.png new file mode 100644 index 0000000..3f50a52 Binary files /dev/null and b/static/img/ohthatsa/main.png differ diff --git a/static/img/ohthatsa/month_practice.png b/static/img/ohthatsa/month_practice.png new file mode 100644 index 0000000..72aeaa0 Binary files /dev/null and b/static/img/ohthatsa/month_practice.png differ diff --git a/static/img/ohthatsa/practice_overview.png b/static/img/ohthatsa/practice_overview.png new file mode 100644 index 0000000..152be3b Binary files /dev/null and b/static/img/ohthatsa/practice_overview.png differ diff --git a/static/img/ohthatsa/year_instruction.png b/static/img/ohthatsa/year_instruction.png new file mode 100644 index 0000000..9e07224 Binary files /dev/null and b/static/img/ohthatsa/year_instruction.png differ