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
  • Cloud: AWS, Azure, OpenStack, and hybrid cloud administration
  • 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

2342 articles

Blog illustration with latest articles, tutorials, guides, and how-to content across Linux and DevOps topics
linux

How to Install and Configure Memcached on Ubuntu?

This tutorial will guide you through detailed steps to install and configure Memcached on Ubuntu. We'll cover the installation process, setting up the configuration file, managing the Memcached service, connecting it …

Deepak Prasad7 min read
programming

How to Install Dart on Ubuntu with Hello World Code

This tutorial will guide you through step by step procedure to install Dart on Ubuntu, covering two installation methods (APT and Debian package), verifying the installation, creating a simple Dart program, and the …

Deepak Prasad5 min read
linux

How to Install PhotoQt on Ubuntu?

Step by Step instructions to install PhotoQt on Ubuntu environment.

Deepak Prasad4 min read
linux

Install Kali Linux on Apple M1 with UTM [100% Working]

Step by step instructions to install Kali Linux on Apple M1 Laptop using UTM

Deepak Prasad8 min read
programming

How to PROPERLY upgrade GO version in Ubuntu? [SOLVED]

Step by step instructions to upgrade go in Linux, Windows and MacOS.

Tuan Nguyen5 min read
databases

How to Delete Row in SQL Server [10 Practical Examples]

sql delete multiple rows, sql delete row if exists, sql delete all rows, sql delete duplicate rows, sql delete from select, sql delete row where column contains, sql delete row number, sql delete row with foreign key, …

Falguni Thakker6 min read
databases

SQL ISNULL Function Explained [Easy Examples]

SQL ISNULL is Advanced SQL function which takes two parameters first one is expression or column name and second is value which is return if expression or column contains NULL value

Falguni Thakker8 min read
cheatsheet

50+ tmux cheat sheet and shortcut commands

In this tutorial I have shared the most used tmux cheatsheet with the list of commands and shortcuts for sessions, windows panes etc in tmux

Deepak Prasad4 min read
databases

SQL Date Format Explained with Examples

Different types and formats of SQL date format explained with examples. SQL datetime format syntax, type and examples. sql server date format.

Deepak Prasad10 min read
databases

Pandas concat() Function Tutorial

Discover the ultimate guide to mastering pandas concat in Python. Whether you're a beginner or an experienced professional, our comprehensive guide offers actionable tips, best practices, and real-world examples to …

Deepak Prasad18 min read
programming

GO Import struct from another file

You can use import to import the package and then reference the struct using package.StructName wherein the name of Struct must start with Capital letters to make it gloabally accessible.

Tuan Nguyen6 min read
programming

Master Golang Gin Module [Explained with Examples]

Explore the transformative power of Golang Gin in web development. This guide offers insightful tips, best practices, and innovative strategies to elevate your coding experience. Dive into Golang Gin and revolutionize …

Antony Shikubu11 min read
devops

The imperative of attack simulation in modern cybersecurity

Imagine locking every door and window in your house, only to realize there's a hidden passage you've overlooked that's what it's like without the vital

Deepak Prasad6 min read
programming

HackerRank Solution: Python Alphabet Rangoli

In this tutorial we cover 3 methods to solve alphabet rangloi hackerrank solution in python3. Solution-1: Using the string module, Solution-2: Using for loop, Solution-3: Using join() method

Bashir Alam5 min read
databases

Master Pandas iloc: Definitive Guide to Data Slicing

Explore the comprehensive guide to pandas iloc, the powerful indexer for pandas DataFrames and Series. Learn through examples and FAQs how to perform simple to advanced data manipulations. Perfect for beginners and …

Deepak Prasad12 min read
programming

Flask SQLAlchemy [In-Depth Tutorial]

Flask SQLAlchemy is an extension for flask that adds support for SQLAlchemy to flask by adding useful defaults and helpers that simplify basic tasks

Deepak Prasad21 min read
programming

Different ways to call a function in Python

We can access the features and functionality of a function by just calling it. In this tutorial, we will learn about how the python call function works

Bashir Alam9 min read
programming

HackerRank Solution: Python Loops [3 Methods]

In this tutorial we will solve python loops hackerrank problem with multiple possible solutions,

Bashir Alam3 min read
databases

4 ways to add row to existing DataFrame in Pandas

how to add row/s to an existing panda dataframe using append(), loc[] and concat() functions. We also included and excluded indices with concat() function.

Deepak Prasad7 min read
programming

HackerRank Solution: Python Merge the Tools [Strings]

In this tutorial we share different methods to solve hackerrank python merge the tools solution

Bashir Alam5 min read
programming

Python append() vs extend() in list

In this tutorial we will cover multiple examples to understand the difference between list.append() vs list.extend() method. We will [erform a 1 to 1 comparison between these methods.

Deepak Prasad6 min read
programming

HackerRank Solution: Python Word Order

In this tutorial we will share different solutions to solve word order problem from Hacker Rank Python

Bashir Alam5 min read
programming

SOLVED: List unique characters from a string in Python

As we know, that the set data structure only stores the unique elements in it. It does not allow repeated values. So, we can utilize this feature to list

Deepak Prasad4 min read
databases

Pandas dataframe explained with simple examples

Related Searches: pandas dataframe, pd dataframe, python dataframe, pandas create dataframe, python pandas dataframe, create dataframe, create dataframe pandas

Bashir Alam16 min read
databases

Python Pandas Tutorial

Standard python distribution does not come with pandas. We have to manually install pandas in our local environment. We can use pip to install python pandas

Bashir Alam12 min read
programming

Flask Templates with Jinja2 Explained in Detail

Jinja2 is python based template engine used in flask, it is built in flask, so you do not need to download a separate package to use jinja2 with flask, it is installed with flask.

Deepak Prasad13 min read
databases

How to PROPERLY Rename Column in Pandas

In this tutorial we will learn use pandas dataframe.rename() and other methods to rename column in a List, CSV files, Dictionaries or any other type of object in Python.

Deepak Prasad16 min read
programming

How to slice dictionary in Python? [SOLVED]

In this article, we will see one of the most asked and confusing problems: slicing a dictionary in Python. Slicing a dictionary means obtaining the subsets of

Deepak Prasad4 min read
databases

Mastering Pandas Groupby Method [Basics to Advanced]

Learn how to master the Pandas GroupBy method for data grouping and aggregation in Python. From basic syntax to advanced features, this guide covers essential topics like sum(), mean(), filtering, and more to help you …

Bashir Alam17 min read
programming

Convert entire dataframe to lower case

There are multiple methods to convert lower case entire dataframe in Python Pandas.

Azka Iftikhar3 min read