⎙ Coder Net
119 subscribers
2 photos
2 files
2 links
➡️ #CoderNet kanaliga xush kelibsiz!

🌐 Web-sayt kodlari
👨‍💻 Tarqalmagan API kodlar
🖥️ Kompyuter savodhonligi
🐘 PHP bot kodlari
🐍 Python bot kodlar
📤 Kerakli ilovalar

Dasturchi👨‍💻
@bilimli_yigit

Spamlar uchun🤖
@Bilimli_Yigit_Bot
Download Telegram
Channel created
bismillah 08.05.2025

😮‍💨 Assalomu Alaykum «⎙ Coder Net» kanali oʻz ish faoliyatini boshlaydi!

😑 Reaksiya bosib qoʻllab tursalaring nasib bu kanal ham koʻtariladi!
Please open Telegram to view this post
VIEW IN TELEGRAM
8👍3🔥3🥰1🖕1
<?php
header('Content-Type: application/json');

$rand = json_decode(file_get_contents("https://en.wikipedia.org/api/rest_v1/page/random/summary"), true);

echo json_encode([
"title" => $rand["title"],
"description" => $rand["extract"],
"url" => $rand["content_urls"]["desktop"]["page"]
]);




💙 Vikepedia tasodifiy maqola api.
😑 Dasturchi: @bilimli_yigit
😑 Manba kanal: @iCoder_Net
Please open Telegram to view this post
VIEW IN TELEGRAM
5🔥2
<?php
header('Content-Type: application/json');

$url = "https://cbu.uz/uz/arkhiv-kursov-valyut/json/";

$response = file_get_contents($url);

if ($response === FALSE) {
echo json_encode([
"success" => false,
"message" => "Valyuta maʼlumotlarini olishda xatolik yuz berdi."
]);
exit;
}

$data = json_decode($response, true);

$filtered = [];
foreach ($data as $currency) {
$code = $currency['Ccy'];
$filtered[$code] = [
'valyuta' => $currency['CcyNm_UZ'],
'kurs' => $currency['Rate'],
'sana' => $currency['Date']
];
}

echo json_encode([
"success" => true,
"data" => $filtered
], JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);


🖤 Manba: @iCoder_Net
32🍾111
mengaliyev.html
7.8 KB
🌟 https://m6221.myxvest1.ru/Mengaliyev/index.html kodi

😑Foydalanilgan texnologiyalar: HTML, CSS, JS

😑 Dasturchi: @bilimli_yigit
😑 Manba kanal: @iCoder_Net

😑 Reaksiya va Tarqatib qoʻyamiz
Please open Telegram to view this post
VIEW IN TELEGRAM
3👍1💯111
@TopHamyonBot'dan olingan api kalit orqali ishlaydi!

🎁 Dasturchi: @bilimli_yigit
🎁 Manba: @iCoder_Net

🎁 Tarqatib qoʻyamiz avval bizda keyin boshqalarda!

if($data == "click") {
delete();
sms($cid2, "<b>💵 Balansizni necha so'mga to'ldirmoqchisiz?
📰 Minimal miqdor: 1000 so'm</b>", $back);
file_put_contents("step/$cid2.step","click");
}

//dasturchi: @bilimli_yigit

if ($step == "click" and is_numeric($text)) {
if ($text >= 1000 and $text <= 10000000) {
$shop_id = "DUKON_ID";
$shop_key = "API_KALIT";
$postData = [
"shop_id" => $shop_id,
"shop_key" => $shop_key,
"amount" => number_format($text, 2, '.', '')
];
$ch = curl_init("https://click.bigsaver.ru/api/create_invoice");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($postData));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Content-Type: application/json'
]);
$response = curl_exec($ch);
curl_close($ch);
$fget = json_decode($response);
if (isset($fget->pay_url)) {
bot('sendMessage', [
'chat_id' => $cid,
'text' => "<b>🔥 Toʻlov miqdori qabul qilindi.

Endi esa pastdagi tugma orqali toʻlov qiling va toʻlovingizni tasdiqlang!</b>",
'parse_mode' => 'html',
'reply_markup' => json_encode([
'inline_keyboard' => [
[['text' => "💰Toʻlovni amalga oshirish", 'url' => $fget->pay_url]],
[['text' => " Tasdiqlash", 'callback_data' => "jonime={$fget->order_id}"]],
]
])
]);
} else {
sms($cid, "<b>➡️ To‘lov xavolasi yaratishda xatolik</b></b>", $back);
}
} else {
sms($cid, "<b>⚠️ Toʻlov miqdori notoʻgʻri kiritildi!

⬇️ Minimal toʻlov miqdori: 1000 soʻm

🔢 Boshqa miqdor kiriting.</b>", $back);
}
}


