Posts

Showing posts with the label pythonapps

🔐 FuzzuTech – Steganography Tool GUI | Hide Messages in Images (Python App)

Image
  Demo : Click Video 👇👇👇 ✨ Features : Encode & decode hidden messages 100% offline Dark mode GUI PNG support Built with Python PIL + customtkinter Code : import customtkinter as ctk from tkinter import filedialog from PIL import Image import io ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") app = ctk.CTk() app.geometry("500x600") app.title("Steganography Tool – FuzzuTech") def encode_image():     filepath = filedialog.askopenfilename()     if not filepath: return     img = Image.open(filepath)     message = text_entry.get("1.0", "end-1c")     encoded = img.copy()     binary_msg = ''.join(format(ord(i), '08b') for i in message)     binary_msg += '1111111111111110'  # EOF marker     pixels = list(encoded.getdata())     for i in range(len(binary_msg)):         r, g, b = pixels[i]         r = (r & ~1) ...

Python Process Killer GUI App – Kill Any App with 1 Click [FuzzuTech Project]

Image
Demo : Click Video 👇👇👇 Features : 🔥 GUI in Dark Hacker Style 💻 Kill processes by selecting them visually ⚙️ Uses Python, psutil, tkinter 📦 Offline Utility Tool 🚀 1-Click Action | Smooth GUI | Fast Execution 🎥 As featured on YouTube, Instagram & Facebook Code : import tkinter as tk from tkinter import ttk, messagebox import psutil import customtkinter as ctk # Appearance ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") class ProcessKillerApp(ctk.CTk):     def __init__(self):         super().__init__()         self.title("Python Process Killer GUI")         self.geometry("600x420")         self.resizable(False, False)         ctk.CTkLabel(self, text="Running Processes", font=("Arial", 20, "bold")).pack(pady=10)         self.tree = ttk.Treeview(self, columns=("PID", "Name"), show="headings", height=12)  ...

🎨 Python Color Picker Tool – Get HEX & RGB Codes Instantly | FuzzuTech GUI

Image
  Demo : Click Video 👇👇👇 📄 Features : Built with tkinter + customtkinter Real-time HEX & RGB color picker Copy to clipboard feature with pop-up alert Hacker-style GUI, clean & responsive Offline and beginner-friendly project Perfect for dev tools, designers, and GUI app fans Source code included Code : import tkinter as tk from tkinter import colorchooser, messagebox import pyperclip import customtkinter as ctk # Appearance Settings ctk.set_appearance_mode("System") ctk.set_default_color_theme("green") # App Window app = ctk.CTk() app.title("Color Picker Tool") app.geometry("400x300") app.resizable(False, False) def choose_color():     color = colorchooser.askcolor(title="Choose a Color")     if color:         hex_color = color[1]  # e.g. "#FF00FF"         rgb_16bit = app.winfo_rgb(hex_color)  # (0–65535 range)         rgb_8bit = tuple(int(v / 65535 * 255...