Home Page Category Archive Contact
My photo
Menu
  • CSS
  • HTML
  • Node.js
  • Nuxt.js
  • Python
  • Docker
  • Laravel
  • JavaScript
  • Vue Templates
  • Project Template
  • Dashbord Template
  • MongoDB
  • JavaScript
  • PostgreSQL
  • Shell Scripting
  • Project Template
  • Dashbord Template
Category
  • Admin Template (49)
  • Bootstrap (3)
  • Configuration (9)
  • CSS (208)
  • Docker (22)
  • Git (49)
  • HOW TO LEARN (23)
  • HTML (66)
  • JAVASCRIPT (166)
  • jQuery (3)
  • Laravel (276)
  • Linux (38)
  • Livewire (1)
  • MongoDB (25)
  • MySQL (245)
  • Next.js (10)
  • Node.js (12)
  • Nuxt.js (8)
  • PHP (88)
  • PostgreSQL (29)
  • Python (12)
  • React.js (1)
  • Red Hat (3)
  • Redis (3)
  • SASS (2)
  • Shell Scripting (20)
  • SQL (70)
  • Video Playlist (7)
  • VIDEOS (1)
  • Vue.js (4)
  • Windows (11)
Cloud
  • Admin Template
  • Bootstrap
  • Configuration
  • CSS
  • Docker
  • Git
  • HOW TO LEARN
  • HTML
  • JAVASCRIPT
  • jQuery
  • Laravel
  • Linux
  • Livewire
  • MongoDB
  • MySQL
  • Next.js
  • Node.js
  • Nuxt.js
  • PHP
  • PostgreSQL
  • Python
  • React.js
  • Red Hat
  • Redis
  • SASS
  • Shell Scripting
  • SQL
  • Video Playlist
  • VIDEOS
  • Vue.js
  • Windows
Archive
  • 2026 (70)
  • 2025 (1243)
  • 2024 (1)
Filter

Souy Soeng

Buy Me A Coffee
Sort by
  • New
  • Trending
  • YouTube
  • Most Popular
SQL
by Soeng Souy /January 23, 2025
What Is SQL

What Is SQL

What is SQL? SQL (Structured Query Language) is a standard programming language used for managing and manipulating relational databases. It is the ba…

SQL
by Soeng Souy /January 23, 2025
SQL Syntax

SQL Syntax

What is SQL Syntax? SQL (Structured Query Language) syntax refers to the rules and structure used to write SQL statements. These statements are the f…

SQL
by Soeng Souy /January 23, 2025
SQL Tutorial

SQL Tutorial

SQL Tutorial: A Complete Beginner's Guide Structured Query Language (SQL) is the standard language used for managing and manipulating relational …

Shell Scripting
by Souy Soeng /January 23, 2025
Shell Scripting

Shell Scripting

Introduction to Shell Scripting Shell scripting is the process of writing a series of commands for the shell (command-line interpreter) to execute. A…

Shell Scripting
by Souy Soeng /January 23, 2025
 Hello World in Bash

Hello World in Bash

Hello World in Bash The "Hello World" program is a simple example often used to demonstrate the basics of a programming or scripting langua…

Shell Scripting
by Souy Soeng /January 22, 2025
Best Linux Command Line Text Editors

Best Linux Command Line Text Editors

Best Linux Command Line Text Editors Linux offers a variety of powerful command-line text editors for all types of users, from beginners to advanced …

Shell Scripting
by Souy Soeng /January 22, 2025
Variables in Bash

Variables in Bash

Variables in Bash Variables in Bash are used to store and manipulate data. They are essential for writing flexible and reusable scripts.

Shell Scripting
by Souy Soeng /January 22, 2025
Comments in Bash

Comments in Bash

Comments in Bash Comments in Bash scripts are used to add explanations, improve readability, and document the purpose or behavior of code. They are i…

Shell Scripting
by Souy Soeng /January 22, 2025
Quotes in Bash

Quotes in Bash

Quotes in Bash In Bash scripting, quotes are used to handle strings and control how special characters are interpreted. Understanding when and how to…

Shell Scripting
by Souy Soeng /January 22, 2025
 Debuging A Bash Script

Debuging A Bash Script

Debugging a Bash Script Debugging Bash scripts is an essential skill for identifying and fixing issues in your code. Bash provides several built-in t…

Shell Scripting
by Souy Soeng /January 22, 2025
 Bash Exit Codes

Bash Exit Codes

Bash Exit Codes In Bash scripting, exit codes (or return codes) indicate the success or failure of a script or command. They are essential for debugg…

Shell Scripting
by Souy Soeng /January 22, 2025
 Command Line Arguments in Shell Script

Command Line Arguments in Shell Script

