infotuit | Unsorted

Telegram-канал infotuit - 💡Yosh Dasturchi ️️️️️️️️

-

I miss you, my hometown, DENOV❤️ Sog'indim seni ona shahrim DENOV❤️ Creator: @GaffarovShoxrux ✔️

Subscribe to a channel

💡Yosh Dasturchi ️️️️️️️️

/channel/infotuit/s/3

kanalga stores quyish uncha yoqmadi

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

1.600. rubl bor sotiladi

@GaffarovShoxrux

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

Shu botni sotsam qanchaga ketadi ekan?

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

function tekshirishJismoniy($raqam) {
$regex = '/^(\d{2})\s([A-Z])\s(\d{3})\s([A-Z]{2})$/';
if (preg_match($regex, $raqam, $matches)) {
echo "Avtomobil raqami to'g'ri formatda.\n";
echo "Davlat: " . $matches[1] . "\n";
echo "Kod: " . $matches[2] . "\n";
echo "Raqam: " . $matches[3] . "\n";
echo "Harflar: " . $matches[4] . "\n";
} else {
echo "Avtomobil raqami noto'g'ri formatda.";
}
}

$raqam1 = "01 A 123 AA";
$raqam2 = "99 B 987 ZZ";
$raqam3 = "123456";

tekshirishJismoniy($raqam1);
tekshirishJismoniy($raqam2);
tekshirishJismoniy($raqam3);

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

https://shorturl.uz/developers

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

@photolabme_bot sotladi

A'zolari: 39583
Kunlik qushladiganlar: 150+ 200+

Support: @gaffarovsh

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

@Full_downloadbot sotiladi!

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

https://rapidapi.com/uzapishop/api/instagram-downloader-download-instagram-videos-stories1

Instagram video, rasm , stores yuklaydigan api

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

Api keyni shorturl.uz sayti orqali olasiz!

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

<?php
header('Content-Type: application/json');

if($_GET["search"]){
$search = $_GET["search"];
$get = file_get_contents("https://youtube.com/search?q=" . urlencode("$search music"));
$pattrn = '/\\,{"videoRenderer":{"videoId":"(.*?)","thumbnail":{"thumbnails":\[{"url":"(.*?)"\\b(.*?)\\"title":{"runs":\[{"text":"(.*?)\"\\b(.*?)\\,"simpleText":"(.*?)"},"viewCountText":{"simpleText":"(.*?)"}/';
preg_match_all($pattrn, $get, $json);
function unescapeUTF8EscapeSeq($str)
{
return preg_replace_callback(
"/\\\u([0-9a-f]{4})/i",
create_function(
'$matches',
'return html_entity_decode(\'&#x\'.$matches[1].\';\', ENT_QUOTES, \'UTF-8\');'
),
$str
);
}
$array['ok'] = true;
for ($i = 1; $i <= count($json[1]) - 1; $i++) {
if($i == 13){break;}
$time1 = $json[6][$i];
$tim1= str_replace(':','', $time1);
$bir= explode(":",$time1)[1];
if(1059>$tim1){
$title = str_replace('",', null, preg_replace('#[0-9@=|()!-/"\}]]#', null, unescapeUTF8EscapeSeq($json[4][$i])));
$url = $json[1][$i];
$image = str_replace('",', null, $json[2][$i]);
$time = $json[6][$i];
$view = str_replace("weergaven", "views", $json[7][$i]);
$text .= "$title\n";
}}
echo $text;
}



@infotuit Youtube Search api kodi

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

eski kodlar topib oldim

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

kerakli ma'lumotlar kup kimgadur foydasi tegadi degan umida man

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

🆘
Avto Jarima24 telegram bot O'zbekistonda birinchi raqamli yagona!

Endi siz jarimalaringiz bor yo'qligini tekshirish uchun har xil ilovalar yoki saytlarga kirib vaqtingizni sariflashingizga xojat yo'q! Jarima24 telegram bot orqali siz har qanday jarimalaringizni ko'rib borishingiz mumkin. Botga kirib shunchaki start tugmasini bosing va barcha jarimalaringizni kuzatib boring 🥳

Manzil: @radar_24bot

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

