Open external Link in Blank Page with Hugo

Markdown has limitations when it comes to fine-grained html, such as opening an external link in a new tab or window, but by combining markdown and hugo, you can get the best of both worlds.

Code generation using drupal console

Drupal console, like symfony console, provides dozens of commands for generating modules and boilerplate code in the Drupal ecosystem, including the following.:

Convert obsidian images to hugo

Obsidan uses the following markup for images 1 ![[image_name]] On the other hand hugo uses a different markup, as long as the images are in the static folder, the markup should look like the following: 1 ![](/image_name) We can use a simple regex to convert obsidian images to hugo format.

AWS On Demand Backup

In order for the backup service to be able to make backups, generate reports, and restore from those backups, we’ll need to define a backup role after we’ve enabled backup.

AWS Vault

A backup vault is a container that stores and organises your backups in AWS. When creating a vault, make sure the name is between 2 and 50 alphanumeric characters long and contains only hyphens or underscores. The name is case-sensitive, and your KMS key must be entered at the time of creation.

A look at AWS KMS

KMS, or Key management service, is an AWS service that allows for the provisioning, storage, and management of customer master encryption keys. KSM is a regional service and is situated in the AWS public zone. So what is customer master key (CMK) anyway?

Column-oriented database

Each record in traditional row-oriented database takes up space on a single or more adjacent disk blocks.On the other hand,  each column is kept in its own contiguous block or blocks in column-oriented databases.

Look at these sections of the hard drive of a row-oriented database

How Git merge works

Git merge will make a bit more sense if we look at an example. Let’s assume Jack has created a new, empty repository containing only a text file. He edits the file to include, “You people,” and saves it with a cmt 1 change.