Forwarded from Били Недобили
В несколько раз больше бы при чистке от ботов удалялось аккаунтов. Со стороны защиты тг от ботов оправдано использовать номер телефона, а не почту, со стороны анонимности категорически нет
Хотя виртуальные номера конечно никто не отменял, но и по ним в случае чего вычислят. А с почтой есть возможность остаться на 99% анонимным
Хотя виртуальные номера конечно никто не отменял, но и по ним в случае чего вычислят. А с почтой есть возможность остаться на 99% анонимным
Forwarded from Чылік
Как не сойти с ума в самоизоляции
Несколько простых советов:
https://telegra.ph/Kak-ne-sojti-s-uma-sidya-doma-04-05
Несколько простых советов:
https://telegra.ph/Kak-ne-sojti-s-uma-sidya-doma-04-05
Forwarded from PWRTelegram official bot
This the official bot of the @pwrtelegram api.
I am basically a testing platform for the @pwrtelegram API.
The @pwrtelegram bot API is an enhanced version of telegram's bot API that has all of the official telegram bot API features plus:
* Downloading of files up to 1.5 GB in size
* Anonymous file storage (the URL of downloaded files does not contain your bot's token)
* Uploading of files up to 1.5 GB in size
* Uploading of files using an URL
* Reuploading of files using a file ID and different file type or file name.
* Uploading of any file/URL/file ID with automagical type recognition.
* Uploading of any file/URL/file ID without sending the file to a specific user.
* Automagical metadata recognition of sent files/URLs/file IDs.
* Deleting of text messages sent from the bot
* Uploading of files bigger than 5 megabytes with inline queries (supports both URLs and direct uploads)
* Automatical type recognition for files sent using answerinlinequery
* Both webhooks and getupdates are supported.
* webhook requests can be recieved even on insecure http servers.
* It is open source (https://github.com/pwrtelegram)!
* It can be installed on your own server (https://github.com/pwrtelegram/pwrtelegram-backend)!
If you send me a file, even a 1.5 gb one, I will download it, return the download URL along with some json and resend it to you.
Available commands:
• /start: Start bot and get this message.
• /info: Get shorter info message about this bot.
• /dl URL filename: Download file using file id/ URL (up to 1.5 gb).
Written by Daniil Gentili (@danogentili).
http://github.com/pwrtelegram/pwrtelegram-bot
If you encounter bugs send @danogentili a screenshot!
I am basically a testing platform for the @pwrtelegram API.
The @pwrtelegram bot API is an enhanced version of telegram's bot API that has all of the official telegram bot API features plus:
* Downloading of files up to 1.5 GB in size
* Anonymous file storage (the URL of downloaded files does not contain your bot's token)
* Uploading of files up to 1.5 GB in size
* Uploading of files using an URL
* Reuploading of files using a file ID and different file type or file name.
* Uploading of any file/URL/file ID with automagical type recognition.
* Uploading of any file/URL/file ID without sending the file to a specific user.
* Automagical metadata recognition of sent files/URLs/file IDs.
* Deleting of text messages sent from the bot
* Uploading of files bigger than 5 megabytes with inline queries (supports both URLs and direct uploads)
* Automatical type recognition for files sent using answerinlinequery
* Both webhooks and getupdates are supported.
* webhook requests can be recieved even on insecure http servers.
* It is open source (https://github.com/pwrtelegram)!
* It can be installed on your own server (https://github.com/pwrtelegram/pwrtelegram-backend)!
If you send me a file, even a 1.5 gb one, I will download it, return the download URL along with some json and resend it to you.
Available commands:
• /start: Start bot and get this message.
• /info: Get shorter info message about this bot.
• /dl URL filename: Download file using file id/ URL (up to 1.5 gb).
Written by Daniil Gentili (@danogentili).
http://github.com/pwrtelegram/pwrtelegram-bot
If you encounter bugs send @danogentili a screenshot!
GitHub
PWRTelegram
A modified version of Telegram's bot API. PWRTelegram has 11 repositories available. Follow their code on GitHub.
Forwarded from Daniil Gentili
MadelineProto can now make phone calls!
It does that thanks to the \danog\MadelineProto\VoIP class, which is a wrapper for grishka's awesome library.
See https://daniil.it/MadelineProto/#calls for installation instructions.
The VoIP class has methods for:
* playing audio files in calls
* playing files on hold (when there are no files left to play)
* setting the audio output file
accepting incoming calls
* discarding calls
* setting a rating for completed calls
* getting the emoji visualization of the encryption key
* fetching the configuration needed to encode/decose audio files (usually it's always 16 bit signed linear PCM with a sample rate of 48 kHz and one channel)
* and much more! See https://daniil.it/MadelineProto/API_docs/types/PhoneCall.html
Input/output audio can be converted from/to any audio/video file using ffmpeg (just don’t forget to provide the correct number of channels, sample rate and bit depth,
).
You can also stream the audio track of video streams (even from youtube), or audio streams. Just stream the data to a FIFO, and use ffmpeg to output the converted audio to another FIFO that will be used as input file.
To make a call, use the request_call method: it accepts one parameter with the ID of the person to call, and returns a VoIP object.
Accepting calls is just as easy: you will receive an updatePhoneCall (https://daniil.it/MadelineProto/API_docs/constructors/updatePhoneCall.html) object from your update source (see update handling), and you will simply have to call
See https://daniil.it/MadelineProto/#calls for more info.
It does that thanks to the \danog\MadelineProto\VoIP class, which is a wrapper for grishka's awesome library.
See https://daniil.it/MadelineProto/#calls for installation instructions.
The VoIP class has methods for:
* playing audio files in calls
* playing files on hold (when there are no files left to play)
* setting the audio output file
accepting incoming calls
* discarding calls
* setting a rating for completed calls
* getting the emoji visualization of the encryption key
* fetching the configuration needed to encode/decose audio files (usually it's always 16 bit signed linear PCM with a sample rate of 48 kHz and one channel)
* and much more! See https://daniil.it/MadelineProto/API_docs/types/PhoneCall.html
Input/output audio can be converted from/to any audio/video file using ffmpeg (just don’t forget to provide the correct number of channels, sample rate and bit depth,
ffmpeg -i anyaudioorvideo -f s"$bitnumber"le -ac $channelNumber -ar $bitRate -acodec pcm_s"$bitnumber"le output.raw
).
You can also stream the audio track of video streams (even from youtube), or audio streams. Just stream the data to a FIFO, and use ffmpeg to output the converted audio to another FIFO that will be used as input file.
To make a call, use the request_call method: it accepts one parameter with the ID of the person to call, and returns a VoIP object.
Accepting calls is just as easy: you will receive an updatePhoneCall (https://daniil.it/MadelineProto/API_docs/constructors/updatePhoneCall.html) object from your update source (see update handling), and you will simply have to call
accept() to accept the call.See https://daniil.it/MadelineProto/#calls for more info.
Forwarded from 𝙳𝚒𝚕𝚘𝚟𝚊𝚛
magnet:?xt=urn:btih:53AB391BCD9B533BB452EEA35508A00287E0CA48&tr=http://bt2.t-ru.org/ann?magnetForwarded from Deleted Account
Adobe After Effects CC 2019 (16.0.0.235) Portable by XpucT.exe
875.7 MB
Adobe After Effects CC 2019 (16.0.0.235) Portable by XpucT.exeForwarded from MadelineProto | Official Channel (Daniil Gentili)
downloadRenameBot.php
7.3 KB
FREEBIES
Here's a fully parallelized file rename + URL download bot based on MadelineProto.
Max file size: 1.5GB
A working instance can be found here: @pwrtelegrambot
Here's a fully parallelized file rename + URL download bot based on MadelineProto.
Max file size: 1.5GB
A working instance can be found here: @pwrtelegrambot
Forwarded from PWRTelegram API channel (Andrea.)
The PWRTelegram app has been updated!
Features:
- skip (private) messages download (add
Fixes:
- chat gallery
- scroll photos
- channels randomly disappear
- private chats with more than 100 messages do not load
Release Notes:
- now is based on telegram 5.10
- some internal functions have been
rewrited to be more efficient with bots
source code: https://bit.ly/2lwO0um
apk: https://bit.ly/2kulsBB
Features:
- skip (private) messages download (add
:f after token)Fixes:
- chat gallery
- scroll photos
- channels randomly disappear
- private chats with more than 100 messages do not load
Release Notes:
- now is based on telegram 5.10
- some internal functions have been
rewrited to be more efficient with bots
source code: https://bit.ly/2lwO0um
apk: https://bit.ly/2kulsBB
Forwarded from 🪂
Кто шарит, в телеграме есть боты, которая кидают посты из различных групп ВК? Можно ли будет авторизоваться или токен подкинуть, чтоб просмотреть посты с закрытых групп?
Forwarded from V͇ I͇ P͇ ۩ Ďęмøņ ۩͇ V͇ I͇ P͇ ĎERѮЌЇЙ_ГорДӹй Хуλϟгɑн_฿Ø$$_ӤḾगĒҎȺ₮ŐҎ_ĶŖ∀$∀℣ЧИ₭
такого знаю, с закрытыми группами не проверял, но через токен авторизоваться можно
@MyLittlePosterBot
@MyLittlePosterBot
Forwarded from V͇ I͇ P͇ ۩ Ďęмøņ ۩͇ V͇ I͇ P͇ ĎERѮЌЇЙ_ГорДӹй Хуλϟгɑн_฿Ø$$_ӤḾगĒҎȺ₮ŐҎ_ĶŖ∀$∀℣ЧИ₭
1. создаёшь своего бота в botfather и добавляешь его токен
2. добавляешь свой vk token
3. теперь переходишь в своего бота
4. добавляешь уже в своём боте группы, на которые хочешь подписаться
5. создаёшь новый, открытый канал, в который добавляешь своего бота
6. добавляешь канал в самого бота
2. добавляешь свой vk token
3. теперь переходишь в своего бота
4. добавляешь уже в своём боте группы, на которые хочешь подписаться
5. создаёшь новый, открытый канал, в который добавляешь своего бота
6. добавляешь канал в самого бота
Forwarded from Michael
короче сделай группу туда засунь бота и скажи ему работать с каким-то контактом - привязать чат
Forwarded from Michael
бот автоматом отсылает строго этому контакту. Таким несложным макаром можно сделать несколько групп для нескольких людей и дальше массовая рассылка :)