گرفتن اسکرین شات با 🖥
تو مثال اول شما ی اسکرین شات معمولی میگیرید ولی در مثال دومی مختصات هم میدید که به همون اندازه اسکرین شات گرفته شه📸
🖥 @DevLosso
تو مثال اول شما ی اسکرین شات معمولی میگیرید ولی در مثال دومی مختصات هم میدید که به همون اندازه اسکرین شات گرفته شه
Please open Telegram to view this post
VIEW IN TELEGRAM
❤6👏4 4🏆2 2
برنامه تبدیل باینری به دسیمال🖥
🖥 @DevLosso
binary = input("enter a binary number: ")
decimal = int(binary, 2)
print(f"decimal number: {decimal}")
def binary_to_decimal(binary_str):
decimal = 0
power = 0
for digit in reversed(binary_str):
if digit == '1':
decimal += (2 ** power)
power += 1
return decimal
#t.me//DevLosso
binary = input("enter binary number: ")
print("result:", binary_to_decimal(binary))Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
ساخت UUID با پایتون 🖥
⏺ بخشی از کاربرد های UUID :
🔤 🔣 🔤 🔤 🔤 🔤 🔤 🔤
✅ @DevLosso
نام گذاری دیتاهایی که کاربر ارسال میکند(مثلا عکس)
ساخت سشن برای کاربران
استفاده در api ها (مثلا ساخت توکن)
ساخت ایدی برای رکوردای دیتابیس
تو بازی سازی برای کاراکتر ها و...
import uuid
from colorama import Fore , init
init()
db = {}
#DevLosso
def text_to_uuid(text):
id_ = str(uuid.uuid4())
db[id_] = text
return id_
#DevLosso
def uuid_to_text(id_):
return db.get(id_, None)
#DevLosso
enter = input(Fore.MAGENTA + "enter your txt: ")
uid = text_to_uuid(enter)
print(Fore.GREEN + uid + Fore.RESET)
print(Fore.YELLOW + uuid_to_text(uid))
Please open Telegram to view this post
VIEW IN TELEGRAM
❤6 5💯4 3
نتیجه چه بود؟
• بیش از ۵۰ خودروی بدون راننده به یک خیابان بنبست هجوم آوردند و همگی گیر افتادند!
• هوش مصنوعی خودروها عملاً آچمز شد و پشتیبانی Waymo مجبور شد بهطور موقت کل ناوگان آن محدوده را از مدار خارج کند.
به همین سادگی، یک حمله DDoS آفلاین رقم خورد؛ نه روی سرورها، بلکه وسط خیابان!
Please open Telegram to view this post
VIEW IN TELEGRAM
قراره تو آپدیت جدید تلگرام بخش میراث اضافه بشه ؛ شما توی این بخش آیدی یه نفرو وارد میکنید و اگه تا 6 ماه یا 1 سال آنلاین نشدید تمام اطلاعات اکانتتون و هر چی که توش هست انتقال داده میشه به اون وارثی که انتخاب کرده بودید
Please open Telegram to view this post
VIEW IN TELEGRAM
❤10👏3 3 2
python -m http.server 8888 --bind 0.0.0.0
حالا آدرس IP محلیتو با دستور ipconfig پیدا کن (زیر بخش Wi-Fi، خطی که نوشته IPv4 Address). لینکی که پایتون بهت میده رو با همین IP جایگزین کن و توی مرورگر گوشی یا هر جا دیگه بازش کن. همین
همهی فایلهای اون پوشه رو ببینی
مستقیم دانلودشون کنی
حتی ویدیوها رو هم آنلاین پخش کنی
Please open Telegram to view this post
VIEW IN TELEGRAM
❤6 4👏3🙏2❤🔥1
تشخیص چهره با پایتون 🖥 🙂
حالا میتونید طبق نیازتون روش کار کنید و برنامه مورد نیاز خودتونو بسازید❤️
🔠 🔠 🔠 🔠 ❤️
🤦 @DevLosso
حالا میتونید طبق نیازتون روش کار کنید و برنامه مورد نیاز خودتونو بسازید
import cv2
face_cascade = cv2.CascadeClassifier(
cv2.data.haarcascades + "haarcascade_frontalface_default.xml"
)
if face_cascade.empty():
print("haar cascade not loaded")
exit()
cap = cv2.VideoCapture(0)
if not cap.isOpened():
print("camera not accessible")
exit()
cap.set(cv2.CAP_PROP_FRAME_WIDTH, 1280)
cap.set(cv2.CAP_PROP_FRAME_HEIGHT, 720)
print("q or esc to quit")
while True:
ret, frame = cap.read()
if not ret:
print("failed to grab frame")
break
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
faces = face_cascade.detectMultiScale(
gray,
scaleFactor=1.1,
minNeighbors=5,
minSize=(80, 80)
)
for (x, y, w, h) in faces:
cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)
cv2.putText(
frame,
"face",
(x, y - 10),
cv2.FONT_HERSHEY_SIMPLEX,
0.6,
(0, 255, 0),
2
)
cv2.putText(
frame,
f"faces: {len(faces)}",
(10, 30),
cv2.FONT_HERSHEY_SIMPLEX,
0.8,
(0, 255, 255),
2
)
cv2.imshow("face detection", frame)
key = cv2.waitKey(1) & 0xFF
if key == ord('q') or key == 27:
break
cap.release()
cv2.destroyAllWindows()
Please open Telegram to view this post
VIEW IN TELEGRAM
1❤8👏3 3🦄1
اسکنر QR Code 🖥
این برنامه وبکم شمارو باز میکنه و کد میگیرید جلوش و اسکن میشه👀
🌱 @DevLosso
این برنامه وبکم شمارو باز میکنه و کد میگیرید جلوش و اسکن میشه
import cv2
from pyzbar import pyzbar
import time
def scan_once():
cap = cv2.VideoCapture(0)
print("scanner running — waiting for QR code")
while True:
ret, frame = cap.read()
if not ret:
continue
decoded_objects = pyzbar.decode(frame)
if decoded_objects:
obj = decoded_objects[0]
qr_data = obj.data.decode("utf-8")
print("QR Code result:")
print(qr_data)
cv2.imshow("QR Code Scanner - DevLosso", frame)
cv2.waitKey(1000)
break
cv2.imshow("QR Code Scanner - DevLosso", frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
cap.release()
cv2.destroyAllWindows()
exit()
cap.release()
cv2.destroyAllWindows()
time.sleep(0.5)
while True:
scan_once()
Please open Telegram to view this post
VIEW IN TELEGRAM
❤7👏4 3 2
+ و حالا چیپهای TLC NAND تو کمتر از 6 ماه بیش از 2 برابر گرون شدن و موجودی انبارها به کف تاریخی رسیده.
Please open Telegram to view this post
VIEW IN TELEGRAM
❤6💯2 2 2
@DevLosso
Please open Telegram to view this post
VIEW IN TELEGRAM
ی ویروس ساده و باحال برای موس که موس به طور رندوم جا به جا میشه 🖱 🐍
🖥 @DevLosso
import pyautogui
import random
import time
print("mouse random mover started")
pyautogui.FAILSAFE = True
screen_width, screen_height = pyautogui.size()
while True:
x = random.randint(0, screen_width)
y = random.randint(0, screen_height)
pyautogui.moveTo(x, y, duration=random.uniform(0.2, 1.0))
time.sleep(random.uniform(0.5, 2.0))
Please open Telegram to view this post
VIEW IN TELEGRAM
پیدا کردن راحت برنامهها: محبوبها،
جدیدها و تازه آپدیتشدهها
فیلتر بر اساس سیستمعامل: فقط برنامههایی که به دستگاهت میخورن
همیشه نصب آخرین نسخه رسمی
صفحه کامل هر برنامه با توضیحات، تغییرات و آمار
ورود با اکانت GitHub برای محدودیت کمتر API
طراحی مدرن با دارک مود
Please open Telegram to view this post
VIEW IN TELEGRAM
❤8 4👏3 2
ی اسکریپت باحال برای کیبورد ⌨
این کد میاد به صورت رندوم شروع میکنه از chars که بهش دادیم کلمات مینویسه
و در متغیر run_time هم تایم اجرای مورد نظر برنامه به ثانیه میزنیم
نکته ای که هست شما میتونید اون تایم حذف کنید که همیشه کار کنه همچنین حروف و سمبل های بیشتری اضافه کنید
🗣 @DevLosso
این کد میاد به صورت رندوم شروع میکنه از chars که بهش دادیم کلمات مینویسه
و در متغیر run_time هم تایم اجرای مورد نظر برنامه به ثانیه میزنیم
نکته ای که هست شما میتونید اون تایم حذف کنید که همیشه کار کنه همچنین حروف و سمبل های بیشتری اضافه کنید
⏺ نکته : تو استفاده ازش مراقب باشید سیستم خودم بار مصرفیش خیلی بالا رفت
import random
import time
from pynput.keyboard import Controller
import threading
keyboard = Controller()
run_time = 60#S
def type_random_char():
chars = "abcdefghijklmnopqrstuvwxyz"
char = random.choice(chars)
keyboard.type(char)
def prank():
start_time = time.time()
while time.time() - start_time < run_time:
type_random_char()
threading.Thread(target=prank, daemon=True).start()
try:
while True:
time.sleep(1)
except KeyboardInterrupt:
print("end time")
Please open Telegram to view this post
VIEW IN TELEGRAM
عشقا
یلداتون مبارک امیدوارم در کنار عزیزانتون همیشه شاد باشید و بهترین لحظات بگذرونید🫴 🧡
یلداتون مبارک امیدوارم در کنار عزیزانتون همیشه شاد باشید و بهترین لحظات بگذرونید
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
❤6👏3🥰2🤣1 1
ی کد جیگر اوردم 👍
به این کار میگن دیکشنری اتک ی پسورد لیست میدید بهش با فایل زیپ اونم میاد پسوردشو پیدا میکنه(اگر تو لیست باشه) بقولی همون کرکر خودمونه🥷
🗂 @DevLosso
به این کار میگن دیکشنری اتک ی پسورد لیست میدید بهش با فایل زیپ اونم میاد پسوردشو پیدا میکنه(اگر تو لیست باشه) بقولی همون کرکر خودمونه
import pyzipper , os
from colorama import init , Fore , Back
init(autoreset=True)
def brute_force_zip(zip_name, password_list):
def find_file(filename):
for root, dirs, files in os.walk(os.getcwd()):
if filename in files: return os.path.join(root, filename)
return None
zip_path = find_file(zip_name)
wordlist_path = find_file(password_list)
if not zip_path or not wordlist_path: return print(Fore.YELLOW + f"[-] {Fore.RED} file not found") or None
print(Fore.YELLOW + f"[*] {Fore.GREEN} starting Brute Force...")
with open(wordlist_path, 'r', encoding='utf-8', errors='ignore') as f:
for line in f:
password = line.strip()
if not password:
continue
try:
with pyzipper.AESZipFile(zip_path) as z_file:
z_file.setpassword(password.encode('utf-8'))
z_file.testzip()
print(Fore.YELLOW + f"\n[+] {Fore.GREEN} Password found: {Back.LIGHTRED_EX} {password} ")
return password
except:
continue
print(Fore.YELLOW + f"\n[-] {Fore.RED} password not found")
brute_force_zip("uuid.zip", "passwordse.txt")
Please open Telegram to view this post
VIEW IN TELEGRAM
❤7🆒3👏1😍1 1
⬅️ طبق گزارش جدید CNBC، فقط در سال 2025 هوش مصنوعی بهطور مستقیم عامل حذف حدود 55 هزار شغل در آمریکا بوده. در مجموع هم امسال بیش از 1.17 میلیون شغل در آمریکا از بین رفته!⛔️ کارکنان ردهپایین و نیروهای تازهوارد. بیشترین ضربرو خوردن شرکتها (مثل آمازون و والمارت) یا نیرو کم کردن یا کلاً استخدام رو فریز کردن.📆 فقط در ماه نوامبر :
• 71 هزار شغل حذف شده
• حدود 90% مستقیم به AI نسبت داده شده
در عین حال گروه مخالفی هم وجود داره ، مثلا نشریه Fortune میگه فعلاً «بلعیده شدن کامل مشاغل توسط AI» بیشتر بزرگنماییه تا واقعیت.
Please open Telegram to view this post
VIEW IN TELEGRAM
💔4 3❤2🥰1