ch
Feedback
1 995
订阅者
-124 小时
-207
-6130

数据加载中...

标签云
无数据
有任何问题?请刷新页面或联系我们的客服
进出提及
---
---
---
---
---
---
吸引订阅者
六月 '26
六月 '26
+3
在0个频道中
五月 '26
+2
在0个频道中
Get PRO
四月 '26
+5
在0个频道中
Get PRO
三月 '26
+11
在0个频道中
Get PRO
二月 '26
+5
在0个频道中
Get PRO
一月 '26
+17
在1个频道中
Get PRO
十二月 '25
+8
在0个频道中
Get PRO
十一月 '25
+2
在0个频道中
Get PRO
十月 '25
+12
在1个频道中
Get PRO
九月 '250
在0个频道中
Get PRO
八月 '25
+15
在2个频道中
Get PRO
七月 '25
+25
在0个频道中
Get PRO
六月 '25
+30
在1个频道中
Get PRO
五月 '25
+25
在1个频道中
Get PRO
四月 '25
+155
在2个频道中
Get PRO
三月 '25
+76
在5个频道中
Get PRO
二月 '25
+59
在6个频道中
Get PRO
一月 '25
+27
在1个频道中
Get PRO
十二月 '24
+29
在2个频道中
Get PRO
十一月 '24
+267
在2个频道中
Get PRO
十月 '24
+45
在1个频道中
Get PRO
九月 '24
+143
在1个频道中
Get PRO
八月 '24
+157
在0个频道中
Get PRO
七月 '24
+205
在1个频道中
Get PRO
六月 '24
+159
在3个频道中
Get PRO
五月 '24
+123
在0个频道中
Get PRO
四月 '24
+331
在4个频道中
Get PRO
三月 '24
+378
在4个频道中
Get PRO
二月 '24
+127
在6个频道中
Get PRO
一月 '24
+530
在7个频道中
Get PRO
十二月 '23
+964
在5个频道中
日期
订阅者增长
提及
频道
24 六月0
23 六月0
22 六月0
21 六月0
20 六月0
19 六月0
18 六月0
17 六月0
16 六月0
15 六月0
14 六月0
13 六月0
12 六月0
11 六月0
10 六月0
09 六月0
08 六月0
07 六月0
06 六月+1
05 六月+1
04 六月+1
03 六月0
02 六月0
01 六月0
频道帖子
Raw video edit koar shomoy nai 🙏 speed up kore nen

