
Playing with arduino without hardware
This is my video 3 years ago, but I think this is always a fun way to play with Arduino, you can do it everywhere, and…

Script for text finder inside excel file
I made a Python script to look at some text inside my Excel file, this script can look at multiple Excel files inside a folder row by…
Popular IoT Platforms Used by Big Companies
Platform Features Scalability Number of Subscribers Companies Using Amazon AWS IoT Core – Device connectivity to the cloud – Device management – Security – Data analysis –…

Choosing the right chart for data visualization
Bar and Column Charts: These charts shine when comparing distinct groups or categories. Bar charts excel at showcasing differences between categories and tracking changes over time. Perfect…

Installation script for installing node js
curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh chmod 500 nsolid_setup_deb.sh ./nsolid_setup_deb.sh 21 (replace 21 with the version do you want to install ) apt-get install nodejs -y
Add heroicons in nextjs
Install library npm install @heroicons/react Howto use import { BeakerIcon } from ‘@heroicons/react/24/solid’ function MyComponent() { return ( <div> <BeakerIcon className=”h-6 w-6 text-blue-500″ /> <p>…</p> </div> )…