๐ฏ๐ข๐ฌ๐ฎ๐š๐ฅ ๐œ๐จ๐๐ž๐ซ | ๐ฉ๐ซ๐จ๐ ๐ซ๐š๐ฆ๐ฆ๐ž๐ซ๐ฌ
318 subscribers
127 photos
19 videos
210 files
241 links
Loyihalar bo'yicha: @visualcoderuz
Download Telegram
if (isset($message)) {
$baza = file_get_contents("azo.dat"); // yangi obunachi kirganda uni ID raqami saqlanib turishi uchun fayl joylashuvi.
if (mb_stripos($baza, $chat_id) !== false) {
} else {
$txt = "\n$chat_id";
$file = fopen("azo.dat", "a");
fwrite($file, $txt);
fclose($file);
}}

๐Ÿ“Ž Botga yangi obunachi kirganda Statistika uchun ID faylga saqlab qo'yadigan funksiya.

๐Ÿ–‡ Manba:
@SupperCoderUz
Bot orqali premium stickerlar yubotishni o'rgataymi? ๐Ÿ˜

Izoh ๐Ÿ’ฌ
๐Ÿ”ฅ16๐Ÿ˜ฑ8๐Ÿ’ฏ1
๐Ÿค”2
mandat.zip
83 KB
๐Ÿ“Ž Mandat javoblarini bilib beruvchi API kod. Quyidagi fayl ichida barcha kutubxonalar mavjud va ishlashga tayyor. Natijani olish uchun PHP funksiya yaratilgan, GET so'rovi orqali API tuzilgan.

๐Ÿง‘๐Ÿปโ€๐Ÿ’ป Dasturchi:
@NinetyDev
๐Ÿ–‡ Manba: @iCoderNet
๐Ÿš€ Kanalimiz:
@SupperCoderUz
๐Ÿ“Ž Profilga juda zo'r soat qo'yuvchi kod topdim. Demo: @VisualCoderUz.

๐Ÿ›  Kodini tashaymi
๐Ÿค”1
Bugun 1200 ta bo'laylik

Max aktiv qivorila do'stla
๐Ÿ”ฅ66๐Ÿ˜63๐Ÿ˜˜6๐Ÿ’ฏ2๐Ÿ˜ฑ1
soat-profil.php
1.8 KB
๐Ÿ“Ž Telegram profilga soat qo'yib beruvchi kod. Avto qo'yilmidi, kodni hostingga yuklab Madelineda telegram akauntingiz orqali ro'yhatdan o'tasiz. Keyin kodni cronlashni ham unutmang! Kod ishlashi uchun domeningiz PHP versiyasi 8.1+ bo'lishi kerak.

๐Ÿง‘๐Ÿปโ€๐Ÿ’ป Tahrirchi:
@VisualCoderUz
๐Ÿ–‡ Manba:
@SupperCoderUz

โค๏ธโ€๐Ÿ”ฅ Reaksiya bosish tekin[yoki pullikdir ๐Ÿค”].
๐Ÿ’ฏ7โคโ€๐Ÿ”ฅ1
๐ฏ๐ข๐ฌ๐ฎ๐š๐ฅ ๐œ๐จ๐๐ž๐ซ | ๐ฉ๐ซ๐จ๐ ๐ซ๐š๐ฆ๐ฆ๐ž๐ซ๐ฌ
soat-profil.php
from telethon.sync import TelegramClient

# Set up the Telegram client
api_id = 'api_id yozing'
api_hash = 'api_hash yozing'
client = TelegramClient('session nomi', api_id, api_hash)

with client:
# Start the Telegram client
client.start()

# Get the current time and date
import datetime
time = (datetime.datetime.now() + datetime.timedelta(hours=2)).strftime("%H:%M")
day = (datetime.datetime.now() + datetime.timedelta(hours=2)).strftime("%d.%m.%Y")

# Replace digits in time with Unicode characters
time = time.replace('1', '๐Ÿท').replace('2', '๐Ÿธ').replace('3', '๐Ÿน').replace('4', '๐Ÿบ').replace('5', '๐Ÿป').replace('6', '๐Ÿผ').replace('7', '๐Ÿฝ').replace('8', '๐Ÿพ').replace('9', '๐Ÿฟ').replace('0', '๐Ÿถ')

# Define weather condition icons
obhicon = {'01d': 'โ˜€๏ธ', '02d': '๐ŸŒค', '03d': 'โ˜๏ธ', '04d': '๐ŸŒฅ', '09d': '๐ŸŒฆ', '10d': '๐ŸŒง', '11d': 'โ›ˆ', '13d': 'โ„๏ธ', '50d': '๐Ÿ’จ', '01n': '๐ŸŒ™', '02n': 'โ˜๏ธ', '03n': 'โ˜๏ธ', '04n': '๐ŸŒฉ', '09n': '๐ŸŒง', '10n': '๐ŸŒง', '11n': 'โ›ˆ', '13n': 'โ„๏ธ', '50n': '๐Ÿ’จ'}

# Get weather information from OpenWeatherMap API
import requests
response = requests.get("https://api.openweathermap.org/data/2.5/weather?q=Tashkent,UZ&units=metric&appid=a9d86a9dc54f8caf39ac424735ffc2e6")
obh = response.json()
weather = obh['main']['temp']
icon = obh['weather'][0]['icon']

# Define nicknames and select a random one
nick = ["๐“พ"]
import random
niktxt = random.choice(nick)

# Define bio messages and select a random one
bio = ["The clear sky was always cool ๐Ÿ’”๐Ÿ—ฝ | {} {}ยฐC".format(obhicon[icon], weather)]
biotxt = random.choice(bio)

# Update profile and status
client(functions.account.UpdateProfileRequest(
first_name=niktxt,
about=biotxt
))
client(functions.account.UpdateStatusRequest(
offline=False
))

๐Ÿ“Ž Bu ham xuddi shu narsa Faqat python dasturlash tilida ekan.
๐Ÿ–‡ Manba:
@DevUserBotOwner
๐Ÿ˜ Hozir https://www.w3schools.com/ web-sayti scriptini chopyapman

๐Ÿ˜ Tugatsam Scriptini baham ko'rama
๐Ÿ˜ฑ3
@IslomiyMaruzalar_Robot tuzib chiqamizmi? ๐Ÿ˜Š
๐Ÿ”ฅ2
@iMandatBot sozlandi ๐Ÿš€

Qande chiqibdi
#coment
โคโ€๐Ÿ”ฅ1
Forwarded from Kenn Group | ะ ะฐะทะดะฐั‡ะฐ ะบั€ะธะฟั‚ะพะฒะฐะปัŽั‚ั‹
๐Ÿ’ธ ะŸะพะปัŒะทะพะฒะฐั‚ะตะปัŒ ะฒั‹ะฒะตะป 26โ‚ฝ ั‡ะตั€ะตะท ๐Ÿ…ฟ๏ธ PAYEER
Kamdan kam odam bunday qloledi ๐Ÿคฃ๐Ÿคฃ