Фильтр публикаций




🔹FORCE CHANNEL JOIN BOT

import telebot
from telebot.types import ReplyKeyboardMarkup, KeyboardButton

# Replace with your bot token and channel username
BOT_TOKEN = "YOUR_BOT_TOKEN"
CHANNEL_USERNAME = "@YourChannel"

bot = telebot.TeleBot(BOT_TOKEN)

@bot.message_handler(commands=['start'])
def start(message):
user_id = message.from_user.id
if is_user_member(user_id):
send_main_menu(message.chat.id)
else:
send_join_prompt(message.chat.id)

def is_user_member(user_id):
try:
member = bot.get_chat_member(CHANNEL_USERNAME, user_id)
return member.status in ['member', 'administrator', 'creator']
except:
return False

def send_join_prompt(chat_id):
markup = ReplyKeyboardMarkup(resize_keyboard=True)
markup.add(KeyboardButton("✅ Joined"))
bot.send_message(chat_id, f"Please join our channel {CHANNEL_USERNAME} to use this bot!", reply_markup=markup)

@bot.message_handler(func=lambda message: message.text == "✅ Joined")
def joined(message):
user_id = message.from_user.id
if is_user_member(user_id):
bot.send_message(message.chat.id, "Thank you for joining! Here's the main menu:")
send_main_menu(message.chat.id)
else:
bot.send_message(message.chat.id, f"You haven't joined {CHANNEL_USERNAME} yet! Please join and try again.")

def send_main_menu(chat_id):
markup = ReplyKeyboardMarkup(resize_keyboard=True)
markup.add(KeyboardButton("🏆 Claim Gift"), KeyboardButton("💰 Balance"))
markup.add(KeyboardButton("📤 Withdraw"), KeyboardButton("📞 Support"))
bot.send_message(chat_id, "Welcome to the main menu! Choose an option:", reply_markup=markup)

bot.polling()


#python #language


🔹Do you want telegram bot codes ?

I will share if u want 🗿


If u participate in a waitlist before 🙃

https://t.me/quietlyhouse_bot?start=Bot38055520

Fund Raised 5.1M
Cost 0$

Trump ❌
Melania ❌
Quietly ✔️

Probably something 🐸
#jff


Check the w-coin announcement channel 😁

r u Eligible to mint NFTvoucher?


Репост из: Quietly Community
$CRYPTO Airdrop Waitlist Form

🔗Link - https://forms.gle/H164dZon6PTcWAcHA

✔️Follow the telegram channel & X account
✔️Retweet the post
✔️Submit ur Solana address
✔️Done

Don't panic the form is mine just for fun 😁

Might be something 🙃


Postponed to feb 25th 🫤

They thought the day won’t come


Видео недоступно для предпросмотра
Смотреть в Telegram
Hamja Bendelladji

an Algerian hacker who extracted $4 billion from 217 different banks and donated it all to poor African countries and Palestine. He was arrested in Bangkok in 2013and in 2016, USA court sentenced him 15 years in prison. And every time people saw him him he was smiling with no regrets on his face.

His code name was BX1 and also nicknamed as smiling hacker. It took more than 5 years to FBI and Interpol to find him.

Bro didn't even opposed arrest, just smiled and said good bye to his family 🫠

🙂 Must join our Channel @TIGRAYTECHC

Give Reactions fast and share post else no more like this 💧


W-Coin is coming guys Jan 25 😂


Видео недоступно для предпросмотра
Смотреть в Telegram
W teacher 🔥😂


Can’t believe we’re getting TikTok ban before gta 6 🗿


Galaxy S25 Slim Leaked!!


Репост из: Telegram Contests
💎 Blockchain Contest, Round 1

Telegram and TON Core announce a new coding contest!

Prize Fund: $100,000 to $200,000
Deadline: 23:59, February 4th (Dubai time)
Tasks: Blockchain Validation (C++ code optimization) and/or Trustless Bridge (participants can choose one or both).

Prize Fund Distribution
The total prize fund, up to $200,000, will be allocated based on each participant’s overall contribution. Winners will also have the opportunity to compete in Stage 2, which will feature a separate, similar prize fund.

Additional Opportunities
Winners have the chance to join the Telegram or TON Core teams, or receive support to launch a real TVM sidechain for TON. The best optimization solutions may also be implemented to enhance the TON main network.


Now this

x = True
y = False
z = x or y and not x
print(z)
This is your DCQT test ( Department Of Comment Questions Test )🤣😅




Видео недоступно для предпросмотра
Смотреть в Telegram
ChatGPT In 2030 😂


Видео недоступно для предпросмотра
Смотреть в Telegram
.....Pain tho💔😟


Репост из: Crypto Lessons
Видео недоступно для предпросмотра
Смотреть в Telegram
🔅 What is an NFT? (Non-Fungible Tokens Explained)

What is an NFT? A Non-Fungible Token, also known as a NFT, is a type of digital token or asset. A common analogy is to think of these as digital trading cards or digital paintings. When you buy an NFT, you are buying the rights to that specific asset. In this video you'll learn exactly what a non-fungible token is, and why they are valuable.


0:00 - 0:15 Intro
0:16 - 1:00 What is an NFT?
1:01 - 2:24 The Details of all Non Fungible Tokens
2:25 - 5:13 Why buy an NFT?
5:14 - 6:12 Buying Jack Dorsey's First Tweet
6:13 - 6:48 How popular are they?
6:49 - 7:52 Top 11 Most Expensive NFTs
7:53 - 8:44 Can someone copy your NFT?
8:45 - 10:13 How do you buy an NFT?
10:14 - 11:05 Where do you store your NFTs?


What Do You Need Next??


Lesson 5: Making Decisions with if-else 🔄

Now that we know how to take user input, let's make our programs smarter by using if-else conditions! These allow our program to make decisions based on user input or other factors.

---

Example:

age = int(input("How old are you? "))

if age >= 18:
    print("You are an adult!")
else:
    print("You are a minor!")

---

Explanation:

1. if statement: Checks a condition. If it evaluates to True, the indented block runs.
2. else statement: Runs if the if condition is False.
3. Comparison operators (>=,

Показано 20 последних публикаций.