Category

Programming Tutorials and Coding Guides

Explore programming tutorials with practical examples across multiple languages, scripting, and development concepts for beginners and advanced users.

Welcome to the Programming tutorials section, where you will learn coding concepts with real-world examples across multiple languages and platforms.

This category includes beginner to advanced guides covering scripting, automation, and application development. Whether you are learning programming for system administration or building applications, these tutorials will help you gain practical experience.

Programming plays a crucial role in modern infrastructure and DevOps workflows. You can also explore related topics such as DevOps and Linux to understand how programming integrates with system-level operations.

What you will learn

  • Core programming concepts and logic building
  • Writing scripts for automation and system tasks
  • Debugging and optimizing code
  • Practical use cases in real environments

Who should read this

  • Beginners starting with coding
  • System administrators learning scripting
  • Developers looking for practical examples

960 articles

Import local packages without GOPATH [SOLVED]

In today's post, we are going to answer the question "Can we import the local packages without the GOPATH". We already have an article about how to organize

By tuannguyen · 4 min read · programming

Can functions be passed as parameters GO? [SOLVED]

In this tutorial, we will learn how to pass functions as a parameter to another function in Golang. Since Golang functions are first-order variables so it has

By tuannguyen · 3 min read · programming

JSON.stringify() Pretty Examples

You can achieve the JSON stringify pretty effect using the stringify() method.

By stevealila · 4 min read · programming

Convert byte slice to io.Reader in Golang [SOLVED]

In this post, we'll examine how to translate a byte slice into an io.Reader in Golang. In Go, a byte slice is a dynamic array (slice) of bytes, which can

By tuannguyen · 3 min read · programming

How to import private Github Repos in GO? [SOLVED]

Creating libs and sharing them among applications is one strategy to shorten the time needed to develop a new project and make your team's work easier. Each

By tuannguyen · 4 min read · programming

How to set default values in GO structs? [SOLVED]

There are multiple ways to set default values in go struct. We have explored some of the possible ways such as using an init function, using a separate …

By tuannguyen · 3 min read · programming

Laravel Validation and Error handling Tutorial

This tutorial will guide you through Laravel Validation, covering basic rules, advanced techniques, custom rule creation, error handling, and practical examples …

By stevealila · 15 min read · programming

Master Laravel Passport: Elevate Your API Security

Explore the robust features and best practices of Laravel Passport in our comprehensive guide. Learn how to secure your APIs, improve performance, and …

By stevealila · 20 min read · programming