Author name: @berkan

Python, Scripting

What Are Strings in Python?

Strings are sequences of characters — letters, numbers, or symbols — enclosed in single (‘…’) or double (“…”) quotes. They’re one of the most common data types in Python. 1. Basic String Printing print(“Hello, World!”) # Double quotesprint(‘Hello, World!’) # Single quotes 2. Assigning Strings to Variables greeting = “Hello, World!”print(greeting) 3. Concatenating Strings You

Codes, Kubernetes, Website-related

Master the Art of Observability with Kubernetes Monitoring

Introduction: Why Kubernetes Monitoring Matters Kubernetes has emerged as one of the most powerful and widely adopted tools for managing containerized applications at scale. Its ability to orchestrate complex workloads, automate deployments, and handle failovers has transformed how organizations build and run cloud-native applications. However, while Kubernetes offers immense flexibility and power, it also introduces

GitLab, GitLab Installation

Install GitLab

This page is the first step for GitLab Step 1: Install Git 1-For Linux (Ubuntu/Debian-based)sudo apt update && sudo apt install git -y 1-For macOSbrew install git # If you don’t have Homebrew, install it first: /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh) 2-Once installed, check the version to confirm:git –version Step 2: Configure Gitgit config –global

Cloud Compute, GCP

Increase Storage of a VM

Increase the Storage of a VM in Google Cloud Platform (GCP) This way helps to increase the VM disk size without STOP. Resize the Persistent Disk After resizing the disk in GCP, run the following commands inside your VM: Check the disk size by lsblk Resize the filesystem: If using ext4 : sudo resize2fs /dev/sdb1

Scroll to Top