Blog

Magna ligula suspendisse

Lectus curabitur lacinia vulputate scelerisque ridiculus tristique quam at facilisis facilisi, ex id cubilia rhoncus nibh luctus tincidunt amet condimentum dapibus, duis nascetur tortor natoque egestas varius sed et risus. Cras suspendisse risus facilisis mollis nam nostra proin, ultrices erat rhoncus eleifend vestibulum lobortis dapibus, non conubia nisi potenti torquent commodo. Sagittis in vivamus penatibus […]

Nunc lacinia libero eu pulvinar aliquet

Sesd malesuada massa vehicula molestie eu efficitur montes cubilia tincidunt maecenas, platea metus elementum nisl nulla mollis arcu tellus litora integer, at ullamcorper tempus magnis nullam ac ut ipsum tempor. Habitant cursus habitasse pellentesque felis sed egestas aptent vitae, nunc pharetra himenaeos purus leo ridiculus pretium, primis enim ac lacus dictum eget elementum. Penatibus curae […]

Git | How to squash commits into one

In Git you have the possibility to squash commits. This is really useful to have a clean log-tree. If your process involves a code reviewer your commit isn’t split into several pieces of code snippets, because you need to do changes during the testing. To achieve the squash we will use the interactive rebase. The […]

Spring message tag | Argument Separator

Today, I worked on a Spring application. I had to change some small frontend things. One of them was to create a label containing a price. To follow the internationalization (I18N) concept I used the Spring message tag. The text I had to insert had some variables, which should be inserted during the runtime. I […]

How to install an SSH server on Debian

On Debian, it’s quite easy to install an SSH server to get access from remote machines. Before we want to install the SSH server we will update your apt repository cache with the following command: Now we can install the SSH server by installing the openssh-server package. As soon as the installation is completed, your […]

How to create a SSH Tunnel

Today, I wanted to debug an application, which is not running on my local machine. My first shoot was to change the host in the configuration for remote debugging. Of course, the port was blocked and I got the following error message: That’s the point where the SSH tunnel comes into play. It’s possible to […]

Maven Wrapper

The Maven wrapper is a great tool to use a specific version of Maven. Usually, every developer has a specific Maven version installed. But some of us are updating Maven more often than other ones. If you want to share your project with somebody who has a different version installed, it could run into some […]

Debian – How to change language

Today, I worked on a new Debian 10 (Buster) installation. While I configured the system I saw that the system was initially installed with the German language pack. To change the locale is pretty easy. You need to run the following command: A window opens and asks you, which locale files you want to create. […]

How to create alias commands in Linux

The terminal is a powerful tool, which can be customized to your needs with the alias command. The most used example is to override the remove command rm. The remove command deletes files without a prompt. You can create an alias for the remove command and add the -i option to add a prompt before […]

Shared clipboard doesn’t work between Host and Guest in VM VirtualBox

Today, a popup occurs as I opened the VirtualBox. A new version of VirtualBox is available. Of course, I clicked on the update button and waited until the update is done. Then I started my machine and wanted to copy a text from my guest and paste it into the text editor of my host. […]

« Previous PageNext Page »