The resources I used to pass the DVA-C02 exam
I recently passed my first AWS certification exam and am now an AWS Certified Developer Associate. I want to quickly share the resources I used to prepare.
Tech, life and everything else
Welcome to the Dev section of my blog with development related articles.
I recently passed my first AWS certification exam and am now an AWS Certified Developer Associate. I want to quickly share the resources I used to prepare.
A few days ago, an OVH data center went up in flames and was completely destroyed. This reminded me that it is important to store backups in another place on earth if possible, so better not in the same data center as the server that might burn down.
Instead of making a post every other day with all the solutions, here are my approaches for the rest of week 1 and week 2 of Advent of Code 2020.
Today I wanted to check if my blog contains some broken links and it actually did. I used the Go-based tool muffet which crawls a website and checks for HTTP errors when following links. To speed up the process, I started a local Hugo server and used the following command for muffet (after installing it):
Hugo themes have the option to override the default rendering of Markdown images by using βMarkdown Render Hooksβ since version 0.62.0. By creating a file in layouts/_default/_markup named render-image.html it is possible to use a custom template for rendered images. This gives a lot of flexibility. I just used that flexibility to create a lightbox with pure CSS (without using JavaScript, like many lightbox implementations do). After clicking (or tapping) on an content image, you will see it filling the browser view. Another click brings you back to the content.