With every E-commerce website displaying the products is one of the very important feature, we can make a very simple Product Card using the Pure HTML and CSS only. This will help us to practice our HTML and CSS skills. This could be used as an exercise to excel our CSS Skills. In our previous […]
Today we are going to create a simplest and easiest Profile card to demonstrate the power of Vanila CSS. So we are not using any fancy libraries like Bootstrap or TailwindCSS. We are just focusing on creating it with pure CSS. This profile card is just for demonstration purpose and will display 3 basic components, […]
While exploring image processing, I recently embarked on a project to implement skin color detection and segmentation using MATLAB. This project is helpful and touches on several important applications like face recognition, gesture analysis, and human-computer interaction. In this post, I will walk you through my experience, the techniques I explored, and how I structured […]
CodeIgniter 4 Shield User Management
Managing user accounts effectively is crucial for any web application. CodeIgniter 4 Shield simplifies this task with its powerful authentication and authorization tools. In this post, we will explore user profile management, password reset and recovery, and account activation and deactivation using CodeIgniter 4 Shield. In the previous post we described how to create a […]
You must want to protect your intellectual property firmware in this case. Like any other microcontroller STM8 also provide features to protect the memory access for unauthorized access. We previously added ATMEGA328 microcontroller protection system. But our today’s focus is STM8 microcontroller. STM8 microcontrollers are widely used in various applications due to their robustness and […]
Microcontrollers are the heart of many electronic devices, from simple gadgets to complex embedded systems. One of the critical aspects of their operation is the reset mechanism, which ensures the microcontroller starts correctly and runs reliably. Resetting a microcontroller clears its state and brings it back to a known starting point, allowing the system to […]
CodeIgniter 4 Shield Authentication
Shield is a comprehensive authentication and authorization library for CodeIgniter 4, which simplifies implementing authentication in your application. When building web applications, securing your application’s authentication and authorization is paramount. Enter Shield, the official authentication and authorization framework for CodeIgniter 4. Designed with flexibility and security at its core, Shield provides a robust set of […]
String to const char* Arduino
In Arduino programming, working with strings is a common task, whether you’re sending data over serial communication, displaying messages on an LCD, or interacting with other hardware components. The String class in Arduino provides a convenient way to handle text, but there are situations where you need to convert this String into a C-style string […]
Imagine you have two Arduinos, and you want them to talk to each other—maybe one collects data, and the other controls a motor based on that data. There could be many reasons where you may have to use multiple arduinos to communication with each other and there could be many ways to accomplish this task. […]
If you, just like me, accidentally added the .env file in your GitHub repository, and now tried everything but the .env file changes are still being pushed to your GitHub repository, you can use this tutorial and just remove your .env file being update and synced with your remote origin repository. To exclude the .env […]