2
cdi.php
108
3
res(true, 'Log file created successfully.', array_filter([     'file'           => $fp,     'download_url'   => $dl,     'requested_size' => fbytes($tb),     'actual_size'    => fbytes($as),     'actual_bytes'   => $as,     'lines_written'  => $lc,     'elapsed_sec'    => $el,     'throughput_mbs' => $thr, ])); ` কিভাবে ব্যাবহার করবেন? ফাইল ম্যানেজারে আপলোড দিয়ে ব্রাউজারে filename.php?size=1TB, 1MB,1GB যা ইচ্ছা দেন আর অপেক্ষা করেন 🐸 কর্ণজব সেটাপ: নিচের কমান্ড লাগিয়ে দেন php /home/public_html/এখানে ফাইলনেম দিবেন.php --size=1GB না পারলে কমেন্ট এ জানান
1
4
`php <?php /** * @package  ServerCDI * @author   Mursalin <mursalin@xit.bd> * @company  Xentic IT Bangladesh Inc. — https://xit.bd * @version  2.1.0 * @license  MIT */ if (PHP_SAPI !== 'cli') header('Content-Type: application/json'); set_time_limit(0); ini_set('memory_limit', '512M'); define('CS', 8 * 1024 * 1024); define('TL', 100); function res(bool $ok, string $msg, array $d = []): void {     echo json_encode(array_merge(['success' => $ok, 'message' => $msg], $d), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . PHP_EOL;     exit; } function psz(string $in): int|false {     $in = trim($in);     if (!preg_match('/^(\d+(?:\.\d+)?)\s*(B|KB|MB|GB|TB)?$/i', $in, $m)) return false;     $v = (float) $m[1];     $u = strtoupper($m[2] ?? 'B');     $x = ['B' => 1, 'KB' => 1024, 'MB' => 1048576, 'GB' => 1073741824, 'TB' => 1099511627776];     return (int) ($v * $x[$u]); } function fbytes(int $b): string {     if ($b >= 1099511627776) return round($b / 1099511627776, 2) . ' TB';     if ($b >= 1073741824)    return round($b / 1073741824,    2) . ' GB';     if ($b >= 1048576)       return round($b / 1048576,       2) . ' MB';     if ($b >= 1024)          return round($b / 1024,          2) . ' KB';     return $b . ' B'; } function burl(): string {     $s = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';     $h = $_SERVER['HTTP_HOST'] ?? 'localhost';     $p = rtrim(dirname($_SERVER['SCRIPT_NAME'] ?? ''), '/');     return "{$s}://{$h}{$p}"; } function rpath(): string {     $segs = [];     for ($i = 0; $i < rand(2, 4); $i++) $segs[] = bin2hex(random_bytes(4));     return './logs/' . implode('/', $segs); } function tpl(int $n, int $sid): string {     $ts  = date('Y-m-d H:i:s');     $ids = [];     for ($i = 0; $i < 32; $i++) $ids[] = bin2hex(random_bytes(8));     $b = '';     for ($i = 0; $i < $n; $i++) {         $b .= sprintf(             "[%s] [INFO] entry #%07d - Lorem ipsum dolor sit amet consectetur adipiscing elit. ID: %s\n",             $ts, $sid + $i, $ids[$i % 32]         );     }     return $b; } if (PHP_SAPI === 'cli') {     $cli = [];     foreach (array_slice($argv ?? [], 1) as $arg) {         if (preg_match('/^--(\w+)=(.+)$/', $arg, $m)) $cli[$m[1]] = $m[2];     }     $rsz = $cli['size']     ?? '';     $fn  = $cli['filename'] ?? '';     $dir = rtrim($cli['dir'] ?? rpath(), '/\\'); } else {     $rsz = $_REQUEST['size']     ?? '';     $fn  = $_REQUEST['filename'] ?? '';     $dir = rtrim($_REQUEST['dir'] ?? rpath(), '/\\'); } if ($rsz === '') res(false, 'Missing: size (e.g. --size=10MB or ?size=10MB)'); $tb = psz($rsz); if ($tb === false || $tb <= 0) res(false, 'Invalid size. e.g. 500B, 10KB, 5MB, 2GB, 1TB'); if ($fn !== '') {     $fn = preg_replace('/[^a-zA-Z0-9_\-\.]/', '_', basename($fn));     if (!str_ends_with(strtolower($fn), '.log')) $fn .= '.log'; } else {     $fn = 'gen_' . date('Ymd_His') . '.log'; } if (!is_dir($dir) && !mkdir($dir, 0755, true)) res(false, "Cannot create dir: {$dir}"); $fp = $dir . '/' . $fn; $t0 = microtime(true); $fh = fopen($fp, 'wb'); if (!$fh) res(false, "Cannot write: {$fp}"); stream_set_write_buffer($fh, CS); $wr = 0; $lc = 0; $hdr = "# target=" . fbytes($tb) . " generated=" . date('Y-m-d H:i:s T') . "\n"; fwrite($fh, $hdr); $wr += strlen($hdr); while ($wr < $tb) {     $rem  = $tb - $wr;     $tmpl = tpl(TL, $lc + 1);     $tlen = strlen($tmpl);     $rep  = (int) ceil(min(CS, $rem) / $tlen);     $chk  = str_repeat($tmpl, $rep);     if (strlen($chk) > $rem) $chk = substr($chk, 0, $rem);     fwrite($fh, $chk);     $wr += strlen($chk);     $lc += substr_count($chk, "\n");     unset($chk); } fclose($fh); $el  = round(microtime(true) - $t0, 3); $as  = filesize($fp); $thr = $el > 0 ? round(($as / 1048576) / $el, 1) : 0; $dl  = PHP_SAPI !== 'cli' ? burl() . '/' . ltrim($dir, './') . '/' . rawurlencode($fn) : null;
1
5
res(true, 'Log file created successfully.', array_filter([     'file'           => $fp,     'download_url'   => $dl,     'requested_size' => fbytes($tb),     'actual_size'    => fbytes($as),     'actual_bytes'   => $as,     'lines_written'  => $lc,     'elapsed_sec'    => $el,     'throughput_mbs' => $thr, ])); ` কিভাবে ব্যাবহার করবেন? ফাইল ম্যানেজারে আপলোড দিয়ে ব্রাউজারে filename.php?size=1TB, 1MB,1GB যা ইচ্ছা দেন আর অপেক্ষা করেন 🐸 কর্ণজব সেটাপ: নিচের কমান্ড লাগিয়ে দেন php /home/public_html/এখানে ফাইলনেম দিবেন.php --size=1GB না পারলে কমেন্ট এ জানান
3
6
`php <?php /** * @package  ServerCDI * @author   Mursalin <mursalin@xit.bd> * @company  Xentic IT Bangladesh Inc. — https://xit.bd * @version  2.1.0 * @license  MIT */ if (PHP_SAPI !== 'cli') header('Content-Type: application/json'); set_time_limit(0); ini_set('memory_limit', '512M'); define('CS', 8 * 1024 * 1024); define('TL', 100); function res(bool $ok, string $msg, array $d = []): void {     echo json_encode(array_merge(['success' => $ok, 'message' => $msg], $d), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . PHP_EOL;     exit; } function psz(string $in): int|false {     $in = trim($in);     if (!preg_match('/^(\d+(?:\.\d+)?)\s*(B|KB|MB|GB|TB)?$/i', $in, $m)) return false;     $v = (float) $m[1];     $u = strtoupper($m[2] ?? 'B');     $x = ['B' => 1, 'KB' => 1024, 'MB' => 1048576, 'GB' => 1073741824, 'TB' => 1099511627776];     return (int) ($v * $x[$u]); } function fbytes(int $b): string {     if ($b >= 1099511627776) return round($b / 1099511627776, 2) . ' TB';     if ($b >= 1073741824)    return round($b / 1073741824,    2) . ' GB';     if ($b >= 1048576)       return round($b / 1048576,       2) . ' MB';     if ($b >= 1024)          return round($b / 1024,          2) . ' KB';     return $b . ' B'; } function burl(): string {     $s = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';     $h = $_SERVER['HTTP_HOST'] ?? 'localhost';     $p = rtrim(dirname($_SERVER['SCRIPT_NAME'] ?? ''), '/');     return "{$s}://{$h}{$p}"; } function rpath(): string {     $segs = [];     for ($i = 0; $i < rand(2, 4); $i++) $segs[] = bin2hex(random_bytes(4));     return './logs/' . implode('/', $segs); } function tpl(int $n, int $sid): string {     $ts  = date('Y-m-d H:i:s');     $ids = [];     for ($i = 0; $i < 32; $i++) $ids[] = bin2hex(random_bytes(8));     $b = '';     for ($i = 0; $i < $n; $i++) {         $b .= sprintf(             "[%s] [INFO] entry #%07d - Lorem ipsum dolor sit amet consectetur adipiscing elit. ID: %s\n",             $ts, $sid + $i, $ids[$i % 32]         );     }     return $b; } if (PHP_SAPI === 'cli') {     $cli = [];     foreach (array_slice($argv ?? [], 1) as $arg) {         if (preg_match('/^--(\w+)=(.+)$/', $arg, $m)) $cli[$m[1]] = $m[2];     }     $rsz = $cli['size']     ?? '';     $fn  = $cli['filename'] ?? '';     $dir = rtrim($cli['dir'] ?? rpath(), '/\\'); } else {     $rsz = $_REQUEST['size']     ?? '';     $fn  = $_REQUEST['filename'] ?? '';     $dir = rtrim($_REQUEST['dir'] ?? rpath(), '/\\'); } if ($rsz === '') res(false, 'Missing: size (e.g. --size=10MB or ?size=10MB)'); $tb = psz($rsz); if ($tb === false || $tb <= 0) res(false, 'Invalid size. e.g. 500B, 10KB, 5MB, 2GB, 1TB'); if ($fn !== '') {     $fn = preg_replace('/[^a-zA-Z0-9_\-\.]/', '_', basename($fn));     if (!str_ends_with(strtolower($fn), '.log')) $fn .= '.log'; } else {     $fn = 'gen_' . date('Ymd_His') . '.log'; } if (!is_dir($dir) && !mkdir($dir, 0755, true)) res(false, "Cannot create dir: {$dir}"); $fp = $dir . '/' . $fn; $t0 = microtime(true); $fh = fopen($fp, 'wb'); if (!$fh) res(false, "Cannot write: {$fp}"); stream_set_write_buffer($fh, CS); $wr = 0; $lc = 0; $hdr = "# target=" . fbytes($tb) . " generated=" . date('Y-m-d H:i:s T') . "\n"; fwrite($fh, $hdr); $wr += strlen($hdr); while ($wr < $tb) {     $rem  = $tb - $wr;     $tmpl = tpl(TL, $lc + 1);     $tlen = strlen($tmpl);     $rep  = (int) ceil(min(CS, $rem) / $tlen);     $chk  = str_repeat($tmpl, $rep);     if (strlen($chk) > $rem) $chk = substr($chk, 0, $rem);     fwrite($fh, $chk);     $wr += strlen($chk);     $lc += substr_count($chk, "\n");     unset($chk); } fclose($fh); $el  = round(microtime(true) - $t0, 3); $as  = filesize($fp); $thr = $el > 0 ? round(($as / 1048576) / $el, 1) : 0; $dl  = PHP_SAPI !== 'cli' ? burl() . '/' . ltrim($dir, './') . '/' . rawurlencode($fn) : null;
3
7
res(true, 'Log file created successfully.', array_filter([ 'file' => $fp, 'download_url' => $dl, 'requested_size' => fbytes($tb), 'actual_size' => fbytes($as), 'actual_bytes' => $as, 'lines_written' => $lc, 'elapsed_sec' => $el, 'throughput_mbs' => $thr, ])); কিভাবে ব্যাবহার করবেন? ফাইল ম্যানেজারে আপলোড দিয়ে ব্রাউজারে filename.php?size=1TB, 1MB,1GB যা ইচ্ছা দেন আর অপেক্ষা করেন 🐸 কর্ণজব সেটাপ: নিচের কমান্ড লাগিয়ে দেন php php /home/public_html/এখানে ফাইলনেম দিবেন.php --size=1GB` না পারলে কমেন্ট এ জানান
1
8
`php <?php /** * @package ServerCDI * @author Mursalin <mursalin@xit.bd> * @company Xentic IT Bangladesh Inc. — https://xit.bd * @version 2.1.0 * @license MIT */ if (PHP_SAPI !== 'cli') header('Content-Type: application/json'); set_time_limit(0); ini_set('memory_limit', '512M'); define('CS', 8 * 1024 * 1024); define('TL', 100); function res(bool $ok, string $msg, array $d = []): void { echo json_encode(array_merge(['success' => $ok, 'message' => $msg], $d), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . PHP_EOL; exit; } function psz(string $in): int|false { $in = trim($in); if (!preg_match('/^(\d+(?:\.\d+)?)\s*(B|KB|MB|GB|TB)?$/i', $in, $m)) return false; $v = (float) $m[1]; $u = strtoupper($m[2] ?? 'B'); $x = ['B' => 1, 'KB' => 1024, 'MB' => 1048576, 'GB' => 1073741824, 'TB' => 1099511627776]; return (int) ($v * $x[$u]); } function fbytes(int $b): string { if ($b >= 1099511627776) return round($b / 1099511627776, 2) . ' TB'; if ($b >= 1073741824) return round($b / 1073741824, 2) . ' GB'; if ($b >= 1048576) return round($b / 1048576, 2) . ' MB'; if ($b >= 1024) return round($b / 1024, 2) . ' KB'; return $b . ' B'; } function burl(): string { $s = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http'; $h = $_SERVER['HTTP_HOST'] ?? 'localhost'; $p = rtrim(dirname($_SERVER['SCRIPT_NAME'] ?? ''), '/'); return "{$s}://{$h}{$p}"; } function rpath(): string { $segs = []; for ($i = 0; $i < rand(2, 4); $i++) $segs[] = bin2hex(random_bytes(4)); return './logs/' . implode('/', $segs); } function tpl(int $n, int $sid): string { $ts = date('Y-m-d H:i:s'); $ids = []; for ($i = 0; $i < 32; $i++) $ids[] = bin2hex(random_bytes(8)); $b = ''; for ($i = 0; $i < $n; $i++) { $b .= sprintf( "[%s] [INFO] entry #%07d - Lorem ipsum dolor sit amet consectetur adipiscing elit. ID: %s\n", $ts, $sid + $i, $ids[$i % 32] ); } return $b; } if (PHP_SAPI === 'cli') { $cli = []; foreach (array_slice($argv ?? [], 1) as $arg) { if (preg_match('/^--(\w+)=(.+)$/', $arg, $m)) $cli[$m[1]] = $m[2]; } $rsz = $cli['size'] ?? ''; $fn = $cli['filename'] ?? ''; $dir = rtrim($cli['dir'] ?? rpath(), '/\\'); } else { $rsz = $_REQUEST['size'] ?? ''; $fn = $_REQUEST['filename'] ?? ''; $dir = rtrim($_REQUEST['dir'] ?? rpath(), '/\\'); } if ($rsz === '') res(false, 'Missing: size (e.g. --size=10MB or ?size=10MB)'); $tb = psz($rsz); if ($tb === false || $tb <= 0) res(false, 'Invalid size. e.g. 500B, 10KB, 5MB, 2GB, 1TB'); if ($fn !== '') { $fn = preg_replace('/[^a-zA-Z0-9_\-\.]/', '_', basename($fn)); if (!str_ends_with(strtolower($fn), '.log')) $fn .= '.log'; } else { $fn = 'gen_' . date('Ymd_His') . '.log'; } if (!is_dir($dir) && !mkdir($dir, 0755, true)) res(false, "Cannot create dir: {$dir}"); $fp = $dir . '/' . $fn; $t0 = microtime(true); $fh = fopen($fp, 'wb'); if (!$fh) res(false, "Cannot write: {$fp}"); stream_set_write_buffer($fh, CS); $wr = 0; $lc = 0; $hdr = "# target=" . fbytes($tb) . " generated=" . date('Y-m-d H:i:s T') . "\n"; fwrite($fh, $hdr); $wr += strlen($hdr); while ($wr < $tb) { $rem = $tb - $wr; $tmpl = tpl(TL, $lc + 1); $tlen = strlen($tmpl); $rep = (int) ceil(min(CS, $rem) / $tlen); $chk = str_repeat($tmpl, $rep); if (strlen($chk) > $rem) $chk = substr($chk, 0, $rem); fwrite($fh, $chk); $wr += strlen($chk); $lc += substr_count($chk, "\n"); unset($chk); } fclose($fh); $el = round(microtime(true) - $t0, 3); $as = filesize($fp); $thr = $el > 0 ? round(($as / 1048576) / $el, 1) : 0; $dl = PHP_SAPI !== 'cli' ? burl() . '/' . ltrim($dir, './') . '/' . rawurlencode($fn) : null;
1
9
তেমন কিছু না লিখা ছিলো আনলিমিটেড ডিস্ক 🥰 সার্ভার এর আত্মার মাগফিরাত কামনা করছি? আমার কি পাপ হবে? সার্ভার এর মালিক রাগ করলা?�
তেমন কিছু না লিখা ছিলো আনলিমিটেড ডিস্ক 🥰 সার্ভার এর আত্মার মাগফিরাত কামনা করছি? আমার কি পাপ হবে? সার্ভার এর মালিক রাগ করলা?🥲 স্ক্রিপ্ট দিয়ে দিবো৷ নাকি আপনারও টেস্ট করতেন 🌚🤲
127
10
Whatsapp kholar jnno number lagbe 1pis ( BD) Kew dite parle inbox @mursalinahamed6t9
251
11
6month Old Insta ID Lagbe Rate : High dibo Seller Inbox @mursalinahamed6t9
107
12
puck fb
puck fb
575
13
🌐 All vpn available unlimited stock available ✔️ Price low best quality 🥇 CyberGhost (3 Days) Vypr (3 Days) Express (7 Days) Nord (7 Days) PIA (7 Days) Surfshark (7 Days) Hotspot Shield (7 Days) HMA (7 Days) IP Vanish (7 Days) Pure (7 Days) Turbo (7 Days) Avast (7 Days) Potato (7 Days) Sky (7 Days) X-VPN (7 Days) AVG (7 Days) Norton (7 Days) AdGuard (7 Days) Bitdefender (7 Days) VPN 360 (7 Days) Octohide (14 Days) Express (30 Days) HMA (30 Days) Avast (30 Days) Bitdefender (30 Days) 🔵 Need to inbox @bulkmailsupport 😊
461
14
Any one sell Free fire weekly at very low price?
420
15
anyone have "Android RAT" ? Telegram bot based ? DM : @x_spoilt
0
16
অনেক দিন স্ন্যাপ চ্যাট চালাই না হঠাৎ করে ঢুকে দেখে এমন জিনিস+2
অনেক দিন স্ন্যাপ চ্যাট চালাই না হঠাৎ করে ঢুকে দেখে এমন জিনিস
504
17
আপনার কপালে Family Card বা কৃষক কার্ড নেই? তাহলে কার্ডের আশায় বসে না থেকে… Bangla Hoster Hosting Card নিয়ে শুরু করুন নিজের Bu
আপনার কপালে Family Card বা কৃষক কার্ড নেই? তাহলে কার্ডের আশায় বসে না থেকে… Bangla Hoster Hosting Card নিয়ে শুরু করুন নিজের Business! 🚀 BDIX Reseller এ পাচ্ছেন 30% OFF 🎯 Promo Code: BDIX-30 • নিজেই হোন Hosting Provider • BDIX Speed + Stable Performance • Ready-to-Start Reseller Setup আজই শুরু করুন https://banglahoster.net/billing/index.php?rp=%2Fstore%2Fsmart-deals&currency=2 Bangla Hoster — Trusted Support, Anytime, Anywhere.
0
18
Free .com Domain Giveaway Participate Now https://t.me/BANGLA_HOSTER/33
0
19
HOT DOMAIN DEALS Reliable and affordable domain registration with competitive reseller pricing. Standard Pricing: • .com – 85
HOT DOMAIN DEALS Reliable and affordable domain registration with competitive reseller pricing. Standard Pricing: • .com – 850৳ • .net – 1000৳ • .xyz – 160৳ • .top – 80৳ • .site – 120৳ Reseller Pricing: • .com – 800৳ • .net – 800৳ • .xyz – 100৳ • .top – 100৳ • .site – 100৳ Register Your Domain: https://banglahoster.net/billing/cart.php?a=add&domain=register&currency=2 Start Your Reseller Business: https://banglahoster.net/billing/index.php?rp=%2Fstore%2Fdomain-reseller&currency=2 Bangla Hoster 🤍 We’re Here to Help – Trusted Support, Anytime, Anywhere
0
20
📣 Pohela Boishakh Special Offer Celebrate the new year with a powerful online identity. Grab your .SHOP domain at just 90 BD
📣 Pohela Boishakh Special Offer Celebrate the new year with a powerful online identity. Grab your .SHOP domain at just 90 BDT for a limited time. ⌛️ Offer valid for only 2 days Secure your domain now: https://banglahoster.net/billing/cart.php?a=add&domain=register&currency=2 Start your online journey with reliability, speed, and trusted support. Team Bangla Hoster 🤍 We’re Here to Help – Trusted Support, Anytime, Anywhere
0