bash -- 70x32
$mv source_file destination_folder/ $mv command_list.txt commands/commands shutdown -c unzip images.zip
mv source_file destination_folder/ mv command_list.txt commands/commands shutdown -c unzip images.zip
// Создать объект XMLHttpRequest
const xhttp = new XMLHttpRequest();
// Определить функцию обратного вызова
xhttp.onload = function() {
// Здесь вы можете использовать данные
}
// Отправить запрос
xhttp.open("GET", "ajax_info.txt");
xhttp.send();
text
use Telegram\Bot\Api;
include "widget_telegram.php";
$telegram = new Api('BOT TOKEN');
$response = $telegram->sendMessage([
'chat_id' => 'CHAT_ID',
'text' => 'Привет, я бот!',
'reply_markup' = array(
'keyboard' => array(array('Связаться с оператором')),
'one_time_keyboard' => true,
'resize_keyboard' => true
);
]);
$messageId = $response->getMessageId();
text
.code_block {
padding: 0px;
display: block;
position: relative;
}
.code_block code {
color: #000666;
font-family: Consolas, Menlo, Monaco, monospace;
line-height: 1.5rem;
min-width: 100%;
word-break: normal;
border: 1px solid #d9d9d9;
border-radius: 3px;
padding-top: 15px !important;
}
.code_block code::before {
background: #28b077;
color: #f8f8f8;
font-family: "Font Awesome 6 Pro";
content: "\e322";
left: 0;
padding: 3px 0;
position: absolute;
text-indent: 15px;
top: 0;
width: 100%;
border-radius: 3px 3px 0 0;
}
.code_block code::after {
color: #f8f8f8;
font-family: Consolas, Menlo, Monaco, monospace;
content: "CSS";
left: 0;
padding: 3px 0;
position: absolute;
text-indent: 40px;
top: 0;
}