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

Master Golang Enum Techniques: Don't be a Rookie

Explore the dynamic world of Golang Enum. Unearth powerful strategies, avoid common pitfalls, and harness the full potential of enums to enhance your code's …

By antonyshikubu · 17 min read · programming

Golang Constructor Tutorial

we learn about Go constructors. Go does not come with constructors natively but provides ways to construct new types. Constructor functions are ordinary …

By antonyshikubu · 6 min read · programming

Python convert user input to asterisk [SOLVED]

There are multiple ways to convert user input to asterisk in Python. We have covered some of the easy methods using python modules.

By azkaiftikhar · 4 min read · programming

Golang http - Create HTTPS Server and Client

Use golang http to setup a basic and advanced web server and client. The client go code will establish communication with HTTPS server over TLS, MTLS or …

By tuannguyen · 12 min read · programming

Golang Graphql Tutorial with Examples

Complete golang graphql tutorial with sample schema and resolving the content with schema. Integrate graphql with HTTP

By tuannguyen · 7 min read · programming

Golang Type Assertion Explained with Examples

Golang type assertion is a mechanism for working with the underlying concrete value of an interface. Type switches use switch blocks for data types and allow …

By tuannguyen · 5 min read · programming

Golang Parse JSON (With or Without Struct)? [SOLVED]

golang parse json file, golang parse json array, golang parse json response without struct, golang parse json to struct, golang parse json to map, golang json …

By tuannguyen · 7 min read · programming

Golang JSON Unmarshal Examples

Use golang json unmarshal to parse JSON data with simple and complex structured data and unstructured data with examples

By tuannguyen · 5 min read · programming

Golang FlashDB Tutorial- In Memory Database

Golang flashdb is an in memory database written in golang. Read, Write, Store, Update and Delete key and value content inside the database with examples

By tuannguyen · 6 min read · programming

Go comma ok idiom - How & When to Use?

The Go comma ok idiom is mostly used to Test for error on a function return, Testing if a key-value item exist in a Go map, Testing if an interface variable is …

By antonyshikubu · 6 min read · programming