<?php
function apiRequestWebhook($method, $parameters) {
if (!is_string($method)) {
error_log("Method name must be a string\n");
return false;
}
if (!$parameters) {
$parameters = array();
} else if (!is_array($parameters)) {
error_log("Parameters must be an array\n");
return false;
}
$parameters["method"] = $method;
header("Content-Type: application/json; charset=utf-8");
echo json_encode($parameters);
return true;
}
function exec_curl_request($handle) {
$response = curl_exec($handle);
if ($response === false) {
$errno = curl_errno($handle);
$error = curl_error($handle);
error_log("Curl returned error $errno: $error\n");
curl_close($handle);
return false;
}
$http_code = intval(curl_getinfo($handle, CURLINFO_HTTP_CODE));
curl_close($handle);
if ($http_code >= 500) {
// do not wat to DDOS server if something goes wrong
sleep(10);
return false;
} else if ($http_code != 200) {
$response = json_decode($response, true);
error_log("Request has failed with error {$response['error_code']}: {$response['description']}\n");
if ($http_code == 401) {
//throw new Exception('Invalid access token provided');
}
return false;
} else {
$response = json_decode($response, true);
if (isset($response['description'])) {
error_log("Request was successfull: {$response['description']}\n");
}
$response = $response['result'];
}
return $response;
}
function apiRequest($method, $parameters) {
if (!is_string($method)) {
error_log("Method name must be a string\n");
return false;
}
if (!$parameters) {
$parameters = array();
} else if (!is_array($parameters)) {
error_log("Parameters must be an array\n");
return false;
}
foreach ($parameters as $key => &$val) {
// encoding to JSON array parameters, for example reply_markup
if (!is_numeric($val) && !is_string($val)) {
$val = json_encode($val);
}
}
$url = API_URL.$method.'?'.http_build_query($parameters);
$handle = curl_init($url);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($handle, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($handle, CURLOPT_TIMEOUT, 60);
return exec_curl_request($handle);
}
function apiRequestJson($method, $parameters) {
if (!is_string($method)) {
error_log("Method name must be a string\n");
return false;
}
if (!$parameters) {
$parameters = array();
} else if (!is_array($parameters)) {
error_log("Parameters must be an array\n");
return false;
}
$parameters["method"] = $method;
$handle = curl_init(API_URL);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($handle, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($handle, CURLOPT_TIMEOUT, 60);
curl_setopt($handle, CURLOPT_POSTFIELDS, json_encode($parameters));
curl_setopt($handle, CURLOPT_HTTPHEADER, array("Content-Type: application/json"));
return exec_curl_request($handle);
}
?>

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

⚡Bot ChatGPT veb-sayti bilan bir xil modeldan foydalanadi:

Bu yerda siz turli xil tabiiy til vazifalarini bajarishingiz mumkin, masalan:

1. Kopirayter va qayta yozish
2. Kodni yozish va tahrirlash
3. Har qanday tildan tarjima
4. Strukturasiz matnni tahlil qilish va umumlashtirish
5. Suhbat


Siz istalgan tilda savollar berishingiz mumkin.

Manzil:
@Safiya_aiBot

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

/channel/infotuit?boost

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

@photolabme_bot-Statistikasi.
---------------------
Foydalanuvchilar:

🔴Avval: 42922

🟢Bugun: 50

📊Jami: 42972

Effekt berilgan rasmlar soni: 172932

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

function tekshirishYuridik($raqam) {
$regex = '/^(\d{2})\s(\d{3})\s([A-Z]{3})$/';
if (preg_match($regex, $raqam, $matches)) {
echo "Avtomobil raqami to'g'ri formatda.\n";
echo "Davlat: " . $matches[1] . "\n";
echo "Raqam: " . $matches[2] . "\n";
echo "Harflar: " . $matches[3] . "\n";
} else {
echo "Avtomobil raqami noto'g'ri formatda.";
}
}

$raqam1 = "01 123 ABC";
$raqam2 = "99 987 XYZ";
$raqam3 = "123456";

tekshirishYuridik($raqam1);
tekshirishYuridik($raqam2);
tekshirishYuridik($raqam3);

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

<?php
ob_start();
error_reporting(0);
header("Content-Type: application/json; charset=UTF-8");

$link = $_GET['url'];


$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://shorturl.uz/api/url/add");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(["url" => $link]));
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer Api key",
"Content-Type: application/json"
]);

$response = curl_exec($ch);
curl_close($ch);

$object = json_decode($response);

if($object && isset($object->shorturl)){
echo $response;
}

echo 'xato';

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

$userAgent = $_SERVER['HTTP_USER_AGENT'];

if (strpos($userAgent, 'Android') !== false) {
preg_match('/Android [\d\.]+; ([^\)]+)/', $userAgent, $matches);
if (isset($matches[1])) {
$androidVersion = $matches[1];
echo "Android Version: $androidVersion<br>";
}
}

if (strpos($userAgent, 'Mobile') !== false) {
preg_match('/\((.*?)\)/', $userAgent, $matches);
if (isset($matches[1])) {
$phoneModel = $matches[1];
echo "Phone Model: $phoneModel<br>";
}
}

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

<?php