if (stripos($data, "jonime=") !== false) {
$_order_ = explode("=", $data)[1];
if (mb_stripos(file_get_contents("hamyonpays.txt"), $_order_) !== false) {
bot('answerCallbackQuery', [
'callback_query_id' => $qid,
'text' => "⚠️ To‘lov bajarilgan.",
'show_alert' => true,
]);
} else {
$response = file_get_contents("https://click.bigsaver.ru/api/check_payment/$_order_");
$fget = json_decode($response);
if (isset($fget->status) && $fget->status == "paid") {
$amount = $fget->amount;
$kabinet = mysqli_fetch_assoc(mysqli_query($connect, "SELECT * FROM kabinet WHERE user_id = $cid2"));
$a = $kabinet['pul'] + $amount;
$b = $kabinet['pul2'] + $amount;
mysqli_query($connect, "UPDATE kabinet SET pul = '$a' WHERE user_id = $cid2");
mysqli_query($connect, "UPDATE kabinet SET pul2 = '$b' WHERE user_id = $cid2");
file_put_contents("hamyonpays.txt", "\n$_order_", FILE_APPEND);
delete();
sms($cid2, "<b> Hisobingizga {$amount} so'm qo'shildi

@$bot - biznesingiz hamkori!</b>", $menyu);
} else {
bot('answerCallbackQuery', [
'callback_query_id' => $qid,
'text' => "⚠️ To‘lov bajarilmagan.",
'show_alert' => true,
]);
}
}
}
Please open Telegram to view this post
VIEW IN TELEGRAM
4421
fact.php
177 B
#api #kod

Kichkinagina sovgʻacha!

👹 Tasodifiy qiziqarli factlar chiqaruvchi api zerikishdan!

😄 Manba kanal: @iCoder_Net
🔡🔡🔡🔡🔡🔡🔡🔡🔡: @bilimli_yigit
Please open Telegram to view this post
VIEW IN TELEGRAM
31
❤️‍🔥 OpenBudget loyihasi yana boshlandi! Siz hali ham ruchnoy botlar ochib qiynalib yuribsizmi endi buning yechimi bor!

🆕 OpenBudget avto apisi sotiladi jsonli api! realni oladiganlar
@yurakda_qolgan yozsin kelishamiz!
👍11
Please open Telegram to view this post
VIEW IN TELEGRAM
53
Forwarded from 𝐖𝐞𝐛𝐂𝐨𝐝𝐞𝐫 𝐓𝐞𝐚𝐦 </> (🖤꯭|꯭•|꯭ αтχαм ѕυяχαηѕкє ꯭|•꯭|꯭🔥꯭|꯭•)
@AdxamStarsBot vanihoyat tayyor!

Afzalliklari: Avtomatik stars olish, Chegirma olish, Avto toʻlovlardan foydalanish, Admin panelida Botni oʻchirib/yoqish, taklif narxini oʻzgartirish, pul qoʻshish/ayirish, chegirma qoʻshish/ayirish, Banlash/unban, 3 xil xabar yuborish va hokazo.


💸 Narxi: 30$ (360.000 so‘m)


Aloqa:
@mengaliyev_02
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from 𝐖𝐞𝐛𝐂𝐨𝐝𝐞𝐫 𝐓𝐞𝐚𝐦 </> (🖤꯭|꯭•|꯭ αтχαм ѕυяχαηѕкє ꯭|•꯭|꯭🔥꯭|꯭•)
🖤꯭|꯭•|꯭ αтχαм ѕυяχαηѕкє ꯭|•꯭|꯭🔥꯭|꯭•
Photo
Ovoradigan joyi lkn juda ixcham va mukammal tuzilgan! Barcha aylanmalarniyam hisob kitob qiladi!

Xoxlasez kodi or ochib beriladi narx 2 lasigayam 1 xil!
Please open Telegram to view this post
VIEW IN TELEGRAM