Tag: Modules

16 Cool Drupal modules For site builders | Februari 2018

Default password checks are stupid and annoying for the user: they can check the entered password meets certain rules, such as the number of characters and varying types herein (symbols, numbers, capital letters etc.). This is a stupid way of checking because the password ‘Welcome123’...

Creating Advanced Powershell Modules

PowerShell, a versatile scripting and automation framework, has become a staple tool for system administrators, DevOps professionals, and developers. One of its most potent features is the module system, which allows for the organization and encapsulation of code, enhancing reusability and manageabi...

How to create reusable infrastructure with Terraform modules

This is Part 4 of the Comprehensive Guide to Terraform series. In Part 1, you learned why we picked Terraform as our IAC tool of choice and not Chef, Puppet, Ansible, Pulumi, or CloudFormation. In Part 2, you got started with the basic syntax and features of Terraform and used th...

Provision Amazon EKS Cluster Using Terraform Modules

Amazon Elastic Kubernetes Service (EKS) is a managed service that makes it easy to run Kubernetes on AWS. With EKS, you can focus on building and running your applications, while AWS takes care of managing the Kubernetes control plane, worker nodes, and cluster resources. EKS offers a number...

Writing Versatile Python Scripts and Modules | __name__ and __main_

In Python, the __name__ variable is a special built-in variable that is used to determine whether a Python script is being run as the main program or if it is being imported as a module into another script. It allows us to write code that can be used both as a standalone script and as a mo...

Guide to Building and Consume AARs with Multiple Modules

An Android library is a pre-packaged collection of code and resources that provides specific functionality or features, allowing developers to easily incorporate ready-made solutions into their Android applications, saving time and effort in the development process. In this tutorial, we are goi...