Blog Posts

Automatically update the hidden dependencies in your Dockerfiles

You have probably already heard about Renovate - the fantastic tool that helps you to keep your dependencies up to date. But today, we want to look at an edge case: how to keep your dependencies in your dependencies up to date (also called hidden dependencies)?

Read More

GitHub Classic vs. Fine-grained Personal Access Tokens

What are PATs? Personal access tokens are an alternative to using passwords for authentication to GitHub when using the GitHub API or the command line.

Read More

Data Validation Overview

What is Validation? Validation ensures data integrity by asserting conditions against data. Examples: Is a value required? What is the maximum length of a string? Is a given date valid? Often referred to as “defensive programming” or “trust but verify.” An essential but often overlooked step in software development.

Read More

Third-party GitHub Actions

Today I came across these steps to guide our decision-making process, before using a 3rd Part GitHub Action:

Read More

GitHub Codespace

What is a Codespace? A codespace is a development environment that’s hosted in the cloud. You can customize your project for GitHub Codespaces by committing configuration files to your repository (also known as configuration-as-code), which creates a repeatable codespace configuration for all users of your project. Each codespace you create is hosted by GitHub in a Docker container that runs on a virtual machine. You can choose the type of machine you want to use depending on the resources you need.

Read More

Awk and Sed

awk and sed are text manipulation programs. You can use them, for example, to replace strings:

Read More

How to do a code review - Finecloud

This Blog post is my personal summary of Googles code review process.

Read More

Conventional commits

What are Conventional commits Conventional Commits is a convention for writing commit messages that provides structure and consistency to a project’s version control history. It’s based on the idea of defining a standard format for commit messages that makes it easier for developers to understand the changes made to a codebase over time.

Read More

Clean Code Summary

Summary of ‘Clean Code’ by Robert C. Martin Original Summary on GitHub

Read More

Building a GraphQL service

Preparation First, let’s navigate to Spring Initializr. This service pulls in all the dependencies you need for an application and does most of the setup for you.

Read More