π GIVEAWAY ENDED
π Educative: 6 months of free access to over 70 practical courses
π Description:Discover the best learning environment to learn and retain concepts effortlessly.
π₯ Total Participants: 9
π² Selection Type: Random Selection
π Total Winners: 2
π Winners:
1. @Amr_119
2. @Anshushinde38
π Congratulations to all winners!
π Educative: 6 months of free access to over 70 practical courses
π Description:Discover the best learning environment to learn and retain concepts effortlessly.
π₯ Total Participants: 9
π² Selection Type: Random Selection
π Total Winners: 2
π Winners:
1. @Amr_119
2. @Anshushinde38
π Congratulations to all winners!
π Puter.js: Build AI Apps for FREE!
Stop paying for OpenAI APIs! Puter.js gives you AI + Cloud with ZERO cost π₯
YOU Pay: $0
No matter how many users you have!
Each User Gets FREE:
Monthly Allowance: 50,000,000 microcents ($0.50/month)
- AI Models: GPT, Claude, DeepSeek, Gemini, Grok, Mistral & more
- Cloud Storage + Database + Auth
β‘οΈ No API Keys Needed!
π― Best For:
β Simple tool bots
β Web apps
β Telegram bots
Scale infinitely at $0 cost!
π Docs: https://docs.puter.com/
Stop paying for OpenAI APIs! Puter.js gives you AI + Cloud with ZERO cost π₯
YOU Pay: $0
No matter how many users you have!
Each User Gets FREE:
Monthly Allowance: 50,000,000 microcents ($0.50/month)
- AI Models: GPT, Claude, DeepSeek, Gemini, Grok, Mistral & more
- Cloud Storage + Database + Auth
β‘οΈ No API Keys Needed!
π― Best For:
β Simple tool bots
β Web apps
β Telegram bots
Scale infinitely at $0 cost!
π Docs: https://docs.puter.com/
β€5
Weβre excited to announce that Premium Network is back with a fresh start and stronger guidelines
β¦ Safe giveaways
β¦ Useful tech tips & updates
β¦ Legit offers and promotions
Please share this with your friends and help us rebuild the community together
Please open Telegram to view this post
VIEW IN TELEGRAM
π4
π GIVEAWAY ENDED
π Canva Pro
π Description:Canva is a free-to-use online graphic design tool. Use it to create social media posts, presentations, posters, videos, logos and more.
π₯ Total Participants: 10
β‘ Selection Type: First Come First Served
π Total Winners: 10
π Winners:
1. @Dedbrain
2. @Idkwhomi
3. @Obito_X_02
4. User 6110294479
5. @FeRaRiXuBi
6. @Davex12391
7. @Mr_anonymous_0
8. @TancantDac
9. @Xavi_Rguez
10. @Zorokun_Tamilseller
π Congratulations to all winners!
π Canva Pro
π Description:Canva is a free-to-use online graphic design tool. Use it to create social media posts, presentations, posters, videos, logos and more.
π₯ Total Participants: 10
β‘ Selection Type: First Come First Served
π Total Winners: 10
π Winners:
1. @Dedbrain
2. @Idkwhomi
3. @Obito_X_02
4. User 6110294479
5. @FeRaRiXuBi
6. @Davex12391
7. @Mr_anonymous_0
8. @TancantDac
9. @Xavi_Rguez
10. @Zorokun_Tamilseller
π Congratulations to all winners!
OCR Upgraded to Mistral OCR Latest
Now using the best OCR model available - far superior to Gemini, GPT, and Claude.
β¨ Highlights:
- Much better accuracy
- Preserves formatting
- 10 requests/day
Try: Reply
Now using the best OCR model available - far superior to Gemini, GPT, and Claude.
β¨ Highlights:
- Much better accuracy
- Preserves formatting
- 10 requests/day
Try: Reply
/ocr to any imageβ€1β€βπ₯1
πΈ Support the Bot
In smart util all are paid APIs like Gpt , Claude, Perplexity, Flux , Mistral OCR costs money. Help keep Smart Util running!
For Donate use : /gift or /donate command
Every contribution helps maintain free access for everyoneπ
In smart util all are paid APIs like Gpt , Claude, Perplexity, Flux , Mistral OCR costs money. Help keep Smart Util running!
For Donate use : /gift or /donate command
Every contribution helps maintain free access for everyone
Please open Telegram to view this post
VIEW IN TELEGRAM
How to Use Colored Inline Buttons with Custom Emoji in Telethon
Requirements:
Telethon (from master branch):
Bot Requirements:
Bot owner must have Telegram Premium subscription
Requirements:
Telethon (from master branch):
pip3 uninstall telethon
pip3 install git+https://github.com/LonamiWebs/Telethon.git
Bot Requirements:
Bot owner must have Telegram Premium subscription
β€5π₯1
Smart Dev
How to Use Colored Inline Buttons with Custom Emoji in Telethon Requirements: Telethon (from master branch): pip3 uninstall telethon pip3 install git+https://github.com/LonamiWebs/Telethon.git Bot Requirements: Bot owner must have Telegram Premium subscription
import random
import asyncio
from telethon import TelegramClient, events, types, functions
API_ID = 'xxxxx'
API_HASH = 'xxxxx'
TOKEN = 'xxxxxxxxxxxx'
client = TelegramClient('bot', API_ID, API_HASH).start(bot_token=TOKEN)
@client.on(events.NewMessage(pattern='/start'))
async def start(event):
text = (
"Hello! Welcome to Color Button Demo π¨\n\n"
"π΅ Primary - Blue Button\n"
"π’ Success - Green Button\n"
"π΄ Danger - Red Button"
)
primary_style = types.KeyboardButtonStyle(
bg_primary=True,
icon=5258096772776991776
)
success_style = types.KeyboardButtonStyle(
bg_success=True,
icon=5258503720928288433
)
danger_style = types.KeyboardButtonStyle(
bg_danger=True,
icon=5258331647358540449
)
button1 = types.KeyboardButtonCallback(
text="Primary Button",
data=b"primary_btn",
style=primary_style
)
button2 = types.KeyboardButtonCallback(
text="Success Button",
data=b"success_btn",
style=success_style
)
button3 = types.KeyboardButtonCallback(
text="Danger Button",
data=b"danger_btn",
style=danger_style
)
markup = types.ReplyInlineMarkup(rows=[
types.KeyboardButtonRow(buttons=[button1]),
types.KeyboardButtonRow(buttons=[button2]),
types.KeyboardButtonRow(buttons=[button3])
])
await client(functions.messages.SendMessageRequest(
peer=event.chat_id,
message=text,
random_id=random.getrandbits(63),
reply_markup=markup
))
@client.on(events.CallbackQuery())
async def callback(event):
messages = {
b"primary_btn": "β You clicked Primary (Blue) button!",
b"success_btn": "β You clicked Success (Green) button!",
b"danger_btn": "β You clicked Danger (Red) button!"
}
await event.answer(messages.get(event.data), alert=True)
print("Bot started! π")
print("Note: Make sure you're using Telethon from master branch!")
client.run_until_disconnected()
β€7 6π’2
How to Use Colored Inline Buttons with Custom Emoji in aiogram
Requirements:
aiogram 3.25.0+ (Latest version):
Requirements:
aiogram 3.25.0+ (Latest version):
pip3 install --upgrade aiogram
β€6
Smart Dev
How to Use Colored Inline Buttons with Custom Emoji in aiogram Requirements: aiogram 3.25.0+ (Latest version): pip3 install --upgrade aiogram
import asyncio
from aiogram import Bot, Dispatcher
from aiogram.types import Message, InlineKeyboardMarkup, InlineKeyboardButton, CallbackQuery
from aiogram.filters import Command
TOKEN = 'XXXXXXXXXXXXX'
bot = Bot(token=TOKEN)
dp = Dispatcher()
@dp.message(Command("start"))
async def send_welcome(message: Message):
keyboard = InlineKeyboardMarkup(
inline_keyboard=[
[InlineKeyboardButton(
text="Primary Button",
callback_data="primary_btn",
icon_custom_emoji_id="5258096772776991776",
style="primary"
)],
[InlineKeyboardButton(
text="Success Button",
callback_data="success_btn",
icon_custom_emoji_id="5258503720928288433",
style="success"
)],
[InlineKeyboardButton(
text="Danger Button",
callback_data="danger_btn",
icon_custom_emoji_id="5258331647358540449",
style="danger"
)]
]
)
await message.answer(
"Hello! Welcome to Color Button Demo π¨\n\n"
"π΅ Primary - Blue Button\n"
"π’ Success - Green Button\n"
"π΄ Danger - Red Button",
reply_markup=keyboard
)
@dp.callback_query()
async def handle_buttons(callback: CallbackQuery):
messages = {
"primary_btn": "β You clicked Primary (Blue) button!",
"success_btn": "β You clicked Success (Green) button!",
"danger_btn": "β You clicked Danger (Red) button!"
}
await callback.answer(messages.get(callback.data), show_alert=True)
async def main():
print("Bot started! π")
await dp.start_polling(bot)
if __name__ == "__main__":
asyncio.run(main())
π₯5 4β€1 1
How to Get Custom Emoji IDs:
1. Open bot: @emoji_idbot
2. Send any emoji (from premium emoji packs)
3. Copy the emoji ID
4. Use it in your button!
1. Open bot: @emoji_idbot
2. Send any emoji (from premium emoji packs)
3. Copy the emoji ID
4. Use it in your button!
Bot Update - Perplexity Command Fixed
Fixed bug where /ppx command failed with URLs in prompts.
Before: β 404 error when using URLs
After: β Works perfectly with any URL
Example now working:
/ppx read this article https://9to5google.com/...
Fixed bug where /ppx command failed with URLs in prompts.
Before: β 404 error when using URLs
After: β Works perfectly with any URL
Example now working:
/ppx read this article https://9to5google.com/...
β‘2
Smart Dev
Bot Update - Perplexity Command Fixed Fixed bug where /ppx command failed with URLs in prompts. Before: β 404 error when using URLs After: β
Works perfectly with any URL Example now working: /ppx read this article https://9to5google.com/...
AI-powered with cited sources, perfect for research and getting direct answers with references