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

Golang memdb Tutorial [With Examples]

golang memdb is a simple key value pair based in memory database. We learned how to create a database, insert records, query and then delete the records. …

By tuannguyen · 8 min read · programming

Golang SQLite3 Tutorial [With Examples]

Golang sqlite tutorial with CRUD Operation. Executing commands on SQLITE database, Select statement, Insert, Read and Delete Operation with examples

By tuannguyen · 9 min read · programming

Golang MongoDB Tutorial with Examples

Using mongo-driver and mgo package to use golang mongodb with examples to perform CRUD operations

By tuannguyen · 10 min read · programming

Golang lint - Different methods with Best Practices

Golang linting is a way to verify the go code to identify any kind of compilation issues, or performance improvements which can be done. We can perform linting …

By tuannguyen · 8 min read · programming

How to use Node.js with Sublime Text IDE

Step by Step instructions to use node.js with sublime text IDE. Install Node.Js and Sublime Text IDE for the Integration.

By stevealila · 5 min read · programming

Golang return error and handle [Best Practices]

We can return errors in golanf func and then handle errors effectively using Casting Errors, Error wrapping mechanism, and Panic, defer and recover

By admin · 5 min read · programming