function breakcaptcha($url) {

$im = imagecreatefrompng('http://'.$url);

$start_x = 26;
$start_y = 7;

$letter_w = 9;
$letter_h = 10;

$letter_num = 5;

$pos = array();

if ($handle = opendir('letters/')) {

while (false !== ($file = readdir($handle))) {

if (substr($file,strlen($file)-4,4) == '.png') {

$file = str_replace('.png','',$file);
array_push($pos,$file);
}
}

closedir($handle);
}

$code = '';


for ($i = 0; $i < $letter_num; $i ++) {

$img = imagecreatetruecolor ($letter_w,$letter_h);
imagecopy($img,$im,0,0,($start_x+($letter_w*$i)),$start_y,$letter_w,$letter_h);
imagepng($img,'tmp/'.$i.'.png');
imagedestroy($img);

$filename = 'tmp/'.$i.'.png';
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
fclose($handle);

for($a = 0; $a < count($pos); $a++) {

$filename = 'letters/'.$pos[$a].'.png';
$handle = fopen($filename, "r");
$contents2 = fread($handle, filesize($filename));
fclose($handle);

if ($contents2==$contents) {

if ($pos[$a] == 'dot') {
$code .= '.';
}
else {
$code .= $pos[$a];
}
$a = count($pos)+2;

}

elseif ($a == (count($pos)-1)) {

@copy('tmp/'.$i.'.png','unknown/'.rand(0,10000000).'.png');
$code .= '?';

}
}
}

return $code;

}

?>

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

https://rapidapi.com/uzapishop/api/photolab-me2/


photolab.me api

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

Bilaman juda kup url qisqartirib beradigan saytlar kup lekin xammasida ma'lum bir cheklovlar bor

shorturl.uz saytida barcha cheklovlar olib tashlandi

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

<?php
ob_start();
error_reporting(0);
header("Content-Type: application/json; charset=UTF-8");

$link = $_GET['url'];


$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://shorturl.uz/api/url/add");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(["url" => $link]));
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer Api key",
"Content-Type: application/json"
]);

$response = curl_exec($ch);
curl_close($ch);

$object = json_decode($response);

if($object && isset($object->shorturl)){
echo $response;
}

echo 'xato';

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

xost bot kodi bir vaqtlar @tuit_rubot ochgan edim shuni kodi

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

<?php



$message = $update->message;
$chat_id = $message->chat->id;
$text = $message->text;
$cid = $message->chat->id;
$uid = $message->from->id;
$mid = $message->message_id;
$data = $message->contact;
$nomer = $message->contact->phone_number;
$name = $message->contact->first_name;
$admin = "523178386";

$file_name=$doc['file']['name'];
$doc=$message->document;
$doc_id=$doc->file_id;
$doc1221=$doc->file_name;
if(isset($message->document)){
$url = json_decode(file_get_contents('https://api.telegram.org/bottoken/getFile?file_id='.$doc_id),true);
$path=$url['result']['file_path'];
$file = 'https://api.telegram.org/file/bot'.API_KEY.'/'.$path;
$type = strtolower(strrchr($file,'.'));
$okey = file_put_contents("telegram/$doc1221.zip",file_get_contents($file));


$file_name = "url$doc1221.zip";
$ftp_server = 'xost';
$ftp_port = 21;
$ftp_file = "Telegram/$doc1221";
$ftp_user_name = "$login1";
$ftp_user_pass = "$pass1";


if($okey){
$ftp = ftp_connect($ftp_server, $ftp_port, 20);
ftp_login($ftp, $ftp_user_name, $ftp_user_pass);
ftp_pasv($ftp, true);

if(!ftp_put($ftp, $ftp_file, $file_name, FTP_BINARY)){
}}
ftp_close($ftp);
if($okey){

bot('sendMessage',[
'chat_id'=>$chat_id,
'text'=>" *Fayl yuklab olindi.... *",
'parse_mode'=>markdown,
]);
unlink("$doc1221.zip");
}else{
bot('sendMessage',[
'chat_id'=>$cid,
'text'=>"Xatolik #1. Iltimos shu xabarni @YoshTexnik_uz ga yuboring!",
'parse_mode'=>markdown,
]);
}
}

if($text == "/98"){
bot('sendMessage',[
'chat_id'=>$cid,
'text'=>" *Fayl yuklab olindi.... *",
'parse_mode'=>markdown,
]);
}

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

https://github.com/snakers4/silero-models

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

https://nbu.uz/uz/exchange-rates/json/

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

@INFOTUIT

Читать полностью…

💡Yosh Dasturchi ️️️️️️️️

@MemTechuz foydali

Читать полностью…
Subscribe to a channel