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

957 articles

Mediator Pattern in JavaScript: Practical JS Example

Mediator pattern in JavaScript: central coordinator, reduced coupling between components, when to prefer it over Observer, and a small runnable example.

By Olorunfemi Akinlua · 3 min read · programming

Java Memory Management [In-Depth Tutorial]

Java memory management is handled by the Java Virtual Machine (JVM). The JVM allocates memory for Java objects on the heap, which is a portion of memory that

By Bashir Alam · 10 min read · programming

How to add quotation marks within string Java?

Quotation marks are a commonly used character in programming, especially when it comes to strings. In Java, there are two types of quotation marks that can be

By Bashir Alam · 5 min read · programming

How to skip a line in Java Scanner?

In Java, you can use the nextLine method of the Scanner class to read a line of input from the user. If you want to skip a line, you can simply call the

By Bashir Alam · 6 min read · programming

JavaScript try catch: Handle Errors and Exceptions

Learn JavaScript try catch with syntax, thrown errors, finally blocks, return vs throw behavior, and practical error-handling examples.

By Olorunfemi Akinlua · 3 min read · programming