Public release of Telepathy, an OSINT toolkit for investigating Telegram groups

Welcome to Telepathy, an OSINT toolkit for scraping Telegram data to help investigate shady goings on. Currently, the tool is limited to scraping only the sources of forwarded messages. Its capabilities will be increased over time. Installation Install from source git clone https://github.com/jordanwildon/Telepathy.git pip install -r requirements.txt Register for and obtain your Telegram API details from my.telegram.org. Navigate to the installation directory and run setup.py, this will walk you through the Telegram API login and prepare the toolkit with your […]

Read more

Starting With Python IDLE

If you’ve recently downloaded Python onto your computer, then you may have noticed a new program on your machine called IDLE. You might be wondering, “What is this program doing on my computer? I didn’t download that!” While you may not have downloaded this program on your own, IDLE comes bundled with every Python installation. It’s there to help you get started with the language right out of the box. In this course, you’ll learn how to work in Python […]

Read more

Evolving neural network parameters in JAX

This repository holds code displaying techniques for applying evolutionary network training strategies in JAX. Each script trains a network to solve the same problem: given a sequence of regularly-spaced values on a sine wave, predict the next value. The problem is trivial – the interesting part is intended to be the way in which this is accomplished, by updating network parameters directly and without gradient calculations, in parallel across devices. A lengthy tutorial is included, explaining the ideas and rationale. […]

Read more

An optional component handler for hikari, inspired by discord.py’s views

An optional component handler for hikari, inspired by discord.py’s views. Installation pip install git+https://github.com/HyperGH/hikari-miru.git Usage import hikari import hikari_miru as miru class MyView(miru.View): @miru.button(label=”Rock”, emoji=”🪨”, style=hikari.ButtonStyle.PRIMARY) async def rock_button(self, button: miru.Button, interaction: hikari.ComponentInteraction): await interaction.create_initial_response(hikari.ResponseType.MESSAGE_CREATE, content=f”Paper!”) @miru.button(label=”Paper”, emoji=”📜”, style=hikari.ButtonStyle.PRIMARY) async def paper_button(self, button: miru.Button, interaction: hikari.ComponentInteraction): await interaction.create_initial_response(hikari.ResponseType.MESSAGE_CREATE, content=f”Scissors!”) @miru.button(label=”Scissors”, emoji=”✂️”, style=hikari.ButtonStyle.PRIMARY) async def scissors_button(self, button: miru.Button, interaction: hikari.ComponentInteraction): await interaction.create_initial_response(hikari.ResponseType.MESSAGE_CREATE, content=f”Rock!”) @miru.button(emoji=”⏹️”, style=hikari.ButtonStyle.DANGER, row=2) async def stop_button(self, button: miru.Button, interaction: hikari.ComponentInteraction): await interaction.create_initial_response(hikari.ResponseType.DEFERRED_MESSAGE_UPDATE) self.stop() # Stop listening for interactions […]

Read more

Volta: A Virtual Assistant which increases your productivity with time as you use it

Overview & Purpose Volta: A Virtual Assistant which increases your productivity with time as you use it… Volta, developed and designed by Abeer Joshi is a personal virtual assistant, which can increase your productivity. The main purpose of this software is to provide best services to the end-user! Requirements Volta was designed to be compatible with almost every computer. It doesn’t include crazy requirements but the ones which are present in each and every computer of the latest generation at […]

Read more

Arithmos cipher on CLI based

This is the CLI version of Arithmos Cipher. Install pip install arithmos-cipher Encrypt For two sentences or more : arithmos enc “Arithmos cipher” Decrypt arithmos dec 382543210904 For two sentences or more : arithmos dec “2718092008131519 030916080518” For more information of all command, you can type: GitHub View Github    

Read more

Python Interactive Mini Games

Mini projects from Coursera’s An Introduction to Interactive Programming in Python Part 1 Part 2. Rock paper scissors lizard Spock Play here! Guess: The Game Instructions: Guess a number within the range. Use the hints (higher/lower) wisely before you run out of your allowed number of guesses! Play here! Stopwatch: The Game Play here! Instructions: After starting the game, click the Stop button only when the tenths digit hits 0 (zero) in order to score a point. Let’s see how […]

Read more

Document manipulation detection with python

task: –> tianchi function image segmentation salient object detection seg use ResNeXT as encoder; use UNet framework; use DAHead as decode_head; see seg model mIoU: usage use make_dataset.py to make the .tfrecord files python -W ignore train.py –batch_size $batch_size –niter $niter –lr $lr todo refine the u2net add: EGNet data aug model fusion GitHub View Github    

Read more
1 21 22 23 24 25 49