Command Line Arguments in Shell Scripts Command line arguments allow users to pass input directly to a script when executing it. This makes scripts d…

Shell Scripting
by Souy Soeng /January 22, 2025
 Include Files in Bash

Include Files in Bash

Including Files in Bash In Bash scripting, you can include external files to organize code, reuse functions, or import configurations. This practice …

Shell Scripting
by Souy Soeng /January 22, 2025
Shell Commands

Shell Commands

Shell Commands: A Comprehensive Guide Shell commands are the fundamental building blocks for interacting with the operating system in the command-lin…

Shell Scripting
by Souy Soeng /January 22, 2025
Handling User Input in Bash

Handling User Input in Bash

Handling User Input in Bash User input is a crucial aspect of interactive Bash scripts. Bash provides various methods to capture and process user inp…

Shell Scripting
by Souy Soeng /January 22, 2025
 Bash Arithmetic Operations

Bash Arithmetic Operations

Arithmetic Operations in Bash Bash provides support for performing arithmetic operations using a variety of methods. These operations are essential f…

Shell Scripting
by Souy Soeng /January 22, 2025
 Bash Numeric Comparisons

Bash Numeric Comparisons

Numeric Comparisons in Bash Numeric comparisons in Bash allow you to evaluate relationships between numbers, such as equality, inequality, and order.…

Shell Scripting
by Souy Soeng /January 22, 2025
Bash String Comparisons

Bash String Comparisons

String Comparisons in Bash String comparisons in Bash allow you to evaluate relationships between strings, such as equality, inequality, and pattern …

Shell Scripting
by Souy Soeng /January 22, 2025
Bash if else Statment

Bash if else Statment

If-Else Statement in Bash The if-else statement in Bash is a conditional construct used to execute a block of code based on whether a condition eval…

Shell Scripting
by Souy Soeng /January 22, 2025
No title

For Loop in Bash The for loop in Bash is used to iterate through a list of items, files, numbers, or any set of values. It executes a set of command…

Shell Scripting
by Souy Soeng /January 22, 2025
While Loop in Bash

While Loop in Bash

While Loop in Bash The while loop in Bash is used to execute a block of code repeatedly as long as a specified condition evaluates to true . It'…

Shell Scripting
by Souy Soeng /January 22, 2025
Switch (Case) Statment in Bash

Switch (Case) Statment in Bash

Switch (Case) Statement in Bash The case statement in Bash is a conditional construct that simplifies checking multiple conditions. It’s often used …

Shell Scripting
by Souy Soeng /January 22, 2025
 Functions in Bash

Functions in Bash

Understanding Functions in Bash What is a Function in Bash? A function in Bash is a reusable block of code designed to perform a specific task. Funct…

Git
by Souy Soeng /January 22, 2025
How to perform a Git clean up of branches and commits example

How to perform a Git clean up of branches and commits example

How to Perform a Git Cleanup of Branches and Commits Managing branches and commits efficiently in Git is essential for maintaining a clean and organi…

Red Hat
by Souy Soeng /January 07, 2025
How to Configure Nginx on Red Hat Linux

How to Configure Nginx on Red Hat Linux

Here’s a step-by-step guide to configure Nginx on Red Hat Linux. I’ll outline the steps clearly and provide detailed instructions. You can use thes…

Red Hat
by Souy Soeng /January 07, 2025
Essential Red Hat Linux Commands for Beginners

Essential Red Hat Linux Commands for Beginners

Essential Red Hat Linux Commands Red Hat Enterprise Linux (RHEL) is widely used in enterprise environments, offering robust performance, stability,…

Admin Template
by Souy Soeng /December 28, 2024
Laravel 9 Tutorial - Save Data in Database (MySQL)

Laravel 9 Tutorial - Save Data in Database (MySQL)

Introduction In this tutorial, I’ll guide you through the process of cloning a Laravel project from a Git hosting platform such as GitLab , GitHub ,…

Newer Posts

Souy Soeng

𝗦𝘁𝗮𝗿𝗖𝗼𝗱𝗲 𝗞𝗵 is our website that teaches and reads PHP, Framework Laravel, and how to download Admin template sample source code free. Thank you for being so supportive! 🥰
About us

About us

Create project sample and free download

Github

Github

StarCode Kh :) Thank you for being so supportive! 🥰

Admin Template

Admin Template

Free download of the Admin template sample with source code.

Instagram

Instagram

StarCode Kh :) Thank you for being so supportive! 🥰

YouTube

YouTube

StarCode Kh :) Thank you for being so supportive! 🥰

Facebook Page

Facebook Page

StarCode Kh :) Thank you for being so supportive! 🥰

About Template Privacy Policy Terms of Service Developers