Skip to main content

About Me

Dheeraj
20 years
Student • Creator
Quick links 

About Me - Dheeraj Kumar (Dheeraj Parat)

Hi - I build things with code and share tutorials. I focus on practical projects: web apps, mobile apps (Flutter), automation scripts and hardware experiments (Raspberry Pi, ESP32). I publish step-by-step guides and short demo videos so others can replicate and learn fast.

Primary interests:
Programming
Linux & Security

Projects & Demos

Raspberry Pi Smart Speaker - Display + voice control (work-in-progress).
Academic Calendar App (Flutter) - Firebase-backed events & notifications.
ESP32 Desk Clock - Battery-backed, Wi-Fi sync, LCD display.

Current goals

  • Polish the Flutter app UI and add offline sync.
  • Deep dive into Assembly & embedded optimizations.
  • Publish 10 high-quality tutorials this year.
Read my blog
Email: dheerajparat@gmail.com
Availability: Evenings after college (use contact to request collab/time).
© Dheeraj Parat. Built with curiosity and code.
Copied to clipboard

Comments

Popular posts from this blog

Download youtube video using termux

How to Download YouTube Videos Using Termux If you're interested in downloading YouTube videos directly through Termux, this guide will walk you through the process. We’ll explain each command step-by-step and ensure you can execute them successfully. Introduction Termux is a powerful terminal emulator for Android that allows you to use Linux commands. In this guide, we’ll use Termux to install and run a script for downloading YouTube videos. The script we’ll use is hosted on GitHub, and by following the commands below, you’ll be able to download videos easily. Commands Explanation Below is the list of commands you need to execute, along with an explanation of what each does. 1. Update and Upgrade Packages pkg up -y -y -y -y This command updates and upgrades all existing packages in Termux. The pkg up is a shorthand for pkg update && pkg upgrade . The -y flag automatically answers “yes” to any prompt...

linux on any phone using termux

How to Install Kali Linux on Android Using Termux (Step-by-Step Guide) Kali Linux is a powerful penetration testing and security auditing platform. While it's primarily used on PCs, you can also run it on your Android phone using Termux . In this guide, we'll walk you through the step-by-step process. Prerequisites Before starting, ensure you have: Android 7.0 or higher (root not required but helpful for full functionality) Termux app (download from F-Droid Stable internet connection (for downloading packages) At least 5GB free storage (Kali Linux tools take space) Step 1: Install & Update Termux Download Termux from F-Droid Open Termux and run the following commands to update packages: pkg update -y && pkg upgrade -y Install essential dependencies: pkg install wget proot -y Ste...

Unveiling the Mystery Behind a Phone Number with Python

Unveiling the Mystery Behind a Phone Number with Python In the digital age, a phone number can reveal much more than just a means to communicate. With the right tools, one can uncover the general location and even the service provider behind a mysterious number. Today, we’ll explore how a simple Python script can turn a series of digits into insightful information. The Python Code Our journey begins with importing the necessary modules: import phonenumbers from phonenumbers import geocoder, carrier from geopy.geocoders import Nominatim The phonenumbers module is a treasure trove, capable of parsing, formatting, and validating phone numbers. It also houses geocoder and carrier , submodules that help us find the location and carrier information, respectively. Next, we prompt the user for a phone number: phone_n = input("Enter your phone number: ") phone_number = phonenumbers.parse(phone_n, None) The parse function analyzes the phone number, prepar...