Disable Two-Factor Authentication in Magento 2.4+ (2FA)

Disable Two-Factor Authentication in Magento 2.4+ (2FA)

When you upgrade or install Magento 2.4+, two-factor authentication mode is automatically enabled by default, which might cause trouble to you. In this post,...
Enable Full Page Cache in Magento 2

Enable Full Page Cache in Magento 2

By default, Full Page Cache (FPC) is disabled after installation, and there is no way to configure it via admin. In this post, I...
Get vocabulary by name in Drupal 8+

Get vocabulary by name in Drupal 8+

In this post, I will share with you a snippet to get vocabulary by name in Drupal 8+. function getVocabularyByName($vocabularyName) { $vocabularies...
Embed files in Go

Embed files in Go

In this post, I will show you a tip to embed files in Go (golang), which, in facts, reads file contents into a variable. Starting...
Clear a map in Go

Clear a map in Go

In this post, I will share with you a quick tip to clear a map in Go. There are two ways to clear a map...