Posts

USB Tracker Shield 🛡️ – Real-Time Cybersecurity Tool Made in Python (CustomTkinter GUI)

Image
  Demo : Click Video 👇👇👇 🌟 Features: Real-time USB detection Detect insert/removal events Simple GUI with status logs Lightweight, runs in background Perfect for cybersec beginners Code : import customtkinter as ctk import psutil import time import threading # ----------- GUI SETUP ---------------- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("green") class USBTrackerShield(ctk.CTk):     def __init__(self):         super().__init__()         self.title("USB Tracker Shield - Cybersecurity Tool")         self.geometry("520x400")         self.resizable(False, False)         # Title Label         self.label = ctk.CTkLabel(self, text="🛡️ USB Tracker Shield", font=("Roboto", 20, "bold"))         self.label.pack(pady=15)         # Log Display Box         self.log...

💸 My Channel Was Dead... Now This Python App Might Save It – Fuzzu Expense Tracker

Image
  Demo : Click Video 👇👇👇 Features: Built with Tkinter GUI Uses Matplotlib for charts Real-time data tracking Monthly summary by category Clean dark mode UI Great for portfolios and students Code : import tkinter as tk from tkinter import ttk, messagebox from datetime import datetime import matplotlib.pyplot as plt from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg class ExpenseTrackerApp:     def __init__(self, root):         self.root = root         self.root.title("💸 Personal Expense Tracker - FuzzuTech")         self.root.geometry("600x450")         self.root.config(bg="#121212")         self.expenses = []  # List to store expenses as tuples (date, category, amount)         title = tk.Label(root, text="Personal Expense Tracker", font=("Arial", 20, "bold"), fg="#00ff99", bg="#121212")       ...

🔥 Fuzzu Voice AI - Real-Time Gender & Age Detector using Python | Viral Tech Demo

Image
    Demo : Click Video 👇👇👇 Features : Voice recording with sounddevice Feature extraction with librosa ML prediction using dummy models Tkinter GUI interface Code : import os import librosa import numpy as np import sounddevice as sd import scipy.io.wavfile as wav from sklearn.preprocessing import StandardScaler from tkinter import * from tkinter import messagebox # Constants DURATION = 5  # seconds SAMPLE_RATE = 22050 FILENAME = "record.wav" # Dummy model simulation (mocked for this example) def load_models():     class DummyModel:         def predict(self, X):             return ["Male"] if np.mean(X) > 0 else ["Female"]     class DummyAgeModel:         def predict(self, X):             avg = np.mean(X)             if avg < -5:                 return ["Child...

Auto IP Tracker WebApp | Track IP in Hacker Style with Pure HTML, CSS, JS – FuzzuTech

   Demo : Click Video 👇👇👇 🌟 Features: Auto IP detection with fetch from ipify Hacker-themed terminal UI Fully responsive and lightweight Fake tracking lines to simulate IP trace No external dependencies (except fetch) Code : index.html <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <title>Auto IP Tracker - FuzzuTech</title>   <link rel="stylesheet" href="style.css"> </head> <body>   <div class="tracker-container">     <h1>Auto IP Tracker in WebApp</h1>     <button onclick="autoTrackIP()">Auto Detect & Track</button>     <pre id="output">Click the button above to detect your IP and start tracking...</pre>   </div>   <script src="script.js"></script> </body> </html>  style.css  body {   background-color: #000;   color: #0f0; ...

🔐 QR CODE LOCKER Made with Python – Unlock Hidden Messages with a Keyword

Image
  Demo : Click Video 👇👇👇 Code : import customtkinter as ctk import qrcode import cv2 from pyzbar.pyzbar import decode from PIL import Image def lock_text():     text = entry.get()     secret = keyword_entry.get()     data = f"{secret}|{text}"     img = qrcode.make(data)     img.save("qr_output.png")     status_label.configure(text="✅ QR Code Generated (qr_output.png)") def unlock_text():     img = cv2.imread("qr_output.png")     decoded = decode(img)     if decoded:         data = decoded[0].data.decode()         key, message = data.split("|")         if key == keyword_entry.get():             status_label.configure(text=f"🔓 Secret: {message}")         else:             status_label.configure(text="❌ Wrong keyword!")     else:   ...

💻 FAKE VIRUS Prank Using Python – SYSTEM INFECTED Shocking Reaction 😱

Image
  Demo : Click Video 👇👇👇 Code : import tkinter as tk from tkinter import messagebox import time import threading import random class FakeVirusApp:     def __init__(self, root):         self.root = root         self.root.title("System Infection Detected ⚠️")         self.root.geometry("600x450")  # Increased height slightly         self.root.configure(bg="black")         self.root.resizable(False, False)         # SYSTEM INFECTED label         self.label = tk.Label(root, text="⚠️ SYSTEM INFECTED ⚠️", font=("Helvetica", 24, "bold"),                               fg="red", bg="black")         self.label.pack(pady=20)         # Text area         self.text_area = tk.Text(root, width=70, height=...

How I Built a Real-Time Face Detector in Python Without TensorFlow or Mediapipe

Image
  Demo : Click Video 👇👇👇 📢 Features: Embed YouTube Short Include GitHub link (if public) Short write-up: Explain core logic and how Haar Cascade works SEO Tip: Use keywords like “Python face detection 2025”, “OpenCV tutorial real time” Code : import cv2 import tkinter as tk from tkinter import Label from PIL import Image, ImageTk # Haarcascade XML for face detection face_cascade = cv2.CascadeClassifier(cv2.data.haarcascades + "haarcascade_frontalface_default.xml") # Initialize webcam cap = cv2.VideoCapture(0) # Create GUI Window root = tk.Tk() root.title("Modern Face Detector - FuzzuTech") root.geometry("700x550") root.configure(bg="#1e1e1e") label = Label(root) label.pack() title = Label(root, text="Face Detector - No TensorFlow / Mediapipe", font=("Helvetica", 18), fg="white", bg="#1e1e1e") title.pack(pady=10) def detect_face():     ret, frame = cap.read()     if not ret:         return   ...