Let’s Code Better

  • Angular Material 12 Bottom Sheet / Slide Up Menu Example Tutorial

    In this Angular Material tutorial, we’ll learn how to implement the Bottom Sheet navigation menu with different examples and configurations to set position, pass dynamic data to show customized buttons using Material UI in the Angular 12 application. The bottom Sheet slide-up menu is a very useful UI element that can help us in providing…

    Read more: Angular Material 12 Bottom Sheet / Slide Up Menu Example Tutorial
  • Angular Material 12 Datapicker with Range Selection Example with ngx-daterangepicker-material

    Material Datepicker with To From Date Range selection Example; In this Angular Material tutorial, we’ll learn how to implement Material UI styles Datepicker and Timepicker with Range selection feature. Usually the Material date and time picker only allows a user to select a single value. But here we’ll learn how to enable a user to…

    Read more: Angular Material 12 Datapicker with Range Selection Example with ngx-daterangepicker-material
  • XAMPP – How to Connect a Remote Database in phpMyAdmin

    In this quick tutorial, we will guide you on how to connect to a remote database from a local phpMyAdmin console. For connecting the remote database, we will use XAMPP on Windows 10 and use phpMyAdmin console to connect to a remote database.

    Read more: XAMPP – How to Connect a Remote Database in phpMyAdmin
  • React Responsive Content/ Image Slider Example – Using react-responsive-carousel Library

    React responsively carousel example in React js application; You will learn how to add a responsive image carousel in React js application. For this, we will use a very popular library named react-responsive-carousel. We will discuss how to add custom animation, including fade effect, and configure using a wide range of props. React Responsive Carousel…

    Read more: React Responsive Content/ Image Slider Example – Using react-responsive-carousel Library
  • How to Get Claim Value from JWT String in Angular

    JSON Web Tokens (JWT) are widely used for authentication and authorization purposes in web applications. This article will demonstrate how to extract claim values from a JWT string in an Angular application. We’ll walk you through the entire process, including setting up an Angular project, adding the necessary libraries, and creating a service to handle…

    Read more: How to Get Claim Value from JWT String in Angular
  • How to Update URL Without Refresh in Angular: Updating Query Parameter Values

    One of the challenges we often face when working with Angular is to update the URL without refreshing the page. This is especially important when dealing with query parameters, as you may want to change their values without causing a full page refresh. In this article, we will explore how to update the URL and…

    Read more: How to Update URL Without Refresh in Angular: Updating Query Parameter Values
  • Next Js and Mailchimp Integration – Each Detail You Need to Know!

    In this detailed Next.js tutorial, you will learn step by step process on how to integrate the Mailchimp Email collection form in the Next js application. We will cover each and every step starting from setting up the Mailchimp account and creating an email list and audience to how to create an email collecting form…

    Read more: Next Js and Mailchimp Integration – Each Detail You Need to Know!
  • Python Dict: Get First Key 3 Methods

    This tutorial will guide you through various methods to get the first key from a dictionary in Python.

    Read more: Python Dict: Get First Key 3 Methods
  • Regex Split in Python – Tutorial with Examples

    In this article, we will explore how to use regex to split strings in Python, by using the re module and its functions. This comprehensive guide will provide examples and use cases to help you better understand and utilize regex splitting in your Python projects. Python has built-in support for regex through the re module,…

    Read more: Regex Split in Python – Tutorial with Examples
  • Regex Python Cheat Sheet

    This article will serve as a comprehensive cheat sheet for regex in Python, providing you with an understanding of the basic concepts and patterns, as well as a rundown of the most common functions and features.

    Read more: Regex Python Cheat Sheet
  • Regex Remove Special Characters in Python with Examples

    In this digital age, data manipulation and text processing are more critical than ever. As a result, removing special characters from strings is a common task for developers. This article will provide an in-depth tutorial on how to use regular expressions to remove special characters in Python, along with various examples.

    Read more: Regex Remove Special Characters in Python with Examples
  • Python replaceall Regex – Tutorial with Examples

    Python provides a powerful library called re to work with regex. This article will discuss how to use Python’s re module to perform replaceall functionality using regex, along with various examples and use cases.

    Read more: Python replaceall Regex – Tutorial with Examples
  • Python Regex Replace String: A Comprehensive Guide with Examples

    Regular expressions (regex or regexp) are a powerful tool for text processing that allow to search, manipulate, and validate strings using a set of patterns. In this article, we will provide an in-depth tutorial on using Python’s regex functionality to replace strings along with examples and their use cases.

    Read more: Python Regex Replace String: A Comprehensive Guide with Examples
  • [Angular 16] Pass Data Between Components with Examples

    In this comprehensive guide we will discuss how to Pass data using @Input(), send data and listen to events from child to parent using @Output(), use @ViewChild to get child component instances in parent and more advanced techniques with examples. Component-based architecture is a key feature of Angular application, which are the reusable UI blocks…

    Read more: [Angular 16] Pass Data Between Components with Examples
  • Next Js Router – Dynamic, Nested, Wildcard, Shallow Routing Detailed Examples

    In this comprehensive and detailed guide on Next Js Router, we will discuss various use cases and feature concepts like: Simple Routing in Next Js Dynamic Routing Handling What is Shallow Routing and How to Implement it? Using WildCards in Next Js Routing How to use Next js Router Push? How to Catch All Routes?…

    Read more: Next Js Router – Dynamic, Nested, Wildcard, Shallow Routing Detailed Examples
  • React – OnChange Event handler on Dynamic Select Component

    In this article, we will explore how to create a React select dropdown and attach an onChange event handler to it. We will discuss how to get the selected value from the drop-down child component back to the parent App component. Moreover, we will set the default value of the drop-down from the App js…

    Read more: React – OnChange Event handler on Dynamic Select Component
  • Next.js – How to Play HTML Video with Custom Controls?

    In this tutorial, we will show you how to play an HTML video on a Next.js application. Along with this, we will also discuss how to add various video controls like Play/Pause, Full-screen playback, and Speed control of video in the Next Js application. Video playback is a very common feature in many web applications.…

    Read more: Next.js – How to Play HTML Video with Custom Controls?
  • Firebase Authentication in Next JS using Email/ Password – Tutorial with Example Application

    In this Nextjs tutorial, you will learn how to connect Firebase authentication in the Next js application to log in or register the users with email and password. We will get into details including how to create a new Firebase app, enable authentication and get the configuration file. After that, we will create a new…

    Read more: Firebase Authentication in Next JS using Email/ Password – Tutorial with Example Application
  • Next Js Fetch Data from API – Server and Client Side Method with Examples

    In this tutorial, you will learn how to fetch data from a remote API using various methods. In the Nextjs application, we can fetch data on the server-side, or client-side or can also use a hybrid method to handle data on the server and the client side. We will also discuss their benefits and use…

    Read more: Next Js Fetch Data from API – Server and Client Side Method with Examples
  • HTML6 Unveils Mind-Blowing Features You Can’t Afford to Miss!

    HTML, the foundation of the web, is among the most widely recognized web technologies. From its inception, HTML has continuously been employed in building the Internet. HTML5, introduced in 2014, took another step towards standardizing the hypertext markup language. Now, the web development community eagerly awaits the next upgrade—HTML6.

    Read more: HTML6 Unveils Mind-Blowing Features You Can’t Afford to Miss!
  • Links in Next.js – External, Internal, Dynamic, Query or Path Param Examples

    In this detailed guide on using Links in the Next js application, we will cover various use cases on adding links for example: Internal Links External Links Passing Query or Path Parameters in Links Fetch Multiple Query Params in the URL Get or Set Dynamic Routes Styling Active Links Programmatically Navigate on Click

    Read more: Links in Next.js – External, Internal, Dynamic, Query or Path Param Examples
  • Next.js Query Parameters: How to Set and Get URL parameters

    In this article, you will learn how to set and get URL query parameters in URL of the Next js application. Also we will discuss how to update the Next js application URL without adding to the history stack of links in the browser. We will thoroughly cover the various use cases related to the…

    Read more: Next.js Query Parameters: How to Set and Get URL parameters
  • Next.js URL Parameters: Get and Set URL Params with Examples

    This article will guide you on how to work with URL query parameters in Next.js. How to set and get URL parameters, also how to update the URL without a history link, and dealing with dynamic query parameters. In dynamic applications, we may require to handle the query parameters in the URL. In this tutorial,…

    Read more: Next.js URL Parameters: Get and Set URL Params with Examples
  • Next Js NProgress – Add Global Loading Bar Tutorial with Examples

    In this Next js tutorial, you will learn how to add a global loading bar in the Next js application using the NProgress module for showing a progress bar to indicate any asynchronous job. Showing the loader progress bar is a very important element in UI to indicate user if any process is going on…

    Read more: Next Js NProgress – Add Global Loading Bar Tutorial with Examples