Posts

Showing posts from March, 2024
Cartoon Dancing
const TelegramBot = require('node-telegram-bot-api'); // Replace 'YOUR_TELEGRAM_BOT_TOKEN' with your actual bot token const bot = new TelegramBot('YOUR_TELEGRAM_BOT_TOKEN', { polling: true }); // Listen for any kind of message bot.on('message', (msg) => { const chatId = msg.chat.id; // Send a message back to the chat bot.sendMessage(chatId, 'Hello, you said: ' + msg.text); });
Wall Clock
Manuj Simple Clock