Posts

Showing posts with the label techshorts

Modern Calculator App Built in Flutter 🔢 | FuzzuTech

Image
  Demo : Click Video 👇👇👇 🌟 Features: Embed YouTube Short video Include Flutter code snippet (formatted in code block) Add tags as Blogger “labels” CTA: “Subscribe to FuzzuTech on YouTube for daily tech projects!” Code : import 'package:flutter/material.dart'; void main() {   runApp(CalculatorApp()); } class CalculatorApp extends StatelessWidget {   @override   Widget build(BuildContext context) {     return MaterialApp(       title: 'Modern Calculator',       theme: ThemeData.dark().copyWith(         scaffoldBackgroundColor: Colors.black,         colorScheme: ColorScheme.dark(           primary: Colors.blue,           secondary: Colors.blueAccent,         ),       ),       home: CalculatorScreen(),       debugShowCheckedModeBanner: false,     );...

Auto Temp Cleaner Service – Python Windows Background Cleaner | FuzzuTech

Image
  Demo : Click Video 👇👇👇 🔧 Features: Auto-clean temp folders every 10 minutes Logs each cleanup cycle Safe dry-run testing Runs as background Windows Service 📜 Source Code: temp_cleaner_service.py Code : """ temp_cleaner_service.py Windows Service & fallback daemon to auto-clean temp files. Dependencies: psutil, pywin32 (Windows service) Install: pip install psutil pywin32 Windows service usage:     python temp_cleaner_service.py install     python temp_cleaner_service.py start     python temp_cleaner_service.py stop     python temp_cleaner_service.py remove Non-Windows usage (or for quick testing):     python temp_cleaner_service.py --run BE CAREFUL: This script deletes files. Use dry_run=True to test first. """ import os import sys import time import argparse import logging import tempfile import shutil from datetime import datetime, timedelta import psutil # Try importing win32service only when availa...

🧠 Cookie Stealer Simulator GUI – Ethical Hacker Tool Built in Python | FuzzuTech

Image
  Demo : Click Video 👇👇👇 Description : Learn how to simulate a cookie stealing tool in Python using a dark-themed GUI. This ethical hacker tool is built with tkinter + ttkbootstrap and includes sound + alert popups. Features : Embedded YouTube Short 2–3 Screenshots of GUI Code Snippet (above) Download Button for .py file or GitHub link Share buttons (WhatsApp, Telegram, LinkedIn) Code : import tkinter as tk from ttkbootstrap import Style from tkinter import messagebox, PhotoImage from playsound import playsound import threading import time # Initialize modern style style = Style(theme="cyborg") root = style.master root.title("Cookie Stealer Simulator") root.geometry("500x400") root.resizable(False, False) # Load Image cookie_icon = tk.PhotoImage(file="assets/cookie.png") # Header Label header = tk.Label(root, text="🍪 Cookie Stealer Simulation", font=("Helvetica", 18, "bold"), fg="#ffcc00...

🔍 APK Analyzer GUI Tool in Python – Scan Android Files Instantly | FuzzuTech

Image
  Demo : Click Video 👇👇👇 Code : import tkinter as tk from tkinter import filedialog, messagebox import zipfile import os def analyze_apk(file_path):     info = ""     try:         with zipfile.ZipFile(file_path, 'r') as zip_ref:             for name in zip_ref.namelist():                 if "AndroidManifest.xml" in name:                     info += f"Manifest Found: {name}\n"                 if "META-INF/" in name:                     info += f"Signature Info: {name}\n"         info += f"\nAPK Size: {os.path.getsize(file_path) / 1024:.2f} KB"         return info     except Exception as e:         return str(e) def browse_file():     path = filedialog...

💽 Disk Space Analyzer GUI App in Python – FuzzuTech | Analyze Your Drives with Live Pie Charts!

Image
  Demo : Click Video 👇👇👇 Code : import customtkinter as ctk import matplotlib.pyplot as plt from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg import psutil import shutil # Appearance ctk.set_appearance_mode("System") ctk.set_default_color_theme("blue") # GUI app = ctk.CTk() app.title("Disk Space Analyzer - FuzzuTech") app.geometry("600x500") app.resizable(False, False) # Title title = ctk.CTkLabel(app, text="💾 Disk Space Analyzer", font=("Arial Black", 22)) title.pack(pady=20) # Frame for pie chart frame = ctk.CTkFrame(app, width=600, height=400) frame.pack(pady=10) # Pie chart generation def show_pie_chart():     for widget in frame.winfo_children():         widget.destroy()     partitions = psutil.disk_partitions()     labels, sizes = [], []     for part in partitions:         try:             usage = shutil.disk_usage(part.mountpoint)    ...

Auto Typing Bot Python GUI – FuzzuTech | Auto Typer Using Tkinter + PyAutoGUI

Image
  Demo : Click Video 👇👇👇 Code : import tkinter as tk from tkinter import ttk import pyautogui import threading import time # ✅ Disabling PyAutoGUI fail-safe (Only if you're confident) pyautogui.FAILSAFE = False class AutoTyperApp:     def __init__(self, root):         self.root = root         self.root.title("Auto Typing Bot")         self.root.geometry("400x300")         self.root.configure(bg="#1e1e1e")         self.typing = False         self.label = tk.Label(root, text="Enter Text To Type:", fg="white", bg="#1e1e1e", font=("Arial", 12))         self.label.pack(pady=10)         self.entry = tk.Text(root, height=5, width=40, font=("Arial", 11), bg="#2d2d2d", fg="white", insertbackground="white")         self.entry.insert("1.0", "Lorem ipsum dolor sit amet, consectetur adipiscing elit."...

🔐 Fuzzu Encryptor – Python GUI for Text & File Security | CustomTkinter App

Image
  Demo : Click Video 👇👇👇 Features : Live Demo Snapshots (Add screenshots of GUI) How it works: Text encryption/decryption File protection workflow Why this project is unique (offline + visual + secure) Download code (optional GitHub link) Related Shorts or projects by FuzzuTech Code : import customtkinter as ctk from tkinter import filedialog, messagebox from cryptography.fernet import Fernet import os # ------------------------- # Appearance and Theme # ------------------------- ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") # ------------------------- # Main App Setup # ------------------------- app = ctk.CTk() app.title("Fuzzu Encryptor | Modern GUI") app.geometry("600x500") # ------------------------- # Load or Create Key # ------------------------- def load_or_create_key():     if os.path.exists("key.key"):         with open("key.key", "rb") as f:             return f.re...