Skip to main content

Posts

Showing posts with the label coding by dheeraj

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...

learning html : part - 1

Introduction to HTML Also Watch This Video! HTML (HyperText Markup Language) is the backbone of every webpage on the internet. It provides the structure and content of a webpage, defining elements that browsers use to interpret and display information. What is HTML? HTML is a markup language composed of various elements, tags, and attributes. These elements help organize content on a webpage, creating headings, paragraphs, lists, links, images, and more. The structure of HTML consists of nested elements, forming a tree-like structure known as the Document Object Model (DOM). Basic Structure of HTML An HTML document starts with a <!DOCTYPE html> declaration, followed by an <html> element that wraps the entire content. Within the <html> element, there are two main sections: Head Section (<head>): Contains meta-information about the document, such as the title of the page, links to external stylesheets, and scripts...