Categories
Examples MERN Stack

How to start a MERN Stack Application

MERN Stack is basically Mongos, Express React.js and Node.js. Which means, in a MERN Stack application we create backend using Node.js and Express and Front End with React.js and for the Database we use NoSQL kind of Database which is MongoDB. In this post we are going to explain how to start a new MERN […]

Categories
Examples

Teachable Machines tflite model Python Test

If you had trained and tested your tflite model with teachablemachines you now want to test that in your python code. In this example code we are assuming the classification model and image processing task. We used the OpenCV and tensorflow model and load the tflite model with tf.lite.interpreter. Here is our complete code This […]

Categories
Assembly Language Examples Microchip PIC16 PIC16F877A

PIC16F877A PIC Microcontroller Keypad Interfacing in Assembly Language

Matrix 4×4 keypad interfacing with pic microcontroller is another one of the most wide problem which we often face and in today’s tutorial we are going to explain the 4×4 keypad interfacing with pic16f877a microcontroller. It makes very special problem to not even decode the matrix 4×4 keypad but also to open the door of […]

Categories
Examples

Arduino GPS Tracker with Real-Time Location Tracking

In this article we are going to implement a real time location tracking system with NEO GPS and a SIM800 GSM module. This is for the intention to track location of your vehicle or any other thing that you want to track and want to know the position on your mobile phone. There are many […]

Categories
Examples MATLAB

Color Blood Vessel detection using MATLAB image processing

If we are looking for fundus images of eyes. We are actually need some machanism before we process these images to look for blood vessels. In this article we are looking for color blook vessels detection method in MATLAB. We are going to cover the basic image processing techniques on the fundus images to find […]

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
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 […]