'' tutorials

All '' tutorials:

  1. Sanitize and Validate Data With PHP Filters

    Sanitize and Validate Data With PHP Filters

    Tutorial Intermediate

    Data validation is an integral part of working with forms. Not only can invalid submitted data lead to security problems, but it can also break your webpage....

  2. Timing Events in JavaScript: setTimeout and setInterval

    Timing Events in JavaScript: setTimeout and setInterval

    Tutorial Beginner

    JavaScript timing events are used to run code at a specific time or after a specific period of time. These events are frequently used in web development for...

  3. Get Started With Firebase for Android

    Get Started With Firebase for Android

    Tutorial Beginner

    Creating a back-end server requires a skill set that most independent app developers lack. Fortunately, there's Firebase, a cloud-based platform that...

  4. Git on Windows Made Easy With GitHub Desktop

    Git on Windows Made Easy With GitHub Desktop

    Tutorial Beginner

    GitHub Desktop makes it easier to get started with Git on Windows than using Git from the command line. You can collaborate with others, manage your code,...

  5. Working With 2D Arrays in JavaScript

    Working With 2D Arrays in JavaScript

    Tutorial Beginner

    This tutorial will teach you how to work with 2D arrays in JavaScript including their initialization and creation. You will also learn how to get and set the...

  6. Useful Methods for Arrays in the Lodash Library

    Useful Methods for Arrays in the Lodash Library

    Tutorial Intermediate

    Lodash offers a huge set of methods that implement common functionality missing from native JavaScript methods. In this tutorial, I will show you some...

  7. How to Upload Images to Firebase From an Android App

    How to Upload Images to Firebase From an Android App

    Tutorial Beginner

    Firebase Storage provides secure file uploads and downloads for Firebase apps. Learn to build an Android app for uploading images to Firebase Storage.

  8. Introduction to Forms in Angular: Template-Driven Forms

    Introduction to Forms in Angular: Template-Driven Forms

    Tutorial Beginner

    In Angular, you can build forms with a template-driven or a model-driven approach. Here you'll learn to create template-driven forms using Angular.

  9. 13 Best HTML5 Game Templates of 2025 With Source Code

    13 Best HTML5 Game Templates of 2025 With Source Code

    Tutorial Beginner

    Do you want to build fun online games for desktop and mobile devices? HTML5 has quickly become the universal platform for creating browser-based games for...

  10. Lazy Loading Images Using HTML and JavaScript

    Lazy Loading Images Using HTML and JavaScript

    Tutorial Beginner

    This tutorial will teach you how to load images lazily using HTML and JavaScript without any third-party libraries.

  11. How to Use Amazon S3 & PHP to Dynamically Store and Manage Files With Ease

    How to Use Amazon S3 & PHP to Dynamically Store and Manage Files With Ease

    Tutorial Intermediate

    Amazon S3 (Simple Storage Service) is a cloud-based object storage service. In this article, we're going to discuss how you can use Amazon S3 to store and...

  12. Iterating Over Arrays in JavaScript: 4 Methods Compared

    Iterating Over Arrays in JavaScript: 4 Methods Compared

    Tutorial Beginner

    This tutorial will teach you different methods of traversing over arrays in JavaScript along with the pros and cons of each.