Blog

Latest Articles

Browse the latest tutorials, guides, and practical examples across Linux, DevOps, security, databases, and programming on GoLinuxCloud.

Explore the latest tutorials and guides across Linux, DevOps, programming, and more.

You can also browse content by category below:

  • Linux: Commands, administration, troubleshooting, and system operations
  • DevOps: CI/CD, Kubernetes, containers, and automation
  • Programming: Coding tutorials, scripting, and development concepts
  • Security: Ethical hacking, system security, and best practices
  • Databases: MySQL, MariaDB, PostgreSQL, and database management
  • Networking: Network setup, troubleshooting, and protocols
  • Storage: Disk management, file systems, and storage solutions
  • Tools: Useful tools and utilities for productivity

2233 articles

10+ examples on python sort() and sorted() function

We can use sort() or sorted() in-built function to perform python sorting for different data types such as list, tuples, dictionaries, list of dictionaries with …

By Deepak Prasad · 9 min read · programming

Python List with Examples

Learn Python lists with simple examples to create a list, access items, change values, add and remove elements, loop through lists, sort, copy, and use common …

By Deepak Prasad · 8 min read · programming

10+ simple examples to learn python tuple in detail

Python tuples are collection of comma-separated values. It is identical to a list, except it is immutable. Tuples are useful for storing information that you …

By Deepak Prasad · 9 min read · programming

10+ simple examples to learn python sets in detail

Python sets are collections of unique and unordered items. It implements all the fundamental operations from set theory, like union, intersection, subset tests …

By Deepak Prasad · 9 min read · programming

Python range() Function [In-Depth Tutorial]

Python range() function is a built-in function that generates a list of numbers. This list is mostly used to iterate over using a for loop.

By Deepak Prasad · 13 min read · programming

Python Dictionary Explained

Learn Python dictionary with simple examples, including dictionary syntax, creating dictionaries, accessing values, adding and updating items, looping, checking …

By Deepak Prasad · 7 min read · programming

Python for loop (10 easy examples with syntax)

The Python for loop is also referred to as the for…in loop. This is due to its unique syntax that differs a bit from for loops in other languages. We use range, …

By Deepak Prasad · 14 min read · programming

Ansible Tutorial for Beginners [RHCE EX294 Exam]

Free, hands-on Ansible tutorial for beginners that takes you from zero to RHCE EX294. Lab setup, playbooks, roles, vaults, AWS provisioning - 27 lessons across …

By Deepak Prasad · 1 min read · devops

Working with include and import module in Ansible

We can use Ansible import module to add playbook, tasks from another file into a different playbook. This can help use the same set of tasks across multiple …

By Deepak Prasad · 6 min read · devops

Ansible Tags: Your Shortcut to Smarter Automation

Explore the dynamic world of Ansible Tags to streamline your automation tasks. Our guide delves into the essentials of using tags in Ansible playbooks, offering …

By Deepak Prasad · 12 min read · devops

Use Ansible Handlers Like a PRO: Don't be a Rookie

Handlers are tasks that only run when notified. Each handler should have a globally unique name. Ansible Handlers always run in the order they are defined, not …

By Deepak Prasad · 11 min read · devops

Working with Ansible conditional statements

Control structures are mainly of the following two types Conditional & Iterative. We will cover when, failed_when, changed_when conditions in playbooks

By Deepak Prasad · 9 min read · devops