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

SQL Server COALESCE Function with Practical Examples

The SQL Server Coalesce() function is a basic SQL function which is used to evaluate the list of values and return the first occurrence of non-NULL value. The …

By Falguni Thakker · 8 min read · databases

Python pow() Function [In-Depth Tutorial]

The python pow() function can be used to derive the power of variable x to the variable y. Examples of python power function. Examples of math power function

By Bashir Alam · 13 min read · programming

Master Python set intersection()

In python, we have a python set intersection method that consists of all the common elements of the input sets.

By Bashir Alam · 15 min read · programming

The Ultimate Python Cheat Sheet for *args and **kwargs

A python kwargs is a dictionary of keyword arguments. we put two ** before kwargs which allows us to pass any number of keyword arguments. Python *args can be …

By Bashir Alam · 19 min read · programming

Python User Input Advanced Guide [In-Depth Tutorial]

Use python input() function to ask user for input in Python. Collect integer or floating number or string as input. COllect multiple inputs in single line

By Bashir Alam · 14 min read · programming

Python ceil() Function

Learn Python ceil() using math.ceil() with examples for positive and negative numbers, ceiling division, ceil vs floor, integers, floats, and common mistakes.

By Bashir Alam · 6 min read · programming

SQL SUBSTRING Function Explained

SQL mainly provides three truncate functions which are working with string. SQL Substring Function, SQL Left Function, SQL Right Function

By Falguni Thakker · 10 min read · databases

Python super() function explained [Easy Examples]

The Python super() function can only be used inside the child class to call the constructor and any other parent class method. We can use the supper() function …

By Bashir Alam · 9 min read · programming

Python startswith() method explained [Easy Examples]

The Python startswith() method returns True if the string starts with the specified value, otherwise False. If we will not specify the starting position of the …

By Bashir Alam · 8 min read · programming

Set Static IP in Rocky Linux [6 Different Methods]

6 different methods to configure and set static IP Address in Rocky Linux. Use nmtui, nmcli, ifcfg, ip and ifconfig utility to configure static IP address

By Deepak Prasad · 11 min read · networking

Numpy random Examples | rand() | randint() function

The Numpy random method in Python helps us to create random numbers. You can use random.rand(), random.randint(), random.uniform() function to generate random …

By Bashir Alam · 10 min read · programming