Python Community Interview With Eric Wastl

This week, we’re joined by Eric Wastl, a Senior Architect at TCGPlayer and the founder of Advent of Code (AoC). Join us as we discuss the inception of AoC, how to avoid common pitfalls when solving code challenges in AoC, and what Eric gets up to in the “3.8 seconds” of free time he has per year. Ricky: Thanks for joining me, Eric. You’re perhaps most well known for being the founder of Advent of Code, which we’ll talk about […]

Read more

This bot can stream audio or video files and urls in telegram voice chats

This bot can stream audio or video files and urls in telegram voice chats 🙂 🎯 Follow me and star this repo for more telegram bots. 🎯 📌 Features Play direct video streams. Play videos from youtube in audio and video formats Play via youtube search Telegram video/audio playing Admin control 🌐 Deployment 🏷 Deployment Guide Note: This userbot does not leaving from vc after song or video ended. And this is not a bot. Just a userbot. How to […]

Read more

4Geeks Academy Full-Stack Developer program final project

4Geeks Academy Full-Stack Developer program final project. Authors Implemented endpoints: –> routes.py /…/, methods: ”: Comment …frontURL/…/ … –> app.py /…/, methods: ”: Comment …frontURL/…/ … License 👻 Open license Back-End Manual Installation: Make sure you have Python 3.8: Migrate the migrations: $ pipenv run migrate Run the migrations: $ pipenv run upgrade Run the application: $ pipenv run start Front-End Manual Installation: Make sure you are using node version 14+ and that you have already successfully installed and runned […]

Read more

An advanced Filter Bot with nearly unlimitted filters

ㅤㅤㅤㅤㅤㅤㅤ ㅤㅤㅤㅤㅤㅤㅤ An advanced Filter Bot with nearly unlimitted filters! Features Nearly unlimited filters Supports all type of filters(Including Alert Button Filter). Can save button filters directly (Rose Bot Feature) Supports multiple PM connections And all other features of a Filter Bot 😀 Deploy the bot and start adding your filters 🙂 How to use the bot Bot Commands (You need    

Read more

wafer circleci with python

Create a file “Dockerfile” with below content FROM python:3.7 COPY . /app WORKDIR /app RUN pip install -r requirements.txt ENTRYPOINT [ “python” ] CMD [ “main.py” ] Create a “Procfile” with following content create a file “.circleciconfig.yml” with following content

Read more

An easy-to-use library for emulating code in minidump files

Note: This is a work-in-progress prototype, please treat it as such. An easy-to-use library for emulating code in minidump files. Example The example below opens test.dmp (download a copy here), allocates some memory and calls the decryption function at 0x140001000 to decrypt the string at 0x140003000: from dumpulator import Dumpulator dp = Dumpulator(“test.dmp”, trace=True) temp_addr = dp.allocate(256) dp.call(0x140001000, [temp_addr, 0x140003000]) decrypted = dp.read_str(temp_addr) print(f”decrypted: ‘{

Read more

Powerful spammer bots for telegram made with python and telethon

🚀 Gʟᴀᴅɪᴀᴛᴏʀs sᴘᴀᴍᴍᴇʀʙᴏᴛs 🛠️ Lᴀɴɢᴜᴀɢᴇs Aɴᴅ Tᴏᴏʟs 🎆Dᴇᴘʟᴏʏ Tᴏ Hᴇʀᴏᴋᴜ 🧿Gᴇɴᴇʀᴀᴛᴇ ᴛᴇʟᴇᴛʜᴏɴ sᴇssɪᴏɴ 🗒️ Nᴇᴄᴇssᴀʀʏ Vᴀʀɪᴀʙʟᴇs ☞ API_ID – Get your API_ID from my.telegram.org☞ API_HASH – Get your API_HASH from my.telegram.org☞ STRING_SESSION – Telethon string session of your spam accounts/bots.☞    

Read more
1 357 358 359 360 361 928