Categories
MATLAB

50 MATLAB Image Processing Ideas with Color Detection

In this article we will enlist 50 image processing ideas which could be done with simple color detection algorithm or variants of color segmentation using image processing toolbox of MATLAB. Look, a display of colors that can tell stories better than words! Images, which silently convey truths, have been praised by poets and painters for […]

Categories
Examples

ECG Signal Denoising in MATLAB: A Comprehensive Guide with Code Example

Electrocardiogram or in short (ECG), is a widely used by medical practitioners as a diagnostic tool for cardiovascular diseases. However, ECG signals are often corrupted by noise, making it challenging to extract useful information. In this article, we will explore ECG signal denoising in MATLAB, a powerful tool for biomedical signal processing. Therefore, we will […]

Categories
Examples Node js

Real Time Chat Application in Node js using Scoket IO

In this Node js tutorial we will demonstrate a simple Real Time Chat application using the WebSockets and we are going to use the Socket.io package for this. Let’s create a new node js project by creating a directory navigating to that and using the command node init -y. After that just navigate to that […]

Categories
Examples

Exploring Arduino Serial Communication Beyond the Basics

We are not just focusing on Serial.read() and Serial.write() etc. We will try to look onto some advance, beyond the basics functions which you may need into your daily embedded system development life with Arduino. Arduino Serial communication is one of the basic thing that every beginner learn but still there are some features you […]

Categories
Examples

React Tailwind CSS Sidebar Layout

Today we are going to give the example of Tailwind CSS sidebar layout page. Where we are going to demonstrate two options which are extracted from the stackoverflow page. Here is the first example Above example is clean and simple with sticky sidebar. But if you prefer to do this without the sticky thing and […]

Categories
React-js

React Map Array Of Objects

Most of the time we feel need to iterate over objects and display them in jsx form or in HTML page. In react we can simply use the pure JavaScript function of “map()” to iterate over the arrays or even the arrays of objects and we can simply output the corresponding data. Here is one […]

Categories
Next js

Next Auth Credentials Provider JWT using Next.js and TypeScript

Let’s dive into integrating the Next Auth Credentials Provider with JWT, leveraging TypeScript support for a Next.js 14 example. 🚀 We’ll explore NextAuth.js JWT, Next-Auth Secrets, and Next Auth credentials provider – and more! Ready to explore these aspects and beyond? Let’s kick things off with a fundamental introduction to Next.js and Next-Auth.js. Next.js, a […]

Categories
Bootstrap

Bootstrap 5 Simple Login Page Example

Today we are going to create a simple login page using Bootstrap v5. Bootstrap v5 is the latest version of the Bootstrap and for creating a simple login page first of all we need to navigate to bootstrap official getting started page and grab minimum html5 template and start from there. Once we are done […]

Categories
Examples

PIC Timer1 External Clock Frequency Counter

We are using the PIC16f887 microcontroller’s internal Timer1 module in External Clock mode to count the number of clocks on the associated pin RC0. While using the timer1 module, we have two options for selecting the clock source, 1 is to use the internal clock or we can select the external clock source by setting […]

Categories
Examples

MicroPython getting started Guide

MicroPython is getting hype these days, due to the most advanced microcontrollers and development boards are now supporting the MicroPython. Especially the MicroPython support for ESP8266 and MicroPython for ESP32 board and now the modern Raspberry Pi Pico board is also supporting the MicroPython. Originally the MicroPython was designed for Pyboard which was specially designed […]