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
  • System Administration: User management, services, and system-level tasks
  • Tools: Useful tools and utilities for productivity
  • Cheat Sheet: Quick reference guides for commands and tools
  • Interview Questions: Common interview questions with answers

2076 articles

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 bashiralam · 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 bashiralam · 14 min read · programming

SQL SUBSTRING Function Explained [Beginners]

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

By falgunithakker · 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 bashiralam · 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 bashiralam · 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 admin · 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 bashiralam · 10 min read · programming

Git Revert Command Explained (9 Practical Examples)

Learn how to use the git revert command with practical examples. This tutorial explains git revert syntax, reverting specific commits, multiple commits, merge …

By stevealila · 16 min read · devops

Python any() function Examples [Beginners]

Python any() function is a built-in function that works very similarly to OR logic gate. Learn how any() function works by taking examples of lists, tuples, …

By bashiralam · 10 min read · programming