Compare commits

..

3 Commits

  1. 4
      config/_default/hugo.toml
  2. 9
      content/about.md
  3. 2
      themes/maik-blog/layouts/_default/single.html
  4. 2
      themes/maik-blog/layouts/partials/footer.html

@ -55,7 +55,7 @@ dateformMonth = "Jan, 2006"
# Metadata mostly used in document's head # Metadata mostly used in document's head
description = "Hey there, my name is Maik de Kruif, I create websites, bots and other kinds of software. At the moment, I'm still studying computer science at Avans University of Applied Sciences. I am also a big fan of open-source software, which is why you'll find many of my projects on Github. And last but not least, I love playing around with cyber-security related stuff." description = "Hey there, my name is Maik de Kruif, I create websites, bots and other kinds of software. At the moment, I'm still studying computer science at Avans University of Applied Sciences. I am also a big fan of open-source software, which is why you'll find many of my projects on Github. And last but not least, I love playing around with cyber-security related stuff."
keywords = "Devloper, Software Engineer, Software Developer, Maik, Computer Science, Portfolio, Blog, Maik de Kruif" keywords = "Developer, Software Engineer, Software Developer, Maik, Computer Science, Portfolio, Blog, Maik de Kruif"
images = [""] images = [""]
genre = "Blog" genre = "Blog"
@ -64,7 +64,7 @@ rssLimit = 15
showReadingTimeInList = false showReadingTimeInList = false
homeSubtitle = "Software Engineering, Linux and Cyber Security" homeSubtitle = "Software Engineer and Cyber Security Specialist"
# Prefix of link to the git commit detail page. GitInfo must be enabled. # Prefix of link to the git commit detail page. GitInfo must be enabled.
gitUrl = "https://github.com/maikka39/Personal-Website/commit/" gitUrl = "https://github.com/maikka39/Personal-Website/commit/"

@ -2,7 +2,7 @@
author = "Maik de Kruif" author = "Maik de Kruif"
title = "About" title = "About"
date = 2021-11-19T12:26:01+01:00 date = 2021-11-19T12:26:01+01:00
description = "Ever since I was a little kid, I've loved coding. From the moment of writing my first program in Python and manipulating it to produce the desired output, I have been obsessed with the idea of writing software to solve practical problems. Programming is like a never-ending puzzle where you continuously have to come up with a new way to solve it." description = "I’m a passionate coder with a strong foundation in programming. With a love for solving practical problems through software development, I am driven to continuously explore new ways to create innovative solutions. My personal side-projects and exploration of cybersecurity further enhance my skills and dedication to building powerful and impactful applications."
images = [] images = []
tags = [ tags = [
"aboutme", "aboutme",
@ -10,12 +10,9 @@ tags = [
categories = [ categories = [
"me", "me",
] ]
toc = false
+++ +++
Ever since I was a little kid, I've loved coding. From the moment of writing my first program in Python and manipulating it to produce the desired output, I have been obsessed with the idea of writing software to solve practical problems. Programming is like a never-ending puzzle where you continuously have to come up with a new way to solve it. Ever since I was a little kid, I've loved coding. From the moment of writing my first program in Python and manipulating it to produce the desired output, I have been obsessed with the idea of writing software to solve practical problems. Programming is like a never-ending puzzle where you continuously have to come up with a new way to solve it.
Outside of my job, I run a small business with a couple of friends where we develop drone shows. I'm responsible for both designing and writing the control software as well as creating and designing the actual drones. When I get home after work, I tend to either continue writing code for some personal side-projects, or play around with cyber-security related stuff. Occasionally, I can also be found working on electronics projects. This is what keeps me up at night, a never-ending thirst to create beautiful, powerful things and share them with the world.
When I get home after work/school, I tend to either continue writing code for some personal side-projects, or play around with cyber-security related stuff. This is what keeps me up at night, a never-ending thirst to create beautiful, powerful things and share them with the world.
Skills/Interests: Python, Java, Scala, JavaScript, Node, CSS, HTML, Git, SQL, MongoDB, Apache, Nginx, Docker.

@ -38,12 +38,14 @@
{{- partial "image.html" (dict "path" .Params.Cover "alt" (.Title | plainify) "class" "post-cover") }} {{- partial "image.html" (dict "path" .Params.Cover "alt" (.Title | plainify) "class" "post-cover") }}
{{- end }} {{- end }}
{{- if not (eq .Params.toc false) }}
<aside id="toc" class="{{- if not .Params.toc }}desktop-only{{- end }}"> <aside id="toc" class="{{- if not .Params.toc }}desktop-only{{- end }}">
<div class="toc-content"> <div class="toc-content">
<div class="toc-title">{{ i18n "tableOfContents" }}</div> <div class="toc-title">{{ i18n "tableOfContents" }}</div>
{{ .TableOfContents }} {{ .TableOfContents }}
</div> </div>
</aside> </aside>
{{- end }}
<div class="post-content"> <div class="post-content">
{{ .Content }} {{ .Content }}

@ -16,6 +16,7 @@
</a> </a>
</span> </span>
</div> </div>
{{- if .Site.Params.wallets }}
<div class="footer__content__section donations"> <div class="footer__content__section donations">
{{- with .Site.Params.wallets }} {{- with .Site.Params.wallets }}
{{- range . }} {{- range . }}
@ -24,6 +25,7 @@
{{- end }} {{- end }}
{{- end }} {{- end }}
</div> </div>
{{- end }}
</div> </div>
</div> </div>
</footer> </footer>
Loading…
Cancel
Save