Skip to content

Instantly share code, notes, and snippets.

View Xnuvers007's full-sized avatar
💭
Lily Loly Zyaa ❤️

XnuxersXploitXen Xnuvers007

💭
Lily Loly Zyaa ❤️
View GitHub Profile
[Desktop Entry]
Version=5.1
Name=Whatsapp By Xnuvers007
Type=Application
Exec='/usr/local/bin/whatsdesk.sh'
Icon=/path/to/image
StartupNotify=true
Terminal=false
file whatsdesk.sh like this
@Xnuvers007
Xnuvers007 / main.py
Last active July 12, 2023 15:25
This is script for html2image or get screenshot with python and replit.com -> my project = https://replit.com/@Xnuvers007/s website = https://s.xnuvers007.repl.co/ss?url=https://google.com
from flask import Flask, request, send_from_directory, jsonify, redirect, url_for
from html2image import Html2Image
import os
from threading import Timer
from urllib.parse import urlparse
app = Flask(__name__)
# Configure Html2Image with custom flags
hti = Html2Image(output_path='output/',
@Xnuvers007
Xnuvers007 / main.py
Last active July 29, 2023 08:51
Let me tracking your fake url with my very safe code
import os
try:
import requests
from bs4 import BeautifulSoup
except ImportError:
print("Required packages not found. Attempting to install them.")
try:
os.system("pip install requests beautifulsoup4")
print("Packages installed successfully.")
@Xnuvers007
Xnuvers007 / GUImain.py
Last active November 27, 2023 15:02
y2mate Xnuvers007 Youtube Downloader with python
import re
import requests
import tkinter as tk
from tkinter import messagebox
import webbrowser
def get_video_id(url):
pattern = re.compile(r'(?:youtube\.com\/(?:[^\/\n\s]+\/\S+\/|(?:v|e(?:mbed)?)\/|\S*?[?&]v=|shorts\/)|youtu\.be\/)([a-zA-Z0-9_-]{11})')
match = pattern.search(url)
return match.group(1) if match else None
import turtle
from math import pi, sin, cos
def draw_heart(w, h, iteration=0):
if iteration >= len(colors):
return
t = turtle.Turtle()
t.hideturtle()
t.pensize(2.5)