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

The best discord Nuk3r for python

☢️ Nuk3r ☢️ STEP 1 ✅ We go create discord bot ! [>] Go on https://discord.com/developers/applications [>] Set the name of your application [>] Go in “Bot” [>] Click on “Add Bot” [>] After click on “Yes, do it !”, set the avatar of the bot you can find avatar of real bot in Discord-Avatar file ! [>] Copy your discord bot token !

Read more

Associate arbitrary structured metadata to each glyph in your font

This plugin for Glyphs3 allows you to associate arbitrary structured metadata to each glyph in your font. Each font can define the data it wants to keep track of, and the palette allows you to view and edit the data for each glyph. Why do I want to do that? You could keep track of how finalised your outlines are, any review feedback you have received, and whether that feedback is integrated. You can link glyphs with other glyphs. You […]

Read more

Backend with Django

Documentation: https://docs.djangoproject.com/fr/3.2/intro/ By @tcotidiane33 & @yaya Models Premium class Pack(models.Model): name = models.CharField(max_length=255) items = models.IntegerField(default=1) class Meta: “””Meta definition for Pack.””” verbose_name = “Pack” verbose_name_plural = “Pack” def __str__(self):    

Read more

Implementation of different GAN in JAX/Haiku

This project aims to bring the power of JAX, a Python framework developped by Google and DeepMind to train Generative Adversarial Networks for images generation. JAX JAX is a framework developed by Deep-Mind (Google) that allows to build machine learning models in a more powerful (XLA compilation) and flexible way than its counterpart Tensorflow, using a framework almost entirely based on the nd.array of numpy (but stored on the GPU, or TPU if available). It also provides new utilities for […]

Read more
1 452 453 454 455 456